/* =======================================================
   KAMWALA Premium Theme Styles - style.css
   ======================================================= */

/* 1. Base Variables & Setup */
:root {
    /* Colors */
    --primary: #0f62fe; /* Premium deep blue */
    --primary-light: #4589ff;
    --primary-dark: #0043ce;
    --primary-alpha: rgba(15, 98, 254, 0.1);
    
    --secondary: #fef1e8; /* Warm peach */
    --accent: #ff832b; /* Safety / action orange */
    
    --text-main: #161616;
    --text-muted: #525252;
    --text-light: #ffffff;
    
    --bg-body: #f8f9fa;
    --bg-surface: #ffffff;
    --border: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Layout */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 20px rgba(15, 98, 254, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.mobile-visible {
    display: none;
}

.desktop-visible {
    display: block;
}

.auth-error {
    background: #fef2f2;
    color: #ef4444;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid #fee2e2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-para {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-surface);
    color: var(--primary);
}
.btn-white:hover {
    background-color: #f0f0f0;
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text-main);
}

.reviews-action {
    margin-top: 1.5rem;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #e0e0e0;
    transition: color var(--transition-fast);
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #f1c40f;
}

/* Modal System Extensions for Review */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.modal-form .form-group {
    margin-bottom: 0.5rem;
}

.modal-form label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-input-box {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.form-input-box:focus {
    outline: none;
    border-color: var(--primary);
}

/* =======================================================
   2. Header & Navigation (Glassmorphism)
   ======================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all var(--transition-smooth);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--primary);
    font-size: 1.75rem;
}

.navbar .nav-list {
    display: flex;
    gap: 1.25rem;
    white-space: nowrap;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}



/* =======================================================
   3. Hero Section
   ======================================================= */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -100%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-alpha) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-alpha);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 98, 254, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stars {
    color: #f1c40f;
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

/* Image Wrapper with Animations */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-ornament {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    border: 2px dashed var(--primary-alpha);
    border-radius: 40px;
    z-index: -1;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    animation: floatingImage 6s ease-in-out infinite;
}

@keyframes floatingImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Floating Card inside Hero */
.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: popupFade 1s 0.5s ease-out both;
}

.floating-card .icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@keyframes popupFade {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* =======================================================
   4. Services Grid (Premium Redesign)
   ======================================================= */
.services {
    padding: 7rem 0;
    background-color: var(--bg-body);
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Cards (Featured) */
.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.card-overlay-content {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    z-index: 2;
}

.card-price {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.3px;
}

.card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    box-shadow: 0 4px 10px rgba(255, 131, 43, 0.3);
    z-index: 2;
}

/* Card Content */
.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-alpha);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-icon-badge--lg {
    width: 60px;
    height: 60px;
    font-size: 2rem;
}

.card-icon-badge--dark {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.7;
}

/* Feature Pills */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.feature-pill i {
    color: #059669;
    font-size: 0.85rem;
}

