/* ============================================
   Kelly's Private Chauffeur Service
   Light & Airy Luxury Theme — Ritz-Carlton Inspired
   Gold-forward · White-dominant · Tropical Elegance
   ============================================ */

/* --- Google Fonts — Cinzel + Montserrat --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors — Light & Airy Luxury */
    --primary: #0B0B0B;
    --primary-light: #3A3A3A;
    --primary-dark: #000000;
    --secondary: #C9A14A;
    --secondary-light: #D4B265;
    --secondary-dark: #A8862D;
    --accent: #B8935A;
    --accent-light: #D4B07A;

    /* Neutrals — soft, warm, airy */
    --white: #FFFFFF;
    --off-white: #FCFBF9;
    --cream: #F8F8F8;
    --soft-bg: #F5F3EF;
    --gray-50: #FAFAF9;
    --gray-100: #F0EEEA;
    --gray-200: #E2DFD9;
    --gray-300: #C9C5BC;
    --gray-400: #9E998F;
    --gray-500: #7A756B;
    --gray-600: #5A5750;
    --gray-700: #3D3B37;
    --gray-800: #2A2926;
    --gray-900: #1A1918;

    /* Status */
    --success: #2D8A5E;
    --warning: #D4932B;
    --danger: #C44040;
    --info: #3478B2;

    /* Typography */
    --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing — generous for luxury feel */
    --section-py: clamp(5rem, 10vw, 8rem);
    --container-px: clamp(1.5rem, 5vw, 3rem);
    --container-max: 1200px;

    /* Transitions — slow, elegant */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);

    /* Shadows — very subtle, warm */
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-gold: 0 4px 24px rgba(201,161,74,0.15);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Gold Divider */
    --divider-gold: 1px solid rgba(201,161,74,0.3);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary-dark); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--secondary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

p { margin-bottom: 1rem; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ============================================
   THIN GOLD DIVIDERS — Ritz-Carlton Signature
   ============================================ */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--secondary);
    margin: 1rem auto;
}

.gold-divider-left {
    width: 60px;
    height: 1px;
    background: var(--secondary);
    margin: 1rem 0;
}

/* ============================================
   BUTTONS — Refined & Understated
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-slow);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Outline variant for light backgrounds */
.btn-outline-gold {
    background: transparent;
    color: var(--secondary-dark);
    border-color: var(--secondary);
}
.btn-outline-gold:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

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

.btn-sm { padding: 0.5rem 1.4rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============================================
   NAVIGATION — Dark & Refined
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-smooth);
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scrolled: Dark background for logo visibility */
.site-header.scrolled {
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 1px 0 rgba(201,161,74,0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: all var(--transition-base);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    transition: color var(--transition-base);
}

.nav-logo-text span {
    color: var(--secondary);
}

/* Scrolled: Logo text stays white on dark header */
.site-header.scrolled .nav-logo-text {
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 0.6rem 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-base);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: all var(--transition-slow);
    transform: translateX(-50%);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 60%;
}

/* Scrolled: Nav links stay light on dark header */
.site-header.scrolled .nav-menu li a {
    color: rgba(255,255,255,0.75);
}

.site-header.scrolled .nav-menu li a:hover,
.site-header.scrolled .nav-menu li a.active {
    color: var(--secondary);
}

.nav-cta {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.73rem;
    white-space: nowrap;
}

/* Scrolled CTA stays gold */
.site-header.scrolled .nav-cta .btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* Mobile Menu Toggle — animated hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: all var(--transition-base);
}

.nav-toggle:hover {
    background: rgba(201,161,74,0.12);
    border-color: rgba(201,161,74,0.3);
}

.site-header.scrolled .nav-toggle {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.35s var(--ease-smooth);
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.site-header.scrolled .nav-toggle span {
    background: var(--white);
}

/* Hamburger → X animation */
.nav-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ============================================
   OFF-CANVAS DRAWER (Left slide)
   ============================================ */
.offcanvas-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s var(--ease-smooth);
}

.offcanvas-backdrop.active {
    display: block;
    opacity: 1;
}

.offcanvas-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #141413;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.4s var(--ease-smooth);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 30px rgba(0,0,0,0.3);
}

.offcanvas-drawer.open {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201,161,74,0.12);
}

.offcanvas-logo img {
    height: 40px;
    width: auto;
}

.offcanvas-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.offcanvas-close:hover {
    background: rgba(201,161,74,0.15);
    color: var(--secondary);
    border-color: rgba(201,161,74,0.3);
}

.offcanvas-nav {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
}

.offcanvas-nav li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.offcanvas-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color var(--transition-base);
}

