/* =============================================
   RAJKOT CITY CAB - Main Stylesheet
   Colors: Cherry Red #C8102E | White #FFFFFF | Brown #3D1C02 | Warm Brown #7B3F1E
   ============================================= */

:root {
    --red: #C8102E;
    --red-dark: #9E0B24;
    --red-light: #E8294A;
    --white: #FFFFFF;
    --brown: #3D1C02;
    --brown-mid: #7B3F1E;
    --brown-light: #C49A6C;
    --cream: #FDF6EE;
    --gray-light: #F5F0EB;
    --gray: #8C7B6E;
    --text: #2C1A0E;
    --shadow: 0 8px 40px rgba(61,28,2,0.15);
    --shadow-red: 0 8px 30px rgba(200,16,46,0.3);
    --radius: 12px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- TOPBAR ---- */
.topbar {
    background: var(--brown);
    color: var(--cream);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.topbar-left span, .topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cream);
    transition: color var(--transition);
}
.topbar-right a:hover { color: var(--brown-light); }
.topbar-left i, .topbar-right i { color: var(--brown-light); }

/* ---- HEADER ---- */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(61,28,2,0.12);
    transition: all var(--transition);
}
.main-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon svg { width: 56px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.5px;
}
.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 3px;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--brown);
    transition: all var(--transition);
    position: relative;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--red);
    background: rgba(200,16,46,0.06);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.btn-book {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-red);
    transition: all var(--transition) !important;
}
.btn-book:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(200,16,46,0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--brown);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ---- HERO SLIDER ---- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(61,28,2,0.82) 0%, rgba(61,28,2,0.5) 55%, rgba(200,16,46,0.2) 100%);
}

/* SVG-based background slides */
.slide-1 { background: linear-gradient(135deg, #1a0a00 0%, #3D1C02 40%, #7B3F1E 100%); }
.slide-2 { background: linear-gradient(135deg, #0a0000 0%, #C8102E 50%, #9E0B24 100%); }
.slide-3 { background: linear-gradient(135deg, #1a0a00 0%, #2d1001 50%, #C8102E 100%); }
.slide-4 { background: linear-gradient(135deg, #3D1C02 0%, #7B3F1E 60%, #C49A6C 100%); }

.slide-bg-graphic {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.slide-bg-graphic svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,16,46,0.85);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeInDown 0.8s ease;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title span { color: #F4C430; }
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-red);
    transition: all var(--transition);
    border: 2px solid var(--red);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(200,16,46,0.45);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #F4C430;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero Booking Form (Tabs) */
.hero-booking {
    animation: fadeInRight 0.8s ease 0.3s both;
}
.booking-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.booking-card-header {
    background: var(--red);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-card-header h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}
.booking-card-header i { color: rgba(255,255,255,0.8); font-size: 1.2rem; }

.booking-tabs {
    display: flex;
    background: var(--cream);
    border-bottom: 2px solid var(--gray-light);
}
.booking-tab {
    flex: 1;
    padding: 11px 8px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.booking-tab i { font-size: 1rem; }
.booking-tab.active {
    color: var(--red);
    border-bottom-color: var(--red);
    background: var(--white);
}
.booking-tab:hover:not(.active) { color: var(--brown); background: rgba(200,16,46,0.04); }

.booking-form-body { padding: 20px; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group.full { grid-column: 1/-1; }

.btn-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Slider controls */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}
.slider-dot.active {
    background: var(--red);
    width: 28px;
    border-radius: 4px;
}

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
    display: inline-block;
    background: rgba(200,16,46,0.1);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--brown);
    line-height: 1.2;
}
.section-title span { color: var(--red); }
.section-desc {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 12px auto 0;
}
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--brown-light));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--cream); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(61,28,2,0.08);
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--red);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red), #FF6B8A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(200,16,46,0.3);
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}
.why-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ---- SERVICES SECTION ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(61,28,2,0.08);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.service-img {
    height: 200px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.service-img-icon { font-size: 4rem; color: rgba(255,255,255,0.9); z-index: 1; }
.service-img::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -60px;
    right: -60px;
}
.service-body { padding: 24px; }
.service-tag {
    display: inline-block;
    background: rgba(200,16,46,0.1);
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}
.service-body p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; margin-bottom: 16px; }
.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
}
.service-features li i { color: var(--red); font-size: 0.8rem; }
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.btn-service:hover { background: var(--red-dark); transform: translateX(4px); }

/* ---- POPULAR ROUTES ---- */
.routes-section { background: var(--cream); }
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.route-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(61,28,2,0.07);
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
}
.route-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.route-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.route-info .route-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brown);
}
.route-info .route-dist { font-size: 0.78rem; color: var(--gray); }

