html {
    scroll-behavior: smooth;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --accent: #10b981;
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --shadow-premium: 0 10px 25px -4px rgba(0, 0, 0, 0.05), 0 4px 10px -3px rgba(0, 0, 0, 0.03);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Crystal Background */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 0% 0%, #f0f9ff 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #f0fdf4 0%, transparent 40%),
        var(--bg-soft);
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: floatingOrb 20s infinite alternate ease-in-out;
}

@keyframes floatingOrb {
    0% {
        transform: translate(-10%, -10%);
    }

    100% {
        transform: translate(20%, 20%);
    }
}

.app-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Glass Header Navigation */
.top-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 48px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}



.brand-wrapper {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-main {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.brand-dark {
    color: var(--text-main);
    margin-right: 2px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 2px;
}

.brand-blue {
    color: var(--primary);
}

.brand-subtitle {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-brand-wrapper .brand-main {
    font-size: 2.2rem;
}

.footer-brand-wrapper .brand-subtitle {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .nav-brand {
        gap: 0.4rem;
        flex: 1;
        /* Allow brand to take available space but shrink if needed */
        min-width: 0;
        /* Enable flex shrinking below content size */
    }

    .brand-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        /* Hide overflow */
    }

    .nav-brand .brand-main {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        font-size: 1.1rem;
        line-height: 0.9;
        white-space: normal;
        overflow: visible;
    }

    .nav-brand .brand-dark {
        margin-right: 0;
        display: block;
    }

    .nav-brand .brand-blue {
        display: block;
        font-size: 0.75em;
        margin-top: 2px;
    }

    .brand-subtitle {
        display: none;
        /* Hide subtitle on mobile to save space */
    }

    .footer-brand-wrapper .brand-main {
        font-size: 1.3rem;
        white-space: normal;
        /* Allow wrapping in footer */
        overflow: visible;
    }

    .footer-brand-wrapper .brand-subtitle {
        display: block;
        /* Show subtitle in footer */
        font-size: 0.65rem;
    }

    .nav-logo {
        height: 28px;
    }

    .mobile-action-btn,
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .mobile-actions {
        gap: 0.4rem;
        margin-right: 0.4rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

@media (max-width: 1300px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 0.6rem 1rem !important;
    }
}

.menu-toggle {
    display: none;
    background: #f1f5f9;
    border: none;
    font-size: 1.6rem;
    color: var(--text-main);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(14, 165, 233, 0.3);
}

/* Mobile Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
    margin-right: 0.5rem;
}

.mobile-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s;
}

.wa-btn {
    background: #e7f9ee;
    color: var(--whatsapp);
}

.phone-btn {
    background: #eff6ff;
    color: var(--primary);
}

/* Consolidated Menu Hover */
.menu-toggle:hover {
    background: #e2e8f0;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .top-nav {
        top: 0.5rem;
        padding: 0 0.8rem;
    }

    .nav-container {
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 18px;
    }



    .nav-tagline {
        font-size: 0.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-actions {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(14, 165, 233, 0.1);
        gap: 1.5rem;
        z-index: 1000;
        transform-origin: top;
        animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.5rem;
    }



    @keyframes slideDown {
        from {
            opacity: 0;
            transform: scaleY(0);
        }

        to {
            opacity: 1;
            transform: scaleY(1);
        }
    }
}

/* Main Section Stack */
.main-sections-stack {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.main-sections-stack>section {
    padding: 3rem 0;
    /* Consistent internal padding */
    scroll-margin-top: 3rem;
    /* Match sticky header + padding */
}

@media (max-width: 768px) {
    .main-sections-stack>section {
        padding: 2.5rem 0;
        scroll-margin-top: 4.5rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/* Hero - Pure & Clean */
.hero-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .hero-wrapper {
        min-height: auto;
        padding: 2.5rem 0 1rem;
    }
}

.status-badge {
    background: linear-gradient(to right, #ffffff, #f0f9ff);
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow:
        0 4px 15px rgba(14, 165, 233, 0.08),
        0 0 0 1px rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    /* Added to contain shimmer */
}

/* Flash Shimmer Effect */
.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    animation: flashShimmer 4s infinite;
}

@keyframes flashShimmer {
    0% {
        left: -150%;
    }

    25% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #10b981;
    opacity: 0.5;
    animation: pulseGlow 1.8s ease-out infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.status-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Hero Layout & Purifier Theme */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-side {
    text-align: left;
}

.hero-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-purifier-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
    overflow: visible;
    border: 8px solid white;
    box-shadow: var(--shadow-premium);
}

.hero-purifier-img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.expertise-tag {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
    border: 1px solid var(--primary-light);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.expertise-tag ion-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.expertise-tag span {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-main);
    white-space: nowrap;
}

.water-pulse-effect {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    z-index: -1;
    animation: waterRipple 3s linear infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes waterRipple {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-purifier-frame {
        max-width: 320px;
        order: -1;
        /* Image first on mobile */
    }
}

.hero-title {
    font-size: clamp(2.2rem, 10vw, 5.5rem);
    /* Slightly smaller base for very small screens */
    font-weight: 900;
    line-height: 1;
    /* Standardized line height */
    letter-spacing: -3px;
    /* Slightly more relaxed letter spacing */
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -1px;
        font-size: 2.5rem;
    }
}

.text-3d {
    background: linear-gradient(180deg, #0ea5e9 0%, #0369a1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 900;
    /* Clean modern depth using filters */
    filter:
        drop-shadow(0 2px 0 rgba(15, 23, 42, 0.1)) drop-shadow(0 15px 30px rgba(14, 165, 233, 0.25));
    transform: perspective(1000px) rotateX(10deg) rotateY(-5deg);
    letter-spacing: -2px;
}

.text-3d:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-title span:not(.text-3d) {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.25));
    position: relative;
    padding-bottom: 5px;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
    opacity: 0.3;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3.5rem;
}

/* Transparent Stats */
.stats-floating {
    display: flex;
    gap: 2rem;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    border: 1px solid white;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
}

@media (max-width: 768px) {
    .stats-floating {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 1rem 0.25rem !important;
        gap: 0.25rem !important;
        width: 100% !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.9) !important;
        flex-direction: row !important;
    }

    .stat-val {
        font-size: 1.0rem !important;
        white-space: nowrap !important;
        letter-spacing: -0.5px !important;
        line-height: 1 !important;
    }

    .stat-lbl {
        font-size: 0.45rem !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
        display: block !important;
    }
}

.stat-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .main-layout {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .service-showcase {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Purity Cards */
.service-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    /* Ensure equal heights */
}

.glass-card {
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    background: var(--primary-light);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: var(--bg-soft);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.4s;
}

.glass-card:hover .card-icon {
    background: white;
    color: var(--primary-dark);
}

.glass-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Booking Console - Light Premium */
.booking-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 2.5rem);
    /* Responsive padding */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.panel-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.panel-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.dark-input {
    width: 100%;
    background: var(--bg-soft);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    outline: none;
    resize: none;
}

.dark-input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px var(--primary-light);
}

/* Buttons */
.cta-button {
    width: 100%;
    padding: 1.4rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 140, 126, 0.4);
}

.btn-secondary {
    background: white;
    border: 2px solid var(--primary-light);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-light);
}