.offcanvas-nav li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.04);
    border-left-color: var(--secondary);
}

.offcanvas-nav li a:hover i {
    color: var(--secondary);
}

.offcanvas-nav li a.active {
    color: var(--secondary);
    background: rgba(201,161,74,0.08);
    border-left-color: var(--secondary);
}

.offcanvas-nav li a.active i {
    color: var(--secondary);
}

.offcanvas-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(201,161,74,0.12);
}

.offcanvas-footer .btn {
    margin-bottom: 0.75rem;
}

.offcanvas-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: all var(--transition-base);
    text-align: center;
}

.offcanvas-phone:hover {
    color: var(--secondary);
    border-color: rgba(201,161,74,0.3);
}

/* Hide drawer on desktop */
@media (min-width: 769px) {
    .offcanvas-drawer,
    .offcanvas-backdrop { display: none !important; }
}

/* ============================================
   HERO — Split Layout, Editorial Style
   Light bg, dark text left, image right
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
}

.hero-bg {
    display: none; /* No overlay needed for split layout */
}

.hero-inner {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 4rem 3.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.hero-image, .hero-media {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-media .hero-video,
.hero-media .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-media .hero-video.active,
.hero-media .hero-slide.active {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 28px;
    border-radius: 4px;
}

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

.hero-image::after,
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.08) 0%,
        transparent 30%
    );
    pointer-events: none;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EDE9E0 0%, #D4CFC5 50%, rgba(201,161,74,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 161, 74, 0.08);
    border: 1px solid rgba(201, 161, 74, 0.3);
    border-radius: 50px;
    color: var(--secondary-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) both;
    white-space: nowrap;
}

.hero h1 {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.15s var(--ease-smooth) both;
    letter-spacing: 0.08em;
    line-height: 1.25;
    font-size: clamp(2.6rem, 5vw, 4rem);
}

.hero h1 em {
    display: block;
    color: var(--secondary);
    font-style: italic;
    letter-spacing: 0.04em;
    font-size: 0.55em;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-gold-line {
    width: 50px;
    height: 1px;
    background: var(--secondary);
    margin: 1rem 0 2rem;
    animation: fadeInUp 0.8s 0.12s var(--ease-smooth) both;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray-500);
    line-height: 2;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    animation: fadeInUp 0.8s 0.3s var(--ease-smooth) both;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s var(--ease-smooth) both;
}

.hero-actions .btn-lg {
    padding: 1.1rem 3rem;
}

/* Hero buttons on white bg need gold/dark styling */
.hero .btn-outline {
    color: var(--primary);
    border-color: var(--gray-300);
}
.hero .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: var(--divider-gold);
    animation: fadeInUp 0.8s 0.6s var(--ease-smooth) both;
}

.hero-stat-item h3 {
    color: var(--secondary);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.hero-stat-item p {
    color: var(--gray-400);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

/* ============================================
   BOOKING SECTION — Background Image + Overlay
   ============================================ */
.booking-section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
    overflow: hidden;
}

.booking-section-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://glacegrafix.net/kellystaxi/assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.booking-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
}

.booking-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(201,161,74,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.booking-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: var(--divider-gold);
}

.booking-card-header h3 {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.06em;
}

.booking-tabs {
    display: flex;
    gap: 0;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.booking-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.booking-tab.active {
    background: var(--white);
    color: var(--secondary-dark);
    box-shadow: var(--shadow-sm);
}

.booking-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    align-items: end;
}

/* ============================================
   FORM ELEMENTS — Clean & Refined
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    outline: none;
}

.form-control:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.08);
}

.form-control::placeholder {
    color: var(--gray-300);
    font-weight: 300;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A14A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

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

/* ============================================
   SECTIONS — Common Patterns
   ============================================ */
.section {
    padding: var(--section-py) 0;
}

.section-light {
    background: var(--cream);
}

.section-cream {
    background: var(--cream);
}

/* Dark section — used sparingly, warm charcoal not black */
.section-dark {
    background: #2A2826;
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section-header p {
    font-size: 0.98rem;
    color: var(--gray-400);
    line-height: 1.9;
    font-weight: 300;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.55);
}

.section-dark .section-header h2 {
    color: var(--white);
}

/* ============================================
   SERVICES GRID — Elegant Cards
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,161,74,0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,161,74,0.08);
    border: 1px solid rgba(201,161,74,0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--secondary-dark);
}

.service-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.service-price small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   ABOUT / FEATURES — Generous Spacing
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
}

.about-image-badge strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600;
}

.about-image-badge span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-list {
    display: grid;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

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

.feature-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,161,74,0.06);
    color: var(--secondary-dark);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    border: 1px solid rgba(201,161,74,0.12);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin: 0;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS — Clean & Light
   ============================================ */