.feature-pill--dark {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.feature-pill--dark i {
    color: #34d399;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.link-btn:hover {
    color: var(--primary-dark);
}

.link-btn i {
    transition: transform var(--transition-fast);
}

.link-btn:hover i {
    transform: translateX(4px);
}

/* Glass Card */
.service-card--glass {
    background: linear-gradient(145deg, rgba(15, 98, 254, 0.04), rgba(15, 98, 254, 0.01));
    border: 1px solid rgba(15, 98, 254, 0.15);
    position: relative;
}

.card-glass-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(15, 98, 254, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-card--glass .card-content {
    position: relative;
    z-index: 1;
    justify-content: center;
}

/* Dark Card */
.service-card--dark {
    background: linear-gradient(145deg, var(--secondary), var(--primary-dark));
    border: none;
}

.service-card--dark h3 {
    color: #fff;
}

.service-card--dark p {
    color: rgba(255,255,255,0.75);
}

.service-card--dark .card-content {
    justify-content: center;
}

.service-card--dark:hover {
    box-shadow: var(--shadow-glow);
}

/* =======================================================
   X. Trust & Safety
   ======================================================= */
.trust-safety {
    padding: 7rem 0;
    background-color: var(--bg-body);
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.trust-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.blob-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: var(--primary-alpha);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: blobMorph 8s infinite alternate ease-in-out;
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.trust-image {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.trust-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    font-weight: 700;
    color: var(--text-main);
}

.trust-badge i {
    color: #ef4444; /* red recording dot feeling */
    font-size: 1.5rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.trust-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .trust-list li {
        flex-direction: column;
        align-items: center;
    }
}

.trust-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.trust-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* =======================================================
   X. Floating WhatsApp Button
   ======================================================= */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25D366 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 2rem !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
    z-index: 2000 !important;
    transition: all var(--transition-smooth) !important;
    text-decoration: none !important;
    animation: whatsappPulse 2s infinite !important;
    box-sizing: border-box !important;
}

.whatsapp-float i {
    font-size: 2.25rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-float:hover {
    background-color: #128C7E !important;
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4) !important;
}

/* Add a pulse animation to the icon part only or the whole button? 
   Let's add it to the whole button initially to make it noticeable. */
.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
    }
}

/* =======================================================
   5. Features (Why Choose Us)
   ======================================================= */
.features {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-alpha);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-muted);
}

/* Features Visual Right Side */
.features-visual {
    position: relative;
    height: 500px;
    background-color: var(--primary-alpha);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.pattern-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: -1;
}

.glass-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform var(--transition-smooth);
    position: absolute;
}

.highlight-box-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-3deg);
    z-index: 2;
}

.highlight-box-2 {
    bottom: 15%;
    right: 10%;
    transform: rotate(3deg);
    z-index: 3;
}

.glass-box:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