/* Model Showcase Marquee */
.models-section {
    padding: 3rem 0 0 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-soft);
}

.model-track {
    display: flex;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    width: max-content;
    padding: 2rem 0;
}

.model-track:hover {
    animation-play-state: paused;
}

.model-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    width: 280px;
    flex-shrink: 0;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    border-color: var(--primary);
}

.model-thumb {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: #fcfcfc;
}

.model-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.model-info p {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Marquee */
.reviews-section {
    overflow: hidden;
    padding: 3rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: reviewScroll 40s linear infinite;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .reviews-track {
        gap: 1rem;
        padding: 1.5rem 0;
    }
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    width: 380px;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 550px;
    border-radius: 40px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.2);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-wrapper {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .app-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .main-layout {
        gap: 2rem;
    }

    .models-section {
        padding: 3rem 0 0 0;
    }

    .reviews-section {
        padding: 1rem 0 3rem 0;
    }

    .review-card {
        width: 300px;
        padding: 1.5rem;
    }

    .model-card {
        width: 220px;
        padding: 1rem;
    }

    .model-thumb {
        height: 160px;
    }

    .hero-title {
        letter-spacing: -1px;
    }


    /* Compact 2-column cards */
    .service-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .glass-card {
        padding: 1.5rem 1rem;
        text-align: center;
        border-radius: 24px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin: 0 auto 1rem;
        border-radius: 14px;
    }

    .glass-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .glass-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Compact Booking Form for Mobile */
    .booking-panel {
        padding: 1.5rem 1.2rem;
        border-radius: 24px;
    }

    .panel-header {
        margin-bottom: 1.5rem;
    }

    .panel-header h2 {
        font-size: 1.5rem;
    }

    .panel-header p {
        font-size: 0.85rem;
    }

    .dark-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }

    .cta-button {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 14px;
        margin-top: 0.5rem;
    }

    .form-actions {
        gap: 0.8rem;
    }

    /* Modal Mobile Fix */
    .modal-content {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        margin: auto;
        /* Ensures centering in scrollable flex container */
    }

    .modal-content h2#modalTitle {
        font-size: 1.8rem !important;
    }

    .modal-content #modalPrice {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .close-modal {
        top: 1rem !important;
        right: 1.2rem !important;
        font-size: 2rem !important;
    }
}