/* Testimonial Carousel */
.testimonial-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    position: relative;
    height: 100%;
    transition: all var(--transition-slow);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,161,74,0.2);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 1.5rem;
    color: rgba(201,161,74,0.12);
}

.testimonial-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-500);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-nav:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 4px;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 1.75rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: var(--divider-gold);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 300;
}

/* ============================================
   CTA SECTION — Warm Gold Gradient
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #C9A14A 0%, #B8935A 50%, #A88A2D 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--secondary-dark);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--secondary-dark);
    border-color: var(--white);
}

/* ============================================
   PARTNER STRIP — Soft & Light
   ============================================ */
.partner-strip {
    padding: 3rem 0;
    background: var(--white);
    border-top: var(--divider-gold);
    border-bottom: var(--divider-gold);
    overflow: hidden;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.partner-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    white-space: nowrap;
}

.partner-label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,161,74,0.3), transparent);
}

.partner-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-marquee {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.partner-marquee:hover {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 160px;
}

.partner-logo {
    height: 36px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    object-fit: contain;
}

.partner-item:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.partner-item:hover .partner-name {
    color: var(--secondary);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER — Warm Charcoal, Not Black
   ============================================ */
.site-footer {
    background: #2E2C28;
    color: rgba(255,255,255,0.55);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(201,161,74,0.12);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.9;
    margin: 1.25rem 0;
    font-weight: 300;
}

.footer-brand .footer-logo-img {
    height: 46px;
    width: auto;
    margin-bottom: 0.25rem;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    font-weight: 300;
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
}

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

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-contact-item i {
    color: var(--secondary);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    font-size: 0.85rem;
}

.footer-bottom {
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201,161,74,0.08);
    color: var(--secondary);
    transition: all var(--transition-slow);
    border: 1px solid rgba(201,161,74,0.15);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HERO — Light Gradient (Inner Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(
        160deg,
        var(--cream) 0%,
        #EDE9E0 40%,
        rgba(201,161,74,0.12) 100%
    );
    padding: 10rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(201,161,74,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.page-hero p {
    color: var(--gray-400);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Thin gold line under page hero */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--secondary);
}

/* Page hero with uploaded banner image */
.page-hero[data-banner] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 0 5.5rem;
}

.page-hero[data-banner]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.60) 100%
    );
    pointer-events: none;
    width: 100%;
    right: 0;
}

.page-hero[data-banner] .section-label {
    color: var(--secondary-light);
}

.page-hero[data-banner] h1 {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.page-hero[data-banner] p {
    color: rgba(255,255,255,0.8);
}

.page-hero[data-banner]::after {
    background: var(--secondary-light);
}

.booking-page-form {
    max-width: 800px;
    margin: -3rem auto 4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    position: relative;
    z-index: 5;
    border: 1px solid var(--gray-100);
}

.booking-step {
    display: none;
}
.booking-step.active {
    display: block;
    animation: fadeInUp 0.5s var(--ease-smooth);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: var(--divider-gold);
}

.step-dot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-dot .num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    font-size: 0.72rem;
    font-weight: 700;
}

.step-dot.active .num {
    background: var(--secondary);
    color: var(--white);
}

.step-dot.active {
    color: var(--primary);
}

.step-dot.completed .num {
    background: var(--success);
    color: var(--white);
}

.step-connector {
    width: 40px;
    height: 1px;
    background: var(--gray-200);
    align-self: center;
}

/* ============================================
   TOUR CARDS
   ============================================ */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,161,74,0.15);
}

.tour-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-card-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,0.92);
    color: var(--primary);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}

.tour-card-body {
    padding: 1.75rem;
}

.tour-card-body h4 {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.tour-highlights span {
    padding: 0.25rem 0.7rem;
    background: rgba(201,161,74,0.06);
    border: 1px solid rgba(201,161,74,0.12);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: var(--divider-gold);
}

/* ============================================
   ADMIN CARD (reused for info boxes)
   ============================================ */
.admin-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 2rem;
}

