@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Premium AC Palette */
    --primary: #3B82F6; /* Light Blue */
    --primary-dark: #2563EB;
    --primary-light: #DBEAFE;
    
    --secondary: #0F172A; /* Dark Blue */
    --secondary-light: #1E293B;
    --accent: #EAB308; /* Trust Gold for stars/badges */
    
    /* Backgrounds & Surfaces */
    --bg-main: #FFFFFF; /* White BG */
    --card-bg: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    
    /* UI Corners */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    /* Soft Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.08); /* Deep slate shadow */
    --shadow-lg: 0 20px 40px -5px rgba(59, 130, 246, 0.15); /* Light blue glow */
    --shadow-float: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bouncy: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-main);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
    background: #F1F5F9;
    color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: #10B981;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-success:hover {
    background: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* --- Sticky Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .nav-brand {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

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

.nav-links .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition-fast);
    z-index: 1002;
    padding: 0.5rem;
}

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
        padding: 5rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--secondary) !important;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease-out;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered link animation */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.6s; }

    .nav-links .btn {
        width: 100%;
        max-width: 300px;
        margin-top: 1rem;
    }
}

/* --- Hero Section --- */
/* Using a high quality pseudo-element for background gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeUp 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 550px;
    animation: fadeUp 1s ease-out;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeUp 1.2s ease-out;
}

.hero-booking-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    border-radius: var(--border-radius-pill);
    display: flex;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    align-items: center;
    width: fit-content;
    animation: fadeDown 1.2s ease-out;
}

.hero-booking-form select, .hero-booking-form input {
    border: none;
    background: transparent;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary);
    outline: none;
    min-width: 180px;
}

.hero-booking-form select {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.hero-booking-form .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    border-radius: var(--border-radius-pill);
}

.hero-trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    animation: fadeUp 1.4s ease-out;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-light);
}

.trust-item i {
    color: #10B981; /* Green check */
}

.hero-image-col {
    position: relative;
    animation: fadeInRight 1.2s ease-out;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-float);
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Floating Features (Overlapping Hero) --- */
.features-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-item {
    text-align: center;
    padding: 1rem;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.5rem;
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
}

/* --- How It Works Timeline --- */
.how-it-works {
    padding: 6rem 0;
    background: var(--card-bg);
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed 2px var(--primary-light);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 280px;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bouncy);
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--primary-light);
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

/* --- Services Grid section --- */
.services-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 769px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bouncy);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pop-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.service-image {
    height: 200px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

/* --- JS Generated Item Styles (Cloth/Sub-Services) --- */
.cloth-item, .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.cloth-item:hover, .cart-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.2);
}

.cloth-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.cloth-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-main);
    padding: 0.4rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(0,0,0,0.05);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.quantity {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 24px;
    text-align: center;
}

.order-item, .checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.order-item:last-child, .checkout-item:last-child {
    border-bottom: none;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-desc {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items:baseline;
    gap: 0.25rem;
}
.service-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.service-card .btn {
    width: 100%;
}

/* --- Trust / Social Proof Section --- */
.trust-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: white;
}

.trust-section .section-title h2 {
    color: white;
}
.trust-section .section-title p {
    color: #94A3B8;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 10px;
    scrollbar-width: none; /* Firefox */
}
.testimonials-grid::-webkit-scrollbar { display: none; } /* Chrome */

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #E2E8F0;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.customer-info p {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* --- Why Choose Us --- */
.why-us {
    padding: 6rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.why-item:hover {
    background: var(--bg-main);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.why-item h3 { margin-bottom: 0.5rem; }

/* --- Strong CTA Section --- */
.cta-banner {
    padding: 0 20px 6rem;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%; width: 400px; height: 400px;
    background: var(--primary);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    background: white;
    color: var(--primary-dark);
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    position: relative;
    z-index: 1;
}

.cta-box .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* --- App Download Buttons in Footer --- */
.app-downloads {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #111827; /* Near black */
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
    width: fit-content;
    min-width: 170px;
}

.app-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.app-btn i {
    font-size: 1.5rem;
    color: white;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.app-btn-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 500;
}

.app-btn-text span {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* --- Footer Grid and navigation --- */
footer {
    background: #020617; /* Extra dark slate */
    color: #94A3B8;
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #94A3B8;
    max-width: 350px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-nav h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover { /* Hover */
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- Floating WA Button --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-bouncy);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }
    100% { transform: translateY(0); }
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* --- Keyframes --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero h1 { font-size: 3rem; }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-booking-form { flex-direction: column; width: 100%; border-radius: var(--border-radius); padding: 1.5rem; }
    .hero-booking-form select, .hero-booking-form input, .hero-booking-form .btn { width: 100%; border-right: none; }
    .hero-trust-indicators { justify-content: center; }
    .hero-image-col img { mask-image: none; -webkit-mask-image: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .features-overlap { margin-top: 3rem; }
    .timeline { flex-direction: column; gap: 3rem; align-items: center; }
    .timeline::before { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 2rem; } /* Less padding on mobile */
}

@media (max-width: 768px) {
    .nav-links { display: flex; }
    .hero { padding: 6rem 0 4rem; text-align: center; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; }
    .trust-badges { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-box h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .services-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
    }
    .services-grid::-webkit-scrollbar { display: none; } /* Chrome */
    .service-card {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

/* Mobile Sticky Bottom CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    .floating-wa {
        bottom: 80px; /* Above bottom sticky */
    }
}
/* --- Authentication Pages --- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 6rem;
    position: relative;
}

.auth-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--secondary);
    background-image: 
        radial-gradient(at 0% 0%, hsla(196,100%,20%,0.9) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(240,94%,12%,0.9) 0px, transparent 50%);
}

.auth-card {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-float);
    animation: fadeUp 0.6s ease-out;
}

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

.auth-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.auth-form input, .auth-form textarea, .auth-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
    color: var(--secondary);
}

.auth-form input:focus, .auth-form textarea:focus, .auth-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.auth-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.radio-group-modern {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: 0;
    font-weight: 500;
}

.radio-option input:checked + label {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

@media (max-width: 640px) {
    .auth-card {
        padding: 2.5rem 1.5rem;
    }
}