/* ---- FLEET ---- */
.fleet-section {}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.fleet-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61,28,2,0.08);
    transition: all var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fleet-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.fleet-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream), var(--gray-light));
}
.fleet-img span { z-index: 1; }
.fleet-body { padding: 20px; }
.fleet-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
}
.fleet-type { font-size: 0.8rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.spec-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray); }
.spec-item i { color: var(--red); font-size: 0.82rem; }
.fleet-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 12px;
}
.price-tag { font-size: 0.8rem; color: var(--gray); }
.price-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--red); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(61,28,2,0.07);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote-mark {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    color: rgba(200,16,46,0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.stars { color: #F4C430; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--brown));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--brown); }
.reviewer-city { font-size: 0.8rem; color: var(--gray); }

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--brown) 0%, var(--red) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    left: -100px;
}
.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -150px;
    right: -50px;
}
.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.btn-outline-white2 {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.btn-outline-white2:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ---- CONTACT INFO CARDS ---- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(61,28,2,0.08);
    transition: all var(--transition);
    border-top: 4px solid transparent;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--red); }
.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--white);
}
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 0.92rem; color: var(--gray); }
.contact-card a:hover { color: var(--red); }

/* ---- BOOKING PAGE ---- */
.booking-page-section { background: var(--cream); }
.booking-hero {
    background: linear-gradient(135deg, var(--brown) 0%, var(--red-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.booking-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 12px;
}
.booking-hero p { font-size: 1.05rem; opacity: 0.85; }

.booking-main-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 820px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}
.booking-main-tabs {
    display: flex;
    background: var(--gray-light);
}
.booking-main-tab {
    flex: 1;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    font-family: 'DM Sans', sans-serif;
}
.booking-main-tab i { font-size: 1.2rem; }
.booking-main-tab.active {
    background: var(--white);
    color: var(--red);
    border-bottom-color: var(--red);
}
.booking-main-form { padding: 36px; }
.booking-main-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-main-form .form-group { margin-bottom: 20px; }
.booking-main-form .form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}
.booking-main-form .form-group input,
.booking-main-form .form-group select,
.booking-main-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.booking-main-form .form-group input:focus,
.booking-main-form .form-group select:focus,
.booking-main-form .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200,16,46,0.08);
}
.booking-main-form .btn-submit {
    padding: 15px;
    font-size: 1.08rem;
    border-radius: 12px;
}

/* ---- PAGE BANNER ---- */
.page-banner {
    background: linear-gradient(135deg, var(--brown) 0%, var(--red-dark) 60%, var(--red) 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -150px;
    right: 10%;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.page-banner p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.88rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb i { font-size: 0.7rem; }

/* ---- ABOUT PAGE ---- */
.about-main { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.about-img-wrap { position: relative; }
.about-img-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    border-radius: 20px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    border-radius: 16px;
    padding: 20px 22px;
    text-align: center;
    box-shadow: var(--shadow-red);
}
.about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; }
.about-badge-float .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 900;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 18px;
}
.about-text h2 span { color: var(--red); }
.about-text p { color: var(--gray); line-height: 1.75; margin-bottom: 14px; font-size: 0.98rem; }
.about-list { margin: 20px 0; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
}
.about-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* ---- TEAM ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61,28,2,0.08);
    text-align: center;
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
    height: 140px;
    background: linear-gradient(135deg, var(--red), var(--brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.team-body { padding: 18px; }
.team-body h4 { font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.team-body .role { font-size: 0.82rem; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.team-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* ---- CONTACT FORM ---- */
.contact-section { background: var(--cream); }
.contact-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 14px;
}
.contact-info-side p { color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
    width: 46px;
    height: 46px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.info-item h4 { font-weight: 700; color: var(--brown); font-size: 0.92rem; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--gray); }
.info-item a:hover { color: var(--red); }
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 24px;
}
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ---- FOOTER ---- */
.main-footer { background: var(--brown); color: var(--cream); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand .logo-main { color: var(--cream); }
.footer-brand .logo-sub { color: var(--red); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(253,246,238,0.7); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(253,246,238,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.footer-col ul a i { font-size: 0.7rem; color: var(--red); }
.footer-col ul a:hover { color: var(--cream); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(253,246,238,0.75);
}
.footer-contact-item i { color: var(--red); margin-top: 2px; }
.footer-contact-item a { color: rgba(253,246,238,0.75); }
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    display: flex;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.84rem; color: rgba(253,246,238,0.6); }
.footer-bottom strong { color: var(--cream); }

/* ---- FLOATING ELEMENTS ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-red);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 36px rgba(37,211,102,0.7); }
}
@keyframes slideUp {
    from { opacity:0; transform: translateY(30px); }
    to { opacity:1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content .container { grid-template-columns: 1fr; }
    .hero-booking { max-width: 520px; margin: 40px auto 0; }
    .about-main { grid-template-columns: 1fr; }
    .contact-form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-top: 2px solid var(--red);
        gap: 4px;
    }
    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; padding: 12px 16px; }
    .hamburger { display: flex; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .booking-main-form { padding: 20px; }
    .booking-main-form .form-row { grid-template-columns: 1fr; }
    section { padding: 56px 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
    .hero-section { min-height: 100svh; }
    .hero-cta { flex-direction: column; }
    .booking-tabs { flex-wrap: wrap; }
}
