/* ===== Custom Fonts ===== */
@font-face {
    font-family: 'Hemmet';
    src: url('fonts/Hemmet_Personal_Use_Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --primary-color: #c9a94e;
    --primary-dark: #a88b3d;
    --primary-light: #e0c76a;
    --secondary-color: #0a0a0a;
    --bg-dark: #0e0e0e;
    --bg-dark-2: #141414;
    --bg-dark-3: #1a1a1a;
    --bg-light: #f7f4ef;
    --bg-cream: #faf8f3;
    --bg-color: #f7f4ef;
    --text-color: #2c2c2c;
    --text-light: #777;
    --text-dark: #111;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-700: #555;
    --gold-gradient: linear-gradient(135deg, #b8942f 0%, #e0c76a 40%, #c9a94e 70%, #a88b3d 100%);
    --gold-text: linear-gradient(135deg, #d4b44a, #f0d878, #c9a94e);
    --dark-gradient: linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 5px 30px rgba(201, 169, 78, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    background: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201, 169, 78, 0.2);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 78, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

#preloader::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle at center, rgba(201, 169, 78, 0.05) 0%, transparent 40%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.loader-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(201, 169, 78, 0.1);
    stroke-width: 2;
}

.circle-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circle-fill 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(201, 169, 78, 0.4));
}

@keyframes circle-fill {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -283; }
}

.loader-scissors-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: scissors-rotate 3s ease-in-out infinite;
}

@keyframes scissors-rotate {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-12deg); }
    75% { transform: translate(-50%, -50%) rotate(12deg); }
}

.loader-text-wrapper {
    position: relative;
    margin-top: 5px;
}