.glass-box h3 {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.glass-box p {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* =======================================================
   6. Pricing Packages
   ======================================================= */
.pricing {
    padding: 6rem 0;
    background-color: var(--secondary);
}

.pricing-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: transform var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card::before {
    content: 'Best Value';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    background: var(--primary);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-wrapper .currency {
    font-size: 1.5rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-wrapper .price {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.price-wrapper .duration {
    font-size: 1rem;
    opacity: 0.8;
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.pricing-body {
    padding: 3rem 2rem;
}

.pricing-features {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-size: 1.05rem;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.pricing-body .btn {
    width: 100%;
}

/* =======================================================
   7. CTA Booking Banner
   ======================================================= */
.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.cta-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.quick-book-form {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form-input {
    border: none;
    padding: 1rem;
    font-size: 1rem;
    flex-grow: 1;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

/* =======================================================
   7. Footer
   ======================================================= */
.footer {
    background-color: #111;
    color: #fff;
    padding: 6rem 0 2rem 0;
    font-size: 0.95rem;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-col p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: #aaa;
    transition: all 0.2s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #aaa;
}

.contact-info i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #777;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
    cursor: default;
}

.pay-badge:hover {
    transform: translateY(-2px);
}

/* GPay - Google colors */
.pay-gpay {
    background: rgba(66, 133, 244, 0.15);
    color: #4285F4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

/* Paytm - Brand blue */
.pay-paytm {
    background: rgba(0, 186, 242, 0.15);
    color: #00BAF2;
    border: 1px solid rgba(0, 186, 242, 0.3);
}

/* PhonePe - Brand purple */
.pay-phonepe {
    background: rgba(95, 37, 159, 0.2);
    color: #a77bca;
    border: 1px solid rgba(95, 37, 159, 0.35);
}

/* UPI - Brand green */
.pay-upi {
    background: rgba(40, 167, 69, 0.15);
    color: #5cb85c;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Cash */
.pay-cash {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* =======================================================
   X. How It Works
   ======================================================= */
.how-it-works {
    padding: 8rem 0 6rem;
    background: linear-gradient(to bottom, var(--bg-body), var(--bg-surface));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    padding-top: 4rem;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 6.5rem;
    left: 15%;
    right: 15%;
    border-top: 3px dashed var(--primary-alpha);
    z-index: 0;
}

@media (max-width: 900px) {
    .steps-grid::before {
        border-top: none;
        border-left: 3px dashed var(--primary-alpha);
        top: 5rem;
        bottom: 5rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    padding: 3rem 2.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border);
}

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

.step-num {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: var(--primary);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(15, 98, 254, 0.4), 0 0 0 10px var(--bg-surface);
    font-family: var(--font-heading);
    z-index: 2;
    transition: all var(--transition-smooth);
}

.step-card:hover .step-num {
    background: var(--primary-dark);
    transform: translateX(-50%) scale(1.05);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-body);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 1.5rem auto 1.5rem;
    transition: all var(--transition-smooth);
}

.step-card:hover .step-icon {
    background: var(--primary-alpha);
    transform: rotate(5deg) scale(1.1);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =======================================================
   X. Testimonials
   ======================================================= */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-body);
}

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

.testimo-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.testimo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimo-card .stars {
    margin-bottom: 1.5rem;
}

.testimo-text {
    font-size: 1.125rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimo-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-alpha);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =======================================================
   X. FAQ
   ======================================================= */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 860px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-surface);
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-body);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* =======================================================
   X. Contact Us
   ======================================================= */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info-blocks .section-title {
    margin-bottom: 1rem;
}

.contact-support-img {
    margin-top: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.input-tip {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-style: italic;
}

.form-input-box {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input-box:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-success-msg {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #ecfdf5;
    color: #059669;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
}

.form-success-msg.hidden {
    display: none;
}
/* =======================================================
   XI. Meet Our Team
   ======================================================= */
.meet-team {
    padding: 6rem 0;
    background: var(--bg-body);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-img-wrap .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(5, 150, 105, 0.9);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(6px);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #161616;
    font-weight: 700;
}

.team-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info p {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.team-group-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: #fff;
    overflow: hidden;
}

.team-group-img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.team-group-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.team-group-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-group-text .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.team-group-text .btn-primary:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* =======================================================
   XII. Service Areas
   ======================================================= */
.service-areas {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.area-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.area-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #161616;
    font-weight: 700;
}

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

/* =======================================================
   XIII. Booking Modal
   ======================================================= */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.booking-modal-overlay.active {
    display: flex;
}

.booking-modal {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
    from { transform: scale(0.9) translateY(40px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Custom Hidden with Animation Support */
.booking-step-content.hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.booking-step-content {
    animation: stepEnter 0.5s ease forwards;
}

@keyframes stepEnter {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-body);
    color: var(--text-main);
}

/* Step Progress - Modern Design */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 100px;
    border: 1px solid #f1f5f9;
}

.step-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: default;
}

.step-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 98, 254, 0.12);
}

.step-indicator.active span {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(15, 98, 254, 0.3);
}

.step-indicator.done {
    color: #10b981;
}

.step-indicator.done span {
    background: #10b981;
    color: #fff;
}

.step-line {
    display: none;
}

/* Step Content */
.booking-step-content h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.booking-step-content h3 i {
    color: var(--primary);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-form .form-group {
    margin-bottom: 1rem;
}

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

/* Phone Input */
.phone-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-prefix {
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.phone-input-wrap .form-input-box {
    border-radius: 0 12px 12px 0;
}

/* Magic Link Status */
.status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-light);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(15, 98, 254, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

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

/* Order Summary - Premium Ticket Look */
.order-summary {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.order-summary::after {
    content: '';
    position: absolute;
    bottom: 4.5rem;
    left: -1px;
    right: -1px;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
}

.order-summary h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-summary h4::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.summary-row span {
    color: #64748b;
    font-weight: 500;
}

.summary-row strong {
    color: var(--text-main);
    text-align: right;
    max-width: 65%;
    font-weight: 600;
}

.summary-divider {
    height: 2.5rem;
}

.summary-total {
    padding-top: 1rem;
    border-top: none;
}

.summary-total span {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.summary-total strong {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
}

/* =======================================================
   Responsive Design
   ======================================================= */
@media (max-width: 1024px) {
    section { padding: 5rem 0; }
    
    .glass-box { padding: 1.5rem; }
    .glass-box h3 { font-size: 2.5rem; }
    
    .hero-title { font-size: 3.5rem; }

    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    section { padding: 4rem 0; }
    
    .header-actions .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        padding: 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--transition-smooth);
    }
    
    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .navbar .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero {
        padding: 8rem 0 4rem 0;
        min-height: auto;
    }
    
    .hero-container, .features-container, .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-item {
        text-align: left;
    }

    .features-visual {
        height: 350px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .quick-book-form {
        width: 100%;
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 500px;
    }

    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-group-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .team-group-img { height: 250px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .card-image-wrapper { height: 220px; }
}

@media (max-width: 500px) {
    .services-grid, .footer-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .floating-card {
        bottom: -15px;
        left: 5px;
        right: 5px;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .glass-box { position: relative; inset: auto; transform: none; width: 100%; margin-bottom: 1rem; }
    .glass-box:hover { transform: none; }
    .features-visual { height: auto; background: transparent; display: block; }
    .pattern-bg { display: none; }
    
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn-large { width: 100%; }
    
    .pricing-header .price { font-size: 3.5rem; }
    .pricing-header .price { font-size: 3.5rem; }
    .trust-image-wrapper { width: 100%; }
    .trust-badge { position: relative; bottom: auto; right: auto; margin: -2rem auto 0; width: max-content; }

    .team-grid { grid-template-columns: 1fr; }
    .team-group-banner { grid-template-columns: 1fr; padding: 2rem; }
    .team-group-text h3 { font-size: 1.5rem; }
    .areas-grid { grid-template-columns: 1fr 1fr; }

    .booking-modal { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .otp-box { width: 48px; height: 48px; font-size: 1.25rem; }
    .booking-steps { gap: 0; }
    .step-line { width: 24px; }

}

/* =======================================================
   X. Multi-Purpose Modal System (Shared)
   ======================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-surface);
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-smooth);
    max-height: 96vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-container.auth-modal-premium {
    max-width: 850px;
    padding: 0;
    overflow: hidden;
    display: flex;
}

.forgot-link {
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 580px) {
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.auth-layout {
    display: flex;
    width: 100%;
}

.auth-side-panel {
    width: 40%;
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-side-panel::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.15;
    top: -50px;
    right: -50px;
}

.side-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.side-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.auth-side-panel h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.auth-forms-container {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-surface);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.input-with-icon .form-input-box {
    padding-left: 3.25rem;
}

.input-with-icon .form-input-box:focus + i {
    color: var(--primary);
}

.btn-google-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.btn-google-premium img {
    width: 20px;
}

.btn-google-premium:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.auth-divider {
    margin: 0.5rem 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    position: relative;
    background: var(--bg-surface);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 850px) {
    .modal-container.auth-modal-premium {
        max-width: 480px;
        width: 95%;
    }
    .auth-side-panel {
        display: none;
    }
    .auth-forms-container {
        padding: 1.25rem;
    }
}

@media (max-height: 700px) {
    .auth-forms-container {
        padding: 1rem;
    }
    .modal-header {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .auth-divider {
        margin: 0.25rem 0;
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.75rem;
    color: var(--text-muted);
    line-height: 1;
    z-index: 10;
}

.modal-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 0.25rem;
}

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

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.modal-footer-text a {
    color: var(--primary);
    font-weight: 600;
}

.btn-full {
    width: 100%;
}

/* Auth Header Links */
.auth-header-links {
    display: flex;
    gap: 0.5rem;
}

/* --- Profile Modal Redesign --- */
.profile-modal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    margin: -3.5rem -3.5rem 2.5rem -3.5rem;
    padding: 3.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.profile-modal-header::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(30px);
}

.user-avatar-main {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.profile-modal-header .header-text h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.profile-modal-header .header-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: #ffffff;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 800;
    color: #000;
    font-size: 1.1rem;
}

/* User Profile Header */
.user-profile-header {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-alpha);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(15, 98, 254, 0.1);
}

.profile-trigger i {
    font-size: 1.25rem;
}

.profile-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.profile-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-body);
    color: var(--primary);
}

.dropdown-menu i {
    font-size: 1.1rem;
}

/* Profile Details Redesign */
.profile-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(15, 98, 254, 0.05);
    transform: translateX(4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.profile-card .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.profile-card .value {
    font-weight: 700;
    color: #000;
    font-size: 1.05rem;
}

/* Google Auth Styles */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.auth-divider span {
    padding: 0 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-google {
    background-color: white;
    color: #444;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.btn-google i {
    font-size: 1.25rem;
    color: #4285F4;
}


/* Profile Payment History Redesign */
.profile-history-section {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #f1f5f9;
}

.profile-history-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-history-section h4 {
    font-family: var(--font-heading);
    color: #000;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-count {
    font-size: 0.8rem;
    background: var(--primary-alpha);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.history-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.history-item-new {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.history-item-new:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.history-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-badge {
    font-weight: 800;
    color: #000;
    font-size: 1rem;
}

.price-tag {
    font-weight: 800;
    color: #059669;
    font-size: 1.1rem;
}

.history-mid {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.history-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #e2e8f0;
    padding-top: 0.75rem;
}

.payment-id-badge {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--primary);
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 6px;
}

.status-pill {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.status-paid { background: #dcfce7; color: #059669; }

.btn-receipt {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.btn-receipt i {
    font-size: 0.95rem;
    color: var(--primary);
}

.btn-receipt:hover {
    background: #e2e8f0;
    color: var(--primary-dark);
    border-color: #cbd5e1;
}

/* Actions */
.profile-actions {
    margin-top: 1rem;
}

.btn-logout-premium {
    width: 100%;
    background: #fff;
    color: #ef4444;
    border: 2px solid #fee2e2;
    padding: 1.1rem;
    border-radius: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-logout-premium:hover {
    background: #fef2f2;
    border-color: #fecaca;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.1);
}

.btn-logout-premium i {
    font-size: 1.25rem;
}

/* Custom Scrollbar */
.history-list-modern::-webkit-scrollbar { width: 4px; }
.history-list-modern::-webkit-scrollbar-track { background: transparent; }
.history-list-modern::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

/* =======================================================
   Responsive & Mobile Navigation Improvements
   ======================================================= */

/* Hide mobile actions on desktop */
.nav-mobile-actions {
    display: none;
}

@media (max-width: 1024px) {
    .navbar .nav-list {
        gap: 1rem;
    }
    .header-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .mobile-visible {
        display: block !important;
    }
    .desktop-visible {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        transition: right var(--transition-smooth);
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .navbar .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .nav-mobile-actions {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 2px dashed var(--border);
    }

    .nav-mobile-actions .auth-header-links,
    .nav-mobile-actions .user-profile-header {
        display: flex;
        width: 100%;
    }

    .nav-mobile-actions .btn-outline {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
    }

    .profile-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
    }

    .profile-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        background: var(--primary-alpha);
    }

    /* Keep Book Now button in header but might need smaller padding */
    .btn-sm {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    #headerBookBtn {
        display: none; /* Hide on very small screens if it crowds the logo */
    }
    
    /* Re-add Book Now inside navbar if hidden in header */
    .nav-mobile-actions::before {
        content: '';
        display: block;
        margin-bottom: 1rem;
    }
    

    .nav-mobile-actions .btn-primary-mobile {
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Custom Status Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-container.status-modal {
    max-width: 400px;
    text-align: center;
    padding: 2.5rem;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

#homeStatusIcon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

#homeStatusTitle {
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-main);
}

#homeStatusMessage {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
}

/* Auth Modal Footer Styles */
.modal-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (max-height: 600px) {
    .modal-footer {
        margin-top: 0.25rem;
        padding-top: 0.25rem;
    }
    .modal-footer-text {
        font-size: 0.85rem;
    }
}

.modal-footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.modal-footer-text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.25rem;
    transition: all 0.3s;
}

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