:root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-light: #e0f2fe;
    --primary-dark: #0284c7;
    --primary-glow: rgba(14, 165, 233, 0.1);
    
    --accent: #ef4444;
    --accent-hover: #dc2626;
    
    --bg-main: #ffffff;
    --bg-slate: #f8fafc;
    --bg-slate-dark: #f1f5f9;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --border: #e2e8f0;
    
    /* Typography */
    --font-sans: 'Quicksand', sans-serif;
    --font-display: 'Quicksand', sans-serif;
    
    /* Metrics */
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-blue: 0 20px 40px -10px rgba(14, 165, 233, 0.2);
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 32px;
}

.text-primary { color: var(--primary); }
.text-white { color: #fff !important; }
.icon-sm { width: 18px; height: 18px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

.btn-accent {
    background-color: var(--accent);
    color: white;
}

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

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

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

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background-color: #0f172a;
    color: white;
    border-color: #0f172a;
}

.btn-dark:hover {
    background-color: white;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: white;
    z-index: 100;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid var(--border);
}

/* Transparent navbar ONLY on home page */
.page-home .navbar {
    background: transparent;
    border-bottom-color: transparent;
}

.navbar.scrolled,
.page-home .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    background: var(--primary-glow);
    padding: 8px;
    border-radius: var(--radius-sm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-main);
    line-height: 1;
    transition: color 0.3s;
}

/* White brand on home page transparent navbar */
.page-home .brand-name {
    color: #ffffff;
}

.page-home .navbar.scrolled .brand-name,
.navbar.scrolled .brand-name {
    color: var(--text-main);
}

.page-home .navbar.scrolled .brand-title,
.navbar.scrolled .brand-title {
    color: var(--text-muted);
}

.brand-title {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
    max-width: 220px;
    white-space: normal;
    line-height: 1.3;
    transition: color 0.3s;
}

.page-home .brand-title {
    color: rgba(255,255,255,0.75);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

/* White nav links on home page transparent navbar */
.page-home .nav-link {
    color: rgba(255,255,255,0.9);
}

.page-home .nav-link:hover,
.page-home .nav-link.active {
    color: #ffffff;
}

.page-home .navbar.scrolled .nav-link {
    color: var(--text-muted);
}

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

.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-link {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
}

.mobile-link.active {
    color: var(--primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: var(--nav-height);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0a1628;
    background-image: 
        linear-gradient(to right, rgba(5, 15, 40, 0.92) 40%, rgba(5, 15, 40, 0.5) 100%),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
    padding: 80px 24px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8, #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #cbd5e1;
    background-size: cover;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-blue);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 2;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent);
    padding: 12px;
    border-radius: 50%;
    display: flex;
}

.floating-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-main);
}

.floating-text span {
    font-size: 13px;
    color: var(--text-muted);
}

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

/* Sections Common */
.section-header {
    margin-bottom: 40px;
}

.section-header:not(.left-align) {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.caption {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

/* Features */
.features {
    background: white;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.feature-card.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    background: var(--primary-glow);
    color: var(--primary);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Services */
.services {
    background: var(--bg-slate);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

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

/* Featured / Highlighted Card */
.service-featured {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border: none;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
    transform: scale(1.04);
    position: relative;
    overflow: hidden;
    color: white;
}

.service-featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.service-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5);
}

.service-featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-featured .service-top h3 {
    color: white;
    font-size: 20px;
}

.service-featured .service-desc {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.service-featured .service-bottom {
    border-top-color: rgba(255,255,255,0.2);
}

.service-featured .service-price {
    color: white;
    font-size: 20px;
}

.service-featured .service-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    background: var(--primary-glow);
    color: var(--primary);
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
}

.service-top h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-main);
}

.service-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    min-height: 48px;
    flex-grow: 1;
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}

.service-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* CTA Section */
.cta {
    background-color: #0a1628;
    background-image:
        linear-gradient(to right, rgba(5,15,40,0.88) 0%, rgba(5,15,40,0.75) 100%),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(14,165,233,0.15), transparent 60%);
}

.cta-container {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    margin-top: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: white;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-icon {
    background: var(--primary);
    color: white;
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-main);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 24px;
}

.footer-info {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.hours-time {
    color: var(--text-main);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive */
@media (min-width: 1024px) {
    .hide-desktop { display: none !important; }
}

@media (max-width: 1023px) {
    .hide-mobile { display: none !important; }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-indicator {
        justify-content: center;
    }
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease) forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Gradients */
.bg-gradient {
    background: linear-gradient(135deg, var(--bg-slate), #e0f2fe);
}

.gradient-card {
    background: linear-gradient(145deg, #ffffff, #f0f9ff);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s var(--ease);
    color: var(--primary);
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

/* Status Tracker */
.tracker-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.tracker-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-input {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: all 0.2s var(--ease);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.tracker-result {
    display: none;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-top: 24px;
    animation: fadeUp 0.4s var(--ease) forwards;
}

.tracker-result.active {
    display: block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.status-confirmed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.tracker-details p {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.tracker-details strong {
    color: var(--text-main);
}

/* =====================
   BOOKING MODAL
   ===================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.3s var(--ease);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-slate);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    transition: all 0.2s;
}

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

.modal-step {
    display: none;
    padding: 40px;
}

.modal-step.active {
    display: block;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.modal-icon svg { width: 30px; height: 30px; }

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

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

/* Form inside modal */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-main);
    background: white;
    transition: all 0.2s var(--ease);
    width: 100%;
}

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

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Day Picker chips */
.day-picker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.day-chip input { display: none; }

.day-chip span {
    display: block;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    user-select: none;
}

.day-chip input:checked + span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.day-chip span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Availability notice */
.availability-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--primary-glow);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.availability-notice svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Modal Success Step */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #16a34a;
}

.success-icon svg { width: 40px; height: 40px; }

.modal-success h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.modal-success p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ref-box {
    background: var(--bg-slate);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.ref-box span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ref-box strong {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.ref-hint {
    font-size: 13px;
    color: var(--text-muted);
}

.ref-hint a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
    .modal-step { padding: 24px; }
}

/* Footer credit link */
.footer-credit {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit:hover { color: var(--primary-dark); text-decoration: underline; }

/* Status Tracker Tabs */
.tracker-tabs {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
}

.tracker-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: white;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.tracker-tab:not(:last-child) { border-right: 1.5px solid var(--border); }

.tracker-tab.active {
    background: var(--primary);
    color: white;
}

/* Avatar icon style (no photos) */
.avatar-icon {
    background: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