.loader-text {
    font-family: 'Hemmet', cursive;
    font-size: 4.2rem;
    font-weight: 400;
    color: transparent;
    background: var(--gold-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    letter-spacing: 4px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.loader-tagline {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(201, 169, 78, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

#header.scrolled .navbar {
    padding: 12px 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Hemmet', cursive;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
}

.logo-surname {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 3px;
}

.logo-tagline {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 50%;
}

.nav-packages {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.btn-nav {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-nav:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 169, 78, 0.25) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav-login {
    background: transparent !important;
    border: 1.5px solid rgba(201, 169, 78, 0.35) !important;
    color: var(--primary-color) !important;
    padding: 8px 18px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease !important;
}

.btn-nav-login:hover {
    background: rgba(201, 169, 78, 0.08) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.btn-nav-login::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201, 169, 78, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(201, 169, 78, 0.05);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--secondary-color);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 30% 40%, rgba(201, 169, 78, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 70% 60%, rgba(201, 169, 78, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.75) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #0e0e0e 60%, #141414 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .line1 {
    display: block;
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title .line2 {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 65px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.feature span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-down a {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-desc {
    max-width: 540px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.section-line {
    width: 45px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about {
    background: var(--secondary-color);
    overflow: hidden;
}

.about .section-title {
    color: var(--white);
}

.about .section-subtitle {
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 78, 0.15);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.image-decoration {
    display: none;
}

.experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 78, 0.15);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.experience-badge span:last-child {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.about-text p {
    color: #e8e0d0;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-text p.lead {
    color: #f5f0e6;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: rgba(201, 169, 78, 0.25);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.06);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 78, 0.07);
    border-radius: 8px;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.85rem;
    color: #f5f0e6;
}

.working-hours {
    margin-top: 28px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.working-hours h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.working-hours h4 i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e8e0d0;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item .day {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hours-item .time {
    color: #f5f0e6;
    font-weight: 600;
}

.hours-item .closed {
    color: #d44;
    font-weight: 500;
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 38px 28px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.5s ease;
    border-radius: 0 0 3px 0;
}

.service-card:hover {
    background: var(--bg-cream);
    border-color: rgba(201, 169, 78, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.service-card:hover::before {
    height: 100%;
}

.service-card.featured {
    background: var(--secondary-color);
    border-color: rgba(201, 169, 78, 0.12);
}

.service-card.featured:hover {
    background: #111;
    border-color: rgba(201, 169, 78, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-color);
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.55);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.55);
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.75);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card.featured .popular-badge {
    color: var(--secondary-color);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 22px;
    background: rgba(201, 169, 78, 0.07);
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card.featured .service-icon {
    background: rgba(201, 169, 78, 0.1);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(-5deg);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--white);
}

.service-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

.service-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 400;
}

.service-list li::before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 14px;
    margin-right: 4px;
}

/* Popular Badge */
.popular-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--bg-cream);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 50px;
    background: var(--white);
    padding: 5px;
    border-radius: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--gray-200);
}

.tab-btn {
    padding: 12px 26px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 9px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.tab-btn:hover:not(.active) {
    color: var(--text-dark);
    background: var(--gray-100);
}

.pricing-content {
    display: block;
}

.pricing-table {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pricing-table.active {
    display: grid;
}

.price-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.price-category {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 34px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.price-category:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(201, 169, 78, 0.15);
}

.price-category h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-category h3 i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.price-item {
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gray-200), var(--gray-200) 3px, transparent 3px, transparent 10px);
    margin: 0 16px;
    opacity: 0.6;
}

.item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
}

.price-item.highlight {
    background: var(--secondary-color);
    margin: 8px -18px;
    padding: 13px 18px;
    border-radius: 10px;
    border-bottom: none;
}

.price-item.highlight .item-name {
    color: var(--white);
    font-weight: 600;
}

.price-item.highlight .item-price {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.price-item.highlight .item-dots {
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.15) 3px, transparent 3px, transparent 10px);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.84rem;
    margin-top: 22px;
    font-weight: 300;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    -webkit-tap-highlight-color: transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.touched .gallery-overlay {
    opacity: 1;
}

.gallery-item.touched img {
    transform: scale(1.06);
}

.gallery-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 169, 78, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleEffect 0.6s ease-out;
    z-index: 10;
    pointer-events: none;
}

@keyframes rippleEffect {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.4rem;
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item.touched .gallery-overlay i {
    transform: scale(1);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 78, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: var(--primary-color);
}

.testimonials .section-desc {
    color: rgba(255, 255, 255, 0.35);
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc(50% - 10px);
    background: rgba(255, 255, 255, 0.025);
    padding: 38px;
    border-radius: var(--border-radius-lg);
    scroll-snap-align: start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 78, 0.12);
}

.testimonial-rating {
    margin-bottom: 18px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 26px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 78, 0.25);
}

.author-info h4 {
    font-size: 0.96rem;
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 400;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ===== Reference Dealer Section ===== */
.reference-dealer {
    padding: 110px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.reference-dealer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 350px at 20% 50%, rgba(201, 169, 78, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 700px 350px at 80% 50%, rgba(201, 169, 78, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.reference-dealer .section-header {
    position: relative;
    z-index: 1;
}

.reference-dealer .section-subtitle {
    color: var(--primary-color);
}

.reference-dealer .section-title {
    color: var(--white);
}

.reference-dealer .section-desc {
    color: rgba(255, 255, 255, 0.35);
}

.dealer-brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.dealer-brand {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 38px 28px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dealer-brand:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 78, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.dealer-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 6px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.dealer-badge i {
    color: var(--secondary-color);
    font-size: 0.7rem;
}

.dealer-badge span {
    color: var(--secondary-color);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.dealer-logo {
    padding: 26px 18px;
    margin: 18px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: var(--transition);
}

.dealer-brand:hover .dealer-logo {
    background: var(--white);
    transform: scale(1.02);
}

.dealer-logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.dealer-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 14px;
    font-weight: 300;
}

.dealer-brand:hover .dealer-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Brands Section ===== */
.brands {
    padding: 55px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brands-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 46px;
    flex-wrap: wrap;
}

.brand-logo {
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    min-width: 130px;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-text.brand-italic {
    font-style: italic;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: var(--text-light);
    letter-spacing: 3px;
    margin-top: 3px;
    font-weight: 400;
}

/* ===== Booking Section ===== */
.booking {
    background: var(--white);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.booking-info {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -60%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 78, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.info-item i {
    width: 42px;
    height: 42px;
    background: rgba(201, 169, 78, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 600;
    color: var(--white);
}

.info-item p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-weight: 300;
}

.quick-contact {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 0.88rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-form {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.06);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 78, 0.15);
}

.contact-card i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.contact-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.88rem;
    font-weight: 300;
}

.contact-card a {
    color: var(--text-light);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.social-links {
    text-align: center;
    margin-top: 10px;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 78, 0.15), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.7rem;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--white);
    color: var(--text-dark);
    padding: 9px 15px;
    border-radius: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 500;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 26px;
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: 1px solid rgba(201, 169, 78, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 400px;
    transform: scale(0.92) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content i {
    font-size: 3.2rem;
    color: #28a745;
    margin-bottom: 18px;
}

.modal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-weight: 300;
}

/* ===== Before After Section ===== */
.before-after {
    background: var(--bg-cream);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ba-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ba-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 78, 0.12);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--gray-100);
}

.ba-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 0;
}

.ba-label {
    position: absolute;
    bottom: 12px;
    padding: 5px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.ba-before .ba-label {
    left: 12px;
}

.ba-after .ba-label {
    right: 12px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: var(--primary-color);
}

.ba-handle-circle {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(201, 169, 78, 0.35);
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.ba-info {
    padding: 22px;
    text-align: center;
}

.ba-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ba-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== Video Section ===== */
.video-section {
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.video-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-cream);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-tap-highlight-color: transparent;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 78, 0.12);
}

.video-card.touched {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.video-card:hover .video-thumbnail video,
.video-card.touched .video-thumbnail video {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover .video-play-overlay,
.video-card.touched .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(201, 169, 78, 0.35);
}

.video-card:hover .video-play-btn,
.video-card.touched .video-play-btn {
    transform: scale(1);
}

.video-play-btn i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-left: 3px;
}

@keyframes videoPulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 78, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(201, 169, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 78, 0); }
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
}

.video-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.video-close:hover {
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--black);
}

.video-wrapper video {
    width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: var(--border-radius-lg);
}

/* ===== Mobile Bottom Navigation Bar ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -1px 20px rgba(0, 0, 0, 0.06);
    z-index: 99999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    z-index: -1;
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 8px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.6rem;
    transition: color 0.3s ease;
    padding: 6px 10px;
    border-radius: 10px;
    min-width: 50px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.25rem;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item.whatsapp-nav {
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 14px;
    margin-top: -26px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    min-width: auto;
}

.mobile-bottom-nav .nav-item.whatsapp-nav:hover {
    color: white;
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item.whatsapp-nav i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.whatsapp-nav span {
    font-size: 0.55rem;
    font-weight: 600;
}

/* ========================================
   CUSTOMER REGISTRATION MODAL
======================================== */
.registration-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.registration-modal.active {
    display: flex;
    opacity: 1;
}

.registration-modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from { transform: translateY(-24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.registration-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.registration-header {
    text-align: center;
    padding: 38px 28px 22px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    position: relative;
    overflow: hidden;
}

.registration-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.registration-header i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    position: relative;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.registration-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--white);
    position: relative;
}

.registration-header p {
    opacity: 0.45;
    font-size: 0.9rem;
    position: relative;
    font-weight: 300;
}

.registration-form {
    padding: 28px;
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.form-field {
    margin-bottom: 12px;
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.82rem;
}

.form-field label i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 0.78rem;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--bg-cream);
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.06);
    background: var(--white);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-register {
    width: 100%;
    padding: 14px;
    font-size: 0.98rem;
    margin-top: 6px;
}

.registration-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
    font-weight: 300;
}

.registration-note i {
    color: #28a745;
    margin-right: 4px;
}

.registration-success {
    text-align: center;
    padding: 48px 28px;
}

.registration-success i {
    font-size: 3.2rem;
    color: #28a745;
    margin-bottom: 16px;
}

.registration-success h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.registration-success p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 300;
}