/* ============================================
   ALERTS & BADGES
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.alert-success { background: #F0F9F4; color: #2D8A5E; border-left: 3px solid #2D8A5E; }
.alert-danger { background: #FEF2F2; color: #C44040; border-left: 3px solid #C44040; }
.alert-warning { background: #FFFBEB; color: #D4932B; border-left: 3px solid #D4932B; }
.alert-info { background: #EFF6FF; color: #3478B2; border-left: 3px solid #3478B2; }

.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 50px;
}

.badge-warning { background: #FFF3CD; color: #856404; }
.badge-info { background: #D1ECF1; color: #0C5460; }
.badge-primary { background: #E1E8F0; color: var(--primary); }
.badge-accent { background: #D4EDDA; color: #155724; }
.badge-success { background: #C3E6CB; color: #155724; }
.badge-danger { background: #F5C6CB; color: #721C24; }
.badge-dark { background: #D6D8D9; color: #1B1E21; }

/* ============================================
   ANIMATIONS — Slow & Elegant
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s var(--ease-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 3rem; }
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .hero-content { padding-right: 2rem; }
    .hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
    .testimonial-slide { flex: 0 0 50%; }
    .booking-card-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 768px) {
    /* Navigation — hide desktop nav, show hamburger */
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-logo img { height: 40px; }

    /* Hero split layout stacks on mobile */
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 6rem var(--container-px) 2.5rem !important;
        max-width: 100%;
        padding-right: var(--container-px) !important;
        min-height: auto;
    }

    .hero-image, .hero-media {
        height: 45vh;
    }

    .hero h1 { font-size: 2rem; margin-bottom: 1.5rem; }
    .hero-badge { margin-bottom: 1rem; white-space: normal; font-size: 0.68rem; }
    .hero-gold-line { margin-bottom: 1rem; }
    .hero-subtitle { margin-bottom: 2rem; }
    .hero-subtitle br { display: none; }
    .hero-stats { gap: 1.5rem; margin-top: 2rem; }
    .hero-stat-item h3 { font-size: 1.6rem; }

    /* Grids */
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 280px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-slide { flex: 0 0 100%; }
    .testimonial-nav { display: none; }
    .booking-form-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-brand .footer-logo-img { height: 40px; }

    /* Booking */
    .booking-card { padding: 1.5rem; }
    .booking-section { padding: 3rem 0; }
    .booking-page-form { padding: 1.5rem; margin-left: 0.5rem; margin-right: 0.5rem; }
    .booking-card-header { flex-direction: column; gap: 0.75rem; align-items: stretch; }
    .booking-tabs { justify-content: stretch; }
    .booking-tab { flex: 1; text-align: center; font-size: 0.8rem; }

    /* Page Hero */
    .page-hero { padding: 7rem 0 3rem; }
    .page-hero[data-banner] { padding: 8rem 0 3.5rem; }
    .page-hero h1 { font-size: 1.7rem; }

    /* Sections */
    .section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
    .section-header { margin-bottom: 2.5rem; }

    /* CTA */
    .cta-section { padding: 3rem 0; }
    .cta-section h2 { font-size: 1.5rem; }

    /* Service cards */
    .service-card { padding: 1.5rem; }

    /* Partner strip */
    .partner-strip { padding: 2rem 0; }
    .partner-marquee { gap: 2.5rem; }

    /* Feature items */
    .feature-item-icon { width: 40px; height: 40px; font-size: 1rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.5rem; }

    /* Guest account */
    .booking-card-guest { flex-direction: column; align-items: stretch; text-align: left; }
    .booking-card-price { text-align: right; }
    .auth-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .hero h1 { font-size: 1.7rem; }
    .hero-content { padding-top: 5.5rem !important; }

    .step-indicator { flex-wrap: wrap; }
    .step-connector { display: none; }
    .step-dot { font-size: 0.75rem; padding: 0.4rem 0.5rem; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .form-control { font-size: 16px; /* prevent iOS zoom */ }

    .nav-logo img { height: 36px; }
    .booking-card { padding: 1rem; }
    .booking-page-form { padding: 1.25rem; }

    .about-image img { height: 220px; }
    .about-image-badge { bottom: 1rem; left: 1rem; padding: 0.75rem 1rem; }
    .about-image-badge strong { font-size: 1.5rem; }

    .partner-marquee { gap: 2rem; }
    .partner-name { font-size: 0.82rem; }
    .footer-grid { gap: 1.5rem; }

    /* Guest account mobile */
    .booking-card-meta { flex-direction: column; gap: 0.3rem; }

    .booking-step-actions { flex-direction: column !important; }
    .booking-step-actions .btn { width: 100%; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 1.5rem; }
    .nav-logo img { height: 32px; }
    .booking-card { padding: 0.85rem; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .page-hero h1 { font-size: 1.4rem; }
}

/* Touch devices — disable hover transforms */
@media (hover: none) {
    .service-card:hover { transform: none; }
    .tour-card:hover { transform: none; }
    .btn-primary:hover { transform: none; }
    .btn-dark:hover { transform: none; }
}

/* Safe area insets (iPhone notch/Dynamic Island) */
@supports (padding: max(0px)) {
    .site-header .nav-inner {
        padding-left: max(var(--container-px), env(safe-area-inset-left));
        padding-right: max(var(--container-px), env(safe-area-inset-right));
    }
    .site-footer {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* ============================================
   LOADING / SPINNER
   ============================================ */
.spinner {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(45,138,94,0.08);
    border: 1px solid rgba(45,138,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--success);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-400); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }

/* ============================================
   AUTH PAGES (Guest Login/Register/Account)
   ============================================ */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100);
}

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