/* Enhanced Footer */
.main-footer {
    padding: 3rem 0 3rem;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}



.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.location-stamp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.location-stamp ion-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-item ion-icon {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-item.wa-theme ion-icon {
    color: var(--whatsapp);
}

.contact-item.wa-theme a:hover {
    color: var(--whatsapp);
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 5rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile Footer adjustments */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .location-stamp,
    .contact-item {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 0.8rem;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .contact-item {
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Highlight Animation */
.field-highlight {
    animation: highlightInput 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes highlightInput {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.03);
        border-color: var(--primary);
        box-shadow: 0 0 0 8px var(--primary-light);
    }

    100% {
        transform: scale(1);
    }
}

/* WhatsApp Button Pulsate/Zoom Animation */
.pulse-zoom {
    animation: pulseZoom 1.5s ease-in-out infinite !important;
}

@keyframes pulseZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Process Section */
.process-section {
    padding: 3rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-top: 1rem;
}

.step-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon-box {
    transform: translateY(-8px);
    background: var(--primary);
    color: white;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.step-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 150px;
}

@media (max-width: 1024px) {
    .step-connector {
        display: none;
        /* Hide connectors on mobile/tablet grid */
    }
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    margin-top: 40px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--primary-light);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .process-section {
        padding: 2.5rem 0 2rem;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 40px;
        margin: 1rem -1rem;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
        padding: 0 0.5rem;
    }

    .step-item:last-child {
        grid-column: span 2;
        margin-top: 0.5rem;
    }

    .step-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        border-radius: 18px;
    }

    .step-num {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -8px;
        right: -8px;
    }

    .step-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .step-item p {
        font-size: 0.75rem;
        line-height: 1.3;
        max-width: 130px;
        color: var(--text-muted);
    }

    .step-connector {
        display: none;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card-premium {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-light);
}

.feature-img-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: var(--bg-soft);
    border-radius: 50%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card-premium p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card-premium {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .feature-img-box {
        width: 100px;
        height: 100px;
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-card-premium h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .feature-card-premium p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* New Form Grid Layout */
.grid-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {

    .form-row,
    .form-actions {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.discovery-area {
    width: 100%;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .discovery-area {
        margin-bottom: 1.5rem;
    }
}

/* Scroll Offset for Sticky Header */
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2000;
    padding: 0.6rem 0.2rem;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    gap: 0.2rem;
    transition: all 0.3s;
}

.bottom-nav-item ion-icon {
    font-size: 1.4rem;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.book-item {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: -30px;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

.bottom-nav-item.book-item ion-icon {
    font-size: 1.5rem;
}

#services,
#process,
#gallery,
#why-choose,
#reviews,
#booking,
#models {
    scroll-margin-top: 80px;
}

/* Service Gallery */
.gallery-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 250px;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 2;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-btn {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }

    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}