.registration-success .success-note {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Registration Trigger Button */
.registration-trigger {
    position: fixed;
    left: 18px;
    bottom: 100px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 13px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 78, 0.12);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.registration-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    border-color: rgba(201, 169, 78, 0.25);
}

.registration-trigger i {
    font-size: 1.15rem;
}

.registration-trigger span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
}

/* ===== Packages Section ===== */
.packages {
    background: var(--bg-dark);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(201, 169, 78, 0.035) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(201, 169, 78, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.packages .section-subtitle {
    color: var(--primary-color);
}

.packages .section-title {
    color: var(--white);
}

.packages .section-desc {
    color: rgba(255, 255, 255, 0.35);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 50px auto 0;
    max-width: 1060px;
    align-items: stretch;
    position: relative;
}

.packages-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.35);
}

.packages-loading i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.packages-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.35);
}

/* Package Card */
.pkg-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px 28px 34px;
    text-align: center;
}

.pkg-card:first-child {
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.pkg-card:last-child {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

.pkg-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Featured Package */
.pkg-featured {
    background: linear-gradient(180deg, rgba(201, 169, 78, 0.07) 0%, rgba(201, 169, 78, 0.015) 100%);
    border: 1.5px solid rgba(201, 169, 78, 0.18);
    border-radius: var(--border-radius-lg);
    transform: scaleY(1.02);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(201, 169, 78, 0.08);
    padding: 46px 28px 42px;
}

.pkg-featured:hover {
    border-color: rgba(201, 169, 78, 0.3);
    box-shadow: 0 20px 80px rgba(201, 169, 78, 0.15);
    background: linear-gradient(180deg, rgba(201, 169, 78, 0.1) 0%, rgba(201, 169, 78, 0.03) 100%);
}

.pkg-badge {
    display: inline-block;
    padding: 5px 16px;
    color: var(--secondary-color);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 18px;
}

.pkg-badge::after {
    display: none;
}

.pkg-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.2rem;
}

.pkg-header {
    padding: 0;
    border-bottom: none;
    margin-bottom: 22px;
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px;
}

.pkg-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 300;
}