.auth-form .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.auth-form .form-group input,
.auth-form .form-group select,
.auth-form .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--primary);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.08);
}

/* Nav account link */
.nav-account-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.nav-account-link:hover {
    color: var(--secondary);
}

/* Guest booking cards */
.booking-card-guest {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.3s ease;
}

.booking-card-guest:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.booking-card-guest.past {
    opacity: 0.7;
    background: var(--gray-50);
}

.booking-card-guest.past:hover {
    opacity: 1;
}

.booking-card-status {
    flex-shrink: 0;
}

.booking-card-main {
    flex: 1;
    min-width: 0;
}

.booking-card-ref {
    font-family: monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.booking-card-route {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.booking-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--gray-400);
    flex-wrap: wrap;
}

.booking-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.booking-card-price {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   TRIPADVISOR SVG ICON
   ============================================ */
.footer-social .tripadvisor-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid rgba(201,161,74,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.4s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,161,74,0.3);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: transparent;
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-100);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gallery-item-caption small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 300;
    margin-top: 0.2rem;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-lightbox-nav:hover {
    background: rgba(201,161,74,0.3);
    border-color: var(--secondary);
}

.gallery-lightbox-nav.prev { left: 1.5rem; }
.gallery-lightbox-nav.next { right: 1.5rem; }

.gallery-lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-400);
}

.gallery-empty i {
    font-size: 3rem;
    color: var(--gray-200);
    margin-bottom: 1rem;
    display: block;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: #25D366;
    color: #fff !important;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-whatsapp i {
    font-size: 0.95rem;
}

.nav-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(37,211,102,0.4);
}

/* Adjust scroll-to-top without WhatsApp float */
.scroll-to-top {
    bottom: 1.5rem;
}


/* ──────────────────────────────────────────────────────────────
   HIDE PUBLIC RATES (client request — temporary)
   To restore later: just delete this entire block.
   Admin & concierge pages are not affected — they use admin.css.
   ────────────────────────────────────────────────────────────── */

/* Service card price tags on homepage, services, and tours pages */
.service-price {
    display: none !important;
}

/* "$20 Per Guest From" badge on shared-rides page */
.about-image-badge {
    display: none !important;
}

/* "From $20 Per Guest" feature item row on shared-rides page.
   Hides the whole row since its content is purely about price. */
.feature-item:has(.fa-dollar-sign) {
    display: none !important;
}

/* Account/booking-history price tags on my-account.php (kept VISIBLE
   so logged-in guests can still see what they booked previously).
   If you want to hide those too, uncomment the line below:
.booking-card-price { display: none !important; }
*/
/* ============================================
   VEHICLE SELECTION CARDS — booking step 2
   Append this to the end of assets/css/style.css
   ============================================ */

/* Trip summary mini-block at top of step 2 */
.trip-summary {
    background: var(--cream);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.trip-summary .ts-row {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trip-summary .ts-row i { color: var(--secondary); width: 16px; }

/* Vehicle card */
.vehicle-card {
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
    position: relative;
}
.vehicle-card:hover {
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-gold);
}
.vehicle-card.selected {
    border-color: var(--secondary);
    background: linear-gradient(to right, rgba(201,161,74,0.04), var(--white) 40%);
    box-shadow: var(--shadow-gold);
}
.vehicle-card.selected::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Vehicle image */
.vh-image {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.vh-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vh-image i {
    font-size: 3rem;
    color: var(--gray-300);
}

/* Vehicle info column */
.vh-info .vh-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem;
}
.vh-info .vh-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.vh-badge {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}
.vh-capacity {
    display: flex;
    gap: 1.25rem;
    color: var(--gray-500);
    font-size: 0.85rem;
}
.vh-capacity i {
    color: var(--secondary);
    margin-right: 0.3rem;
}

/* Pricing column */
.vh-pricing {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}
.vh-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.vh-price-na {
    font-size: 0.95rem;
    color: var(--gray-500);
    padding: 0.5rem;
    font-weight: 500;
}
.vh-trip-options {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}
.vh-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}
.vh-radio input { accent-color: var(--secondary); }
.vh-vehicles-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vh-num-vehicles {
    width: 100%;
    padding: 0.45rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
.vh-select-btn {
    width: 100%;
    background: var(--success) !important;
    border-color: var(--success) !important;
    padding: 0.6rem !important;
    font-size: 0.85rem;
}
.vh-select-btn:hover {
    background: #246a48 !important;
    border-color: #246a48 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .vehicle-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .vh-image { height: 140px; }
    .vh-pricing { padding: 0.75rem; }
    .vh-price { font-size: 1.5rem; }
}

/* Review step card */
.review-card {
    background: var(--cream);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}
.review-card .review-h {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: var(--divider-gold);
}
.review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    gap: 1rem;
}
.review-row span {
    color: var(--gray-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.review-row strong { text-align: right; color: var(--primary); font-weight: 500; }
.review-row.review-price strong {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.1rem;
}


/* ============================================================
   Kelly's Taxi — Booking Flow Styles
   Drop-in stylesheet for the 4-step booking wizard.

   Uses the existing design tokens defined in style.css:
     gold     = --secondary (#C9A14A)
     black    = --primary   (#0B0B0B)
     cream    = --cream     (#F8F8F8)
     soft-bg  = --soft-bg   (#F5F3EF)
     heading  = --font-heading (Cinzel)
     body     = --font-body    (Montserrat)

   Install: either append to assets/css/style.css, or save as
   assets/css/booking.css and add <link> after style.css in
   includes/header.php.
   ============================================================ */

/* -------- Outer wrap ------------------------------------- */
.booking-wrap {
    background: var(--soft-bg);
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
    min-height: 60vh;
}
.booking-wrap .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* -------- Step indicator --------------------------------- */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.step-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.step-dot .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-base);
}
.step-dot.active {
    color: var(--primary);
}
.step-dot.active .num {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(201,161,74,0.15);
}
.step-dot.completed {
    color: var(--secondary-dark);
}
.step-dot.completed .num {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}
.step-dot.completed .num::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
}
.step-dot.completed .num { font-size: 0; }
.step-connector {
    width: clamp(20px, 6vw, 60px);
    height: 1px;
    background: var(--gray-200);
    margin: 0 0.6rem;
}

/* -------- Steps wrapper ---------------------------------- */
.booking-step { display: none; }
.booking-step.active { display: block; }

/* -------- Step 1 — centered form ------------------------- */
.booking-page-form {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-md);
}
.booking-page-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--divider-gold);
}

/* -------- 2-column layout (steps 2 & 3) ------------------ */
.booking-2col {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .booking-2col { grid-template-columns: 1fr; }
}

/* -------- Sidebar card ----------------------------------- */
.booking-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 1rem;
}
@media (max-width: 900px) {
    .booking-sidebar { position: static; }
}
.sidebar-h {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: var(--divider-gold);
}

/* Map embed inside sidebar */
.sidebar-map {
    width: 100%;
    height: 200px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-100);
}
.sidebar-map > * { width: 100%; height: 100%; }
.map-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 1rem;
}

/* Right side content card */
.booking-content {
    background: transparent;
    min-width: 0; /* prevent grid blowout */
}

/* -------- Sidebar rows ----------------------------------- */
.sidebar-rows,
.sidebar-vehicle,
.sidebar-fare { display: block; }

.sb-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
}
.sb-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0.55rem 0;
}
.sb-row-split > .sb-row { padding: 0; }

.sb-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201,161,74,0.1);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sb-icon.green {
    background: rgba(45,138,94,0.1);
    color: var(--success);
}
.sb-icon.red {
    background: rgba(196,64,64,0.1);
    color: var(--danger);
}

.sb-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}
.sb-value {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.35;
    word-break: break-word;
}
.sb-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}

.sb-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 0;
}

/* Vehicle row in sidebar (step 3) */
.sb-vehicle-row { align-items: center; }
.sb-vehicle-img {
    width: 70px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
}

/* -------- Fare breakdown (sidebar) ----------------------- */
.sb-fare-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px dashed var(--gray-200);
    margin-bottom: 0.25rem;
}
.sb-fare-head i { color: var(--secondary); margin-right: 0.3rem; }

.sb-fare-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--gray-700);
}
.sb-fare-row span:last-child {
    font-weight: 600;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}
.sb-fare-leg {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}
.sb-fare-subtotal {
    border-top: 1px solid var(--gray-100);
    padding-top: 0.65rem;
    margin-top: 0.35rem;
    font-weight: 600;
}
.sb-fare-subtotal span:first-child { color: var(--primary); }