.pkg-pricing {
    padding: 20px 0;
    text-align: center;
    background: transparent;
    margin-bottom: 8px;
    position: relative;
}

.pkg-pricing::before,
.pkg-pricing::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.pkg-pricing::before { top: 0; }
.pkg-pricing::after { bottom: 0; }

.pkg-original-price {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pkg-sale-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.pkg-sale-price .pkg-currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
    opacity: 0.55;
}

.pkg-period {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    font-weight: 300;
}

.pkg-discount {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.15);
    color: #ff6b6b;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.pkg-items {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

.pkg-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-weight: 300;
}

.pkg-items li:last-child {
    border-bottom: none;
}

.pkg-items li i {
    color: var(--primary-color);
    font-size: 0.58rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 78, 0.08);
}

.pkg-unlimited {
    background: rgba(201, 169, 78, 0.08);
    color: var(--primary-color);
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(201, 169, 78, 0.12);
}

.pkg-qty {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.45);
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-footer {
    padding: 0;
    text-align: center;
    margin-top: auto;
}

.pkg-duration {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
    font-weight: 300;
}

.pkg-duration i {
    margin-right: 4px;
}

.pkg-btn {
    width: 100%;
    padding: 13px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

.pkg-btn:hover {
    transform: translateY(-2px);
}

.pkg-card:not(.pkg-featured) .pkg-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.pkg-card:not(.pkg-featured) .pkg-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.pkg-featured .pkg-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.pkg-featured .pkg-btn:hover {
    box-shadow: 0 8px 28px rgba(201, 169, 78, 0.28);
}

.packages-cta {
    text-align: center;
    margin-top: 48px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.packages-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
    font-weight: 300;
}

.packages-cta p i {
    color: var(--primary-color);
    margin-right: 6px;
}

.packages-cta p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.packages-cta p a:hover {
    text-decoration: underline;
}

.packages-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.packages-cta-buttons .btn-primary {
    background: #25d366;
    border: none;
    color: var(--white);
}

.packages-cta-buttons .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.22);
}