.sb-fare-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, rgba(201,161,74,0.08), rgba(201,161,74,0.02));
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-md);
}
.sb-fare-total-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}
.sb-fare-total-meta {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}
.sb-fare-total-amount {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--secondary-dark);
    font-variant-numeric: tabular-nums;
}

/* -------- Content card on the right ---------------------- */
.booking-content > .info-block,
.booking-content > #vehicleCards,
.booking-content > .vehicles-loading,
.booking-content > .vehicles-empty {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.booking-content > #vehicleCards { padding: 1rem 1rem 0.25rem; }
.booking-content > .vehicles-loading,
.booking-content > .vehicles-empty {
    padding: 3rem 1.5rem;
    text-align: center;
}

/* Vehicle cards already styled in style.css — relax the
   border/shadow since they sit inside a card now */
.booking-content #vehicleCards .vehicle-card {
    border: 1px solid var(--gray-100);
    box-shadow: none;
}
.booking-content #vehicleCards .vehicle-card:hover { box-shadow: var(--shadow-gold); }

/* -------- Step 3 — info blocks --------------------------- */
.info-block {
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.block-h {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1.25rem;
    padding-bottom: 0.55rem;
    border-bottom: var(--divider-gold);
}

/* Form row helpers */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-row-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .form-row-3 { grid-template-columns: 1fr; }
    .form-row-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .form-row-5 { grid-template-columns: 1fr; }
}

/* -------- Form-group base (in case it isn't there) ------- */
.booking-wrap .form-group { margin-bottom: 1rem; }
.booking-wrap .form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.booking-wrap .form-control {
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.booking-wrap .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.12);
}
.booking-wrap .form-control[disabled] {
    background: var(--gray-50);
    color: var(--gray-500);
    cursor: not-allowed;
}

/* -------- Utilities -------------------------------------- */
.hidden { display: none !important; }

/* -------- Buttons within booking wrap (lighten reset) ---- */
.booking-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}
.booking-wrap .btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.booking-wrap .btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}
.booking-wrap .btn-primary:disabled {
    background: var(--gray-200);
    border-color: var(--gray-200);
    color: var(--gray-500);
    cursor: not-allowed;
}
.booking-wrap .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--gray-200);
}
.booking-wrap .btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}
.booking-wrap .btn-lg { padding: 0.85rem 2rem; font-size: 0.9rem; }

/* -------- Mobile fine-tuning ----------------------------- */
@media (max-width: 768px) {
    .step-dot { font-size: 0.7rem; gap: 0.4rem; }
    .step-dot .num { width: 26px; height: 26px; font-size: 0.8rem; }
    .step-connector { width: 14px; }
    .sb-fare-total-amount { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    /* On phones, hide the step labels and keep just the numbered dots */
    .step-dot { gap: 0; font-size: 0; }
    .step-dot .num { font-size: 0.8rem; }
}


/* ============================================================
 *  Kelly's Taxi — Patch 4: booking sidebar tweaks
 *
 *  Append these lines to the END of assets/css/style.css.
 *  (Don't replace the whole file — just paste this at the bottom.)
 * ============================================================ */

/* Vehicle illustration in the booking-info sidebar.
   Sized to roughly match the live site's vehicle thumbnail. */
.sb-vehicle-img,
.sb-vehicle-icon {
    width: 90px;
    height: 60px;
    flex: 0 0 auto;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-vehicle-icon {
    font-size: 2.5rem;
    color: var(--primary, #cc8a00);
    opacity: 0.8;
}

/* When the vehicle row contains a tall image/icon, give the row some
   breathing room so the text + visual align nicely side-by-side. */
.sb-vehicle-row {
    align-items: flex-start;
    gap: 0.75rem;
}

/* Small two-way tag next to the "Base Fare" / "Service Fee" labels. */
.sb-fare-leg {
    font-size: 0.75em;
    color: var(--gray-500, #9aa);
    font-weight: 400;
    margin-left: 0.25em;
}
.sb-row {
    display: flex;
    align-items: center;     /* the key — vertical centering */
    gap: 0.85rem;
    padding: 0.6rem 0;
}

/* The icon "circle" — round colored background behind each icon.
   Matches the soft-pastel look from the live site. */
.sb-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(204, 138, 0, 0.10);   /* soft gold */
    color: var(--primary, #cc8a00);
    font-size: 0.95rem;
}

/* Two color variants used by the pickup (green) and drop-off (red) pins */
.sb-icon.green {
    background-color: rgba(34, 139, 34, 0.10);
    color: #2e8b57;
}
.sb-icon.red {
    background-color: rgba(220, 53, 69, 0.10);
    color: #c0392b;
}

/* The text column to the right of the icon */
.sb-row > div:not(.sb-row) {
    flex: 1 1 auto;
    min-width: 0;            /* allow long location names to truncate cleanly */
}

/* Label = small uppercase grey caption above the value */
.sb-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500, #888);
    margin-bottom: 0.15rem;
}

/* Value = the actual content (location name, date, etc.) */
.sb-value {
    font-size: 0.95rem;
    color: var(--text, #222);
    font-weight: 500;
    line-height: 1.3;
    word-break: break-word;
}

/* Split row — used for Passenger + Luggage side by side */
.sb-row-split {
    display: flex;
    gap: 1rem;
    padding: 0.6rem 0;
}
.sb-row-split > .sb-row {
    flex: 1 1 0;
}

/* Divider line between rows */
.sb-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin: 0;
}

.footer-social .tripadvisor-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

/* Make sure the link itself centers the SVG nicely
   (in case the surrounding flexbox needs a hint) */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body .sb-row {
    display: flex;
    align-items: center !important;     /* vertical centering of icon + text */
    gap: 0.85rem;
}

/* The icon's coloured circle — bulletproof centering of the FA glyph
   inside. The two extra rules (line-height + font-size on the <i>)
   counter Font Awesome's intrinsic glyph offset. */
body .sb-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(204, 138, 0, 0.10);
    color: var(--primary, #cc8a00);
    line-height: 1 !important;          /* removes FA baseline drift */
    font-size: 0.95rem;
    text-align: center;
}

/* Reset any inherited line-height/padding on the FA glyph itself so
   the icon's optical centre lines up with the circle's geometric one */
body .sb-icon > i,
body .sb-icon > svg {
    line-height: 1 !important;
    display: block;                     /* removes inline-baseline gap */
    margin: 0;
    padding: 0;
}

/* Green pickup + red drop-off variants — keep the soft-pastel look */
body .sb-icon.green {
    background-color: rgba(34, 139, 34, 0.10);
    color: #2e8b57;
}
body .sb-icon.red {
    background-color: rgba(220, 53, 69, 0.10);
    color: #c0392b;
}


/* ---- 2. "SELECT" button on vehicle cards — white text -------- */

/* The button already has a green background, but its text was
   inheriting the dark default. Make it explicitly white. */
.vehicle-card .vh-select-btn,
.vh-pricing  .vh-select-btn,
button.vh-select-btn {
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.vehicle-card .vh-select-btn:hover,
.vh-pricing  .vh-select-btn:hover,
button.vh-select-btn:hover {
    color: #ffffff !important;
}

/* Same for any select button on the "currently selected" state */
.vehicle-card.selected .vh-select-btn {
    color: #ffffff !important;
}


/* ============================================================================
 * UAT FIX — Readability override (2026-05-19)
 *
 * Client request: "make all lettering bold so our older clients would not
 * have a problem seeing the lettering"
 *
 * Implementation: rather than literal bold-everywhere (which damages design),
 * apply a balanced readability boost:
 *   - Body text: darker (gray-700 #3D3B37 instead of gray-600 #5A5750)
 *   - Body text: medium weight (500) instead of regular (400)
 *   - Slightly larger base size (16px instead of 15px)
 *   - Headings/labels/strong stay where they are (already bold/strong)
 *
 * Effect: dramatically improves readability for older eyes without making
 * the site look like a draft document. Reversible by deleting this block.
 * ========================================================================== */

body {
    font-size: 16px !important;
    color: var(--gray-700) !important;
    font-weight: 500 !important;
}

p,
li,
td,
.text-muted,
.detail-value,
.sb-val,
.form-control,
label,
.btn,
.nav-link,
input,
select,
textarea {
    color: var(--gray-700) !important;
    font-weight: 500 !important;
}

/* Specifically darken the gray descriptive text the client circled */
section p,
.service-card p,
.experience-card p,
.tour-card-body p,
.booking-page-hero p,
footer p,
.section-subtitle,
.experience-desc,
.service-desc {
    color: var(--gray-700) !important;
    font-weight: 500 !important;
}

/* Form labels should be a little bolder still, for older eyes */
.form-group label,
.form-group > label,
form label {
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

/* Make small text not so small — readable secondary info */
.small,
small,
.text-sm,
.detail-label,
.sb-label {
    font-size: 0.9rem !important;
    color: var(--gray-600) !important;
}

/* Buttons stay bold (already were) but ensure consistent contrast */
.btn {
    font-weight: 600 !important;
}