.packages-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.packages-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 14px 18px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(201, 169, 78, 0.08);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 1.05rem;
        padding: 12px 28px;
    }

    .nav-links a:hover {
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title .line2 {
        font-size: 3rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 20px 22px;
    }

    .price-categories,
    .pricing-table.active {
        grid-template-columns: 1fr;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-brands {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .dealer-brand:last-child {
        grid-column: 1 / -1;
        max-width: 380px;
        margin: 0 auto;
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .pkg-card,
    .pkg-card:first-child,
    .pkg-card:last-child {
        border-radius: var(--border-radius-lg);
    }

    .pkg-featured {
        transform: scale(1);
    }

    .pkg-featured:hover {
        transform: translateY(-4px);
    }

    .pkg-sale-price {
        font-size: 2rem;
    }

    .packages-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 75px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title .line1 {
        font-size: 0.78rem;
        letter-spacing: 4px;
    }

    .hero-title .line2 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 80%;
        max-width: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-btn {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .mobile-bottom-nav {
        display: block;
    }

    html {
        scroll-padding-bottom: 70px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
        overscroll-behavior-y: none;
    }

    body {
        padding-bottom: 0;
        min-height: 100%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
        overscroll-behavior-y: none;
    }

    .footer {
        padding-bottom: 80px !important;
        margin-bottom: 0 !important;
    }

    .footer-bottom {
        margin-bottom: 0;
    }

    .whatsapp-btn {
        display: none !important;
    }

    .back-to-top {
        bottom: 82px;
        right: 14px;
    }

    .navbar {
        padding: 10px 16px;
    }

    .logo-name {
        font-size: 1.5rem;
    }

    .logo-surname {
        font-size: 0.48rem;
        letter-spacing: 3px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .section-desc {
        font-size: 0.86rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .pricing-tabs {
        gap: 3px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .price-category h3 {
        font-size: 1.05rem;
    }

    .price-item {
        padding: 11px 0;
    }

    .item-name {
        font-size: 0.85rem;
    }

    .item-price {
        font-size: 0.92rem;
    }

    .price-item.highlight {
        margin: 8px -14px;
        padding: 11px 14px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-info {
        padding: 26px;
    }

    .booking-form {
        padding: 22px;
    }

    .quick-contact .phone-link {
        font-size: 1.15rem;
    }

    .contact-card {
        padding: 22px;
    }

    .contact-map iframe {
        height: 280px;
    }

    .footer {
        padding-bottom: 88px;
        margin-bottom: 0;
    }

    .footer-bottom {
        padding-bottom: 8px;
    }

    .footer-content {
        gap: 26px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .brands-slider {
        gap: 16px;
    }

    .brand-logo {
        min-width: 100px;
        padding: 8px 12px;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .brand-sub {
        font-size: 0.5rem;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-slider {
        height: 300px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn i {
        font-size: 1rem;
    }

    .video-modal-content {
        width: 95%;
    }

    .dealer-brands {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dealer-brand {
        padding: 32px 22px;
    }

    .dealer-logo img {
        max-height: 52px;
    }

    .registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .registration-header h3 {
        font-size: 1.25rem;
    }

    .registration-trigger {
        bottom: 78px;
        left: 14px;
        padding: 11px 14px;
        border-radius: 12px;
    }

    .registration-trigger span {
        display: none;
    }

    .registration-trigger i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 0;
    }

    .hero-title .line2 {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 18px;
    }

    .mobile-bottom-nav {
        padding: 6px 0;
        padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-bottom-nav .nav-item {
        font-size: 0.55rem;
        padding: 4px 6px;
        min-width: 40px;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1rem;
    }

    .mobile-bottom-nav .nav-item.whatsapp-nav {
        padding: 8px 12px;
        margin-top: -18px;
    }

    .mobile-bottom-nav .nav-item.whatsapp-nav i {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 78px;
    }

    .footer {
        padding-bottom: 72px !important;
    }
}
