/* ==========================================================================
   NEW RAJ TRAVELS - STATE-OF-THE-ART PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* 1. Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* 2. Custom Properties System */
:root {
    /* Color Palette - Premium Royal Blue Theme */
    --color-primary-blue: #1e295d;     /* Royal Blue (Primary Brand) */
    --color-secondary-blue: #161a38;   /* Midnight Indigo (Dark Sections) */
    --color-dark-bg: #090b16;          /* Deep Obsidian Space Dark */
    --color-panel-bg: #12152d;         /* Glowing Dark Indigo Card Fill */
    --color-panel-border: #1f254e;     /* Sub-panel outline */
    --color-brand-red: #ff3b30;        /* Vibrant Neon Crimson Accent */
    --color-brand-red-hover: #e02d23;  /* Hover state red */
    --color-gold: #f59e0b;             /* Warm Amber/Gold for Star Ratings */
    
    /* Light System */
    --color-text-dark: #0f172a;        /* Charcoal dark */
    --color-text-light: #f8fafc;       /* Clean slate white */
    --color-text-gray: #64748b;        /* Subtitle cool grey */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    
    /* Typography */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Grid & Layout System */
    --container-max-width: 1200px;
    --section-padding: 6.5rem 1.5rem;
    
    /* Advanced Shadows & Glows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 15px 35px rgba(30, 41, 93, 0.06);
    --shadow-lg: 0 30px 60px rgba(9, 11, 22, 0.12);
    --shadow-brand: 0 10px 25px rgba(255, 59, 48, 0.35);
    --glow-indigo: 0 0 40px rgba(30, 41, 93, 0.4);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3. Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-secondary-blue);
    letter-spacing: -0.01em;
}

p {
    color: var(--color-text-gray);
    font-size: 0.975rem;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* 4. Common & Utility Layout Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.text-center { text-align: center; }
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}
.section-title span {
    color: var(--color-brand-red);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.badge {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--color-brand-red);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Section Background Layouts with Radial Glow spots */
.section-dark {
    background-color: var(--color-dark-bg);
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 41, 93, 0.25) 0%, transparent 60%);
    color: var(--color-text-light);
    padding: var(--section-padding);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-text-light);
}
.section-dark p {
    color: #cbd5e1;
}

.section-light {
    background-color: var(--color-bg-light);
    background-image: radial-gradient(circle at 90% 80%, rgba(30, 41, 93, 0.03) 0%, transparent 50%);
    padding: var(--section-padding);
}

.section-white {
    background-color: var(--color-bg-white);
    background-image: radial-gradient(circle at 50% 50%, rgba(30, 41, 93, 0.02) 0%, transparent 50%);
    padding: var(--section-padding);
}

/* Crimson CTA Buttons */
.btn-primary {
    background-color: var(--color-brand-red);
    color: var(--color-text-light) !important;
    padding: 0.95rem 2.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-brand);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--color-brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-brand-red);
    color: var(--color-brand-red) !important;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background-color: var(--color-brand-red);
    color: var(--color-text-light) !important;
}

/* WhatsApp Brand Button */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: var(--transition-fast);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

/* 5. Sticky Header + Utilities Top Bar */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-top-bar {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-top-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}
.top-bar-item svg {
    color: var(--color-brand-red);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

header {
    background-color: rgba(9, 11, 22, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Scrolled Sticky State Transform */
.header-wrapper.scrolled {
    transform: translateY(-40px); /* Hide top bar smoothly */
}

.header-wrapper.scrolled header {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 1rem 2rem;
}

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

/* Image Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter var(--transition-fast);
}

/* On transparent header, make the logo white for contrast */
.header-wrapper:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

/* In the footer, make the logo white for contrast */
footer .logo-img {
    filter: brightness(0) invert(1);
    height: 48px;
}

/* Navigation Links Drawer */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.header-wrapper.scrolled .nav-link {
    color: var(--color-text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-brand-red);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

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

.header-wrapper.scrolled .nav-link:hover,
.header-wrapper.scrolled .nav-link.active {
    color: var(--color-brand-red);
}

/* Mobile Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.header-wrapper.scrolled .hamburger span {
    background-color: var(--color-text-dark);
}

/* 6. Advanced Parallax Hero Section & Bottom Stats */
.hero {
    height: 100vh;
    min-height: 840px;
    position: relative;
    background-image: linear-gradient(rgba(9, 11, 22, 0.45), rgba(9, 11, 22, 0.85)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    padding: 150px 1.5rem 5rem 1.5rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--color-brand-red);
}

.hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
    line-height: 1.6;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Stats Counter Row overlay inside hero */
.hero-stats-container {
    position: absolute;
    bottom: 4.5rem;
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 1.5rem;
    z-index: 10;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(18, 21, 45, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-brand-red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 7. Floating Glassmorphism Trip Selector Widget */
.selector-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -4rem; /* Overlap bounds */
    padding: 0 1.5rem;
}

.selector-panel {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(9, 11, 22, 0.1);
    border: 1px solid var(--color-border);
    max-width: var(--container-max-width);
    margin: 0 auto;
    overflow: hidden;
}

/* Widget Tab Bar */
.selector-tabs {
    display: flex;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.selector-tab-btn {
    background: transparent;
    padding: 1.15rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border-right: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.selector-tab-btn:last-child {
    border-right: none;
}

.selector-tab-btn svg {
    color: var(--color-text-gray);
}

.selector-tab-btn.active {
    background-color: var(--color-bg-white);
    color: var(--color-primary-blue);
}

.selector-tab-btn.active svg {
    color: var(--color-brand-red);
}

/* Horizontal input list form */
.selector-form {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.5rem;
    align-items: flex-end;
}

.selector-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selector-input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--color-text-gray);
}

.selector-input-group select,
.selector-input-group input {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    border-radius: var(--border-radius-md);
    padding: 0.9rem 1.1rem;
    font-size: 0.925rem;
    transition: var(--transition-fast);
    width: 100%;
}

.selector-input-group select:focus,
.selector-input-group input:focus {
    border-color: var(--color-primary-blue);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(30, 41, 93, 0.08);
}

.btn-selector-submit {
    height: 52px;
    padding: 0 2.25rem;
    border-radius: var(--border-radius-md);
    background-color: var(--color-brand-red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-brand);
    transition: var(--transition-fast);
}

.btn-selector-submit:hover {
    background-color: var(--color-brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.4);
}

/* 8. Split About Us Grid */
.about-section-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 9. Luxury Showroom Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.vehicle-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 41, 93, 0.15);
}

/* Luxury Showroom Spotlight backdrop */
.vehicle-card-img-wrapper {
    height: 230px;
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

/* Spotlight glow point */
.vehicle-card-img-wrapper::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(239, 59, 58, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.vehicle-card:hover .vehicle-card-img-wrapper::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(239, 59, 58, 0.2) 0%, transparent 70%);
}

.vehicle-card-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.vehicle-card:hover .vehicle-card-img-wrapper img {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

/* Rating Badge in top corner */
.vehicle-rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(9, 11, 22, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.65rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 3;
}

/* Glowing Neon-red/Blue accent separator bar */
.vehicle-accent-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-brand-red) 50%, var(--color-primary-blue) 100%);
    width: 100%;
    position: relative;
    z-index: 3;
}

.vehicle-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-category-label {
    font-size: 0.75rem;
    color: var(--color-brand-red);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: 0.08em;
}

.vehicle-card-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-secondary-blue);
    margin-bottom: 0.85rem;
    transition: var(--transition-fast);
}

.vehicle-card:hover .vehicle-card-content h3 {
    color: var(--color-brand-red);
}

/* Custom Micro-chip Spec Tags */
.vehicle-specs-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.vehicle-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--color-primary-blue);
    font-weight: 700;
    background-color: rgba(30, 41, 93, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(30, 41, 93, 0.08);
    transition: var(--transition-fast);
}

.vehicle-spec-item svg {
    width: 12px;
    height: 12px;
    color: var(--color-primary-blue);
    transition: var(--transition-fast);
}

.vehicle-card:hover .vehicle-spec-item {
    background-color: rgba(255, 59, 48, 0.05);
    border-color: rgba(255, 59, 48, 0.12);
    color: var(--color-brand-red);
}

.vehicle-card:hover .vehicle-spec-item svg {
    color: var(--color-brand-red);
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.vehicle-pricing {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

.vehicle-pricing span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary-blue);
    line-height: 1.1;
    margin-top: 0.15rem;
}

/* Premium card CTA button */
.btn-vehicle-book {
    background-color: var(--color-brand-red);
    color: white !important;
    padding: 0.65rem 1.2rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-brand);
    border: none;
    transition: var(--transition-fast);
}

.btn-vehicle-book:hover {
    background-color: var(--color-brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.4);
}

.btn-vehicle-book svg {
    transition: var(--transition-fast);
}

.btn-vehicle-book:hover svg {
    transform: translateX(3px);
}

/* 10. Service Grid Boxes with radial backdrops */
.service-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-box {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.75rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 41, 93, 0.18);
    box-shadow: 0 15px 35px rgba(9, 11, 22, 0.05);
}

.service-box-icon-container {
    width: 64px;
    height: 64px;
    background-color: rgba(30, 41, 93, 0.06);
    color: var(--color-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-smooth);
}

.service-box:hover .service-box-icon-container {
    background-color: var(--color-brand-red);
    color: white;
    transform: scale(1.05) rotateY(180deg);
}

.service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.service-box p {
    font-size: 0.925rem;
    line-height: 1.6;
}

/* 11. Redesigned Tour Package Cards */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: var(--color-secondary-blue);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(9, 11, 22, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: var(--color-text-light);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-card-overlay {
    transform: translateY(0);
}

.tour-card:hover img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--color-brand-red);
    color: white;
    padding: 0.4rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.tour-card-overlay h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
}

.tour-card-overlay p {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.tour-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}

.tour-meta-item svg {
    color: var(--color-brand-red);
}

/* 12. Benefits Split Section (Collage + Checks) */
.benefits-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5.5rem;
    align-items: center;
}

.benefits-collage-wrapper {
    position: relative;
}

.benefits-collage-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.benefits-floating-badge {
    position: absolute;
    bottom: -1.75rem;
    right: -1.75rem;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
    border: 4px solid var(--color-bg-white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.benefits-floating-badge div {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-brand-red);
    line-height: 1;
}

.benefits-floating-badge span {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Benefits list checks styling */
.benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.benefit-check-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.benefit-check-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 59, 48, 0.08);
    color: var(--color-brand-red);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.benefit-check-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.benefit-check-text p {
    font-size: 0.925rem;
    line-height: 1.55;
}

/* 13. Horizontal Steps Timeline Connector */
.steps-timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 3.5rem auto 0 auto;
}

.steps-timeline-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12%;
    width: 76%;
    height: 2px;
    border-top: 2px dashed rgba(255,255,255,0.15);
    z-index: 1;
}

.timeline-step {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.timeline-step-num {
    width: 72px;
    height: 72px;
    background-color: var(--color-secondary-blue);
    border: 3px solid var(--color-brand-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-step-num {
    background-color: var(--color-brand-red);
    transform: scale(1.08);
    box-shadow: var(--shadow-brand);
}

.timeline-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
    font-family: var(--font-heading);
}

.timeline-step p {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* 14. Premium Client Reviews (Testimonials) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    border-color: rgba(30, 41, 93, 0.15);
    background-color: var(--color-bg-white);
    box-shadow: 0 20px 40px rgba(9, 11, 22, 0.04);
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 59, 48, 0.1);
    line-height: 1;
    position: absolute;
    top: 0.25rem;
    left: 1.5rem;
    user-select: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid var(--color-border);
}

.testimonial-author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
    font-family: var(--font-heading);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* 15. Crimson CTA Callout strip banner */
.cta-callout-banner {
    background: linear-gradient(135deg, var(--color-brand-red) 0%, #b91c1c 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-callout-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-callout-banner h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.cta-callout-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
}

.btn-cta-dark {
    background-color: var(--color-secondary-blue);
    color: white !important;
    padding: 0.95rem 2.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-cta-dark:hover {
    background-color: var(--color-primary-blue);
    transform: translateY(-2px);
}

/* 16. Footer & Legal copyrights */
footer {
    background-color: var(--color-secondary-blue);
    color: var(--color-text-light);
    padding: 5rem 2rem 2.5rem 2rem;
    border-top: 5px solid var(--color-brand-red);
}

.footer-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    color: var(--color-text-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2.5px;
    background-color: var(--color-brand-red);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-about p {
    color: #cbd5e1;
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--color-brand-red);
    transform: translateY(-2px);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: #cbd5e1;
    font-size: 0.925rem;
}

.footer-links-list a:hover {
    color: var(--color-brand-red);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.925rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item svg {
    color: var(--color-brand-red);
    flex-shrink: 0;
}

.footer-copyright {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright a:hover {
    color: var(--color-brand-red);
}

/* 17. Success Modal Booking Receipt Popup */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 11, 22, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    z-index: 10;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-gray);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-brand-red);
}

.receipt-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed var(--color-border);
    padding-bottom: 1.5rem;
}

.receipt-success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.receipt-id {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-brand-red);
    margin-top: 0.25rem;
}

.receipt-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.receipt-label {
    font-weight: 500;
    color: var(--color-text-gray);
}

.receipt-value {
    font-weight: 600;
    color: var(--color-secondary-blue);
}

.receipt-footer {
    margin-top: 2rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 1.15rem;
    font-size: 0.85rem;
    text-align: center;
    color: var(--color-text-gray);
    border: 1px solid var(--color-border);
}

/* 17. Tour Package & Detail Page Layout System */
.package-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 41, 93, 0.15);
}

.package-img {
    height: 230px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-secondary-blue);
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .package-img img {
    transform: scale(1.08);
}

.package-price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--color-brand-red);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-brand);
    z-index: 2;
}

.package-whatsapp-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #25D366;
    color: white !important;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.package-whatsapp-badge:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.package-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-brand-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-secondary-blue);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.package-card:hover .package-content h3 {
    color: var(--color-brand-red);
}

.package-details-list {
    list-style: none;
    margin: 1rem 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-details-list li {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.package-details-list li svg {
    color: var(--color-brand-red);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.inclusions-box {
    background-color: rgba(30, 41, 93, 0.03) !important;
    border: 1px dashed var(--color-border) !important;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-gray) !important;
    line-height: 1.45;
}

.inclusions-box strong {
    color: var(--color-secondary-blue) !important;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.package-footer .btn-primary {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.package-rating {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* Tour Detail Specific CSS */
.tour-detail-container {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3rem;
    padding: var(--section-padding);
}

.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tour-info-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.tour-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.tour-title-area h2 {
    font-size: 2.25rem;
    color: var(--color-secondary-blue);
    margin-bottom: 0.5rem;
}

.tour-meta-pills {
    display: flex;
    gap: 0.75rem;
}

.tour-meta-pill {
    background-color: rgba(30, 41, 93, 0.05);
    color: var(--color-primary-blue);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.tour-price-box {
    text-align: right;
}

.tour-price-box .price-label {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    text-transform: uppercase;
    font-weight: 700;
}

.tour-price-box .price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-brand-red);
    font-family: var(--font-heading);
}

/* Day Itinerary Timeline */
.itinerary-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary-blue);
    border-left: 4px solid var(--color-brand-red);
    padding-left: 0.75rem;
}

.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 2px;
    height: 95%;
    background-color: var(--color-border);
}

.itinerary-day {
    position: relative;
    margin-bottom: 2rem;
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.itinerary-node {
    position: absolute;
    left: -2rem;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-brand-red);
    border: 3px solid var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
    z-index: 2;
    transition: var(--transition-fast);
}

.itinerary-day:hover .itinerary-node {
    background-color: var(--color-primary-blue);
    box-shadow: 0 0 0 5px rgba(30, 41, 93, 0.2);
}

.itinerary-content {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.itinerary-day:hover .itinerary-content {
    background-color: var(--color-bg-white);
    border-color: rgba(30, 41, 93, 0.15);
    box-shadow: var(--shadow-md);
}

.itinerary-content h4 {
    font-size: 1.1rem;
    color: var(--color-secondary-blue);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.itinerary-content h4 span {
    color: var(--color-brand-red);
    font-size: 0.85rem;
    font-weight: 700;
}

.itinerary-content p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.55;
}

/* Inclusions & Exclusions columns */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inc-exc-box {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.inc-exc-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--color-secondary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inc-exc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inc-exc-list li {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.inc-exc-list li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.inc-exc-list.inc-list li svg {
    color: var(--color-success);
}

.inc-exc-list.exc-list li svg {
    color: var(--color-brand-red);
}

/* Sidebar Booking Widget */
.tour-sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary-blue);
}

.sidebar-widget p {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.sidebar-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-gray);
}

.sidebar-form-group input,
.sidebar-form-group select {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.sidebar-form-group input:focus,
.sidebar-form-group select:focus {
    border-color: var(--color-primary-blue);
    background-color: var(--color-bg-white);
}

.btn-sidebar-submit {
    background-color: var(--color-brand-red);
    color: white;
    font-weight: 700;
    padding: 0.85rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-brand);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-sidebar-submit:hover {
    background-color: var(--color-brand-red-hover);
    transform: translateY(-2px);
}

.help-widget {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
    color: white;
    border: none;
}

.help-widget h3 {
    color: white;
}

.help-widget p {
    color: #cbd5e1;
}

.help-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.help-phone svg {
    color: var(--color-brand-red);
}

/* LIGHTBOX PREVIEW MODAL */
#lightbox-modal .modal-content {
    background-color: transparent;
    box-shadow: none;
}

/* 17.5. Centralized Sub-Page Banner & General Sub-Page Elements */
.page-banner {
    position: relative;
    background: linear-gradient(rgba(16, 18, 35, 0.8), rgba(16, 18, 35, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 9rem 1.5rem 5rem 1.5rem;
    text-align: center;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.breadcrumbs a {
    color: var(--color-brand-red);
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--color-text-light);
}

/* About Page Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-info .badge {
    margin-bottom: 1rem;
}

.about-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.about-info p {
    margin-bottom: 1.25rem;
}

.values-header {
    margin-top: 5rem;
}

.values-header p {
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

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

.stat-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-red), var(--color-primary-blue));
    opacity: 0;
    transition: var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 41, 93, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-brand-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.value-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.75rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.value-card:hover {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.value-card:hover::after {
    border-color: rgba(30, 41, 93, 0.08);
}

.value-card svg {
    margin-bottom: 1.25rem;
    transition: var(--transition-fast);
}

.value-card:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-secondary-blue);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.55;
}

.driver-panel {
    background: linear-gradient(135deg, var(--color-secondary-blue) 0%, var(--color-panel-bg) 100%);
    color: var(--color-text-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: var(--shadow-lg);
    margin-top: 5rem;
    position: relative;
    border: 1px solid var(--color-panel-border);
}

.driver-img {
    background-image: url('../images/about_1.png');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
}

.driver-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(22, 26, 56, 0) 60%, rgba(22, 26, 56, 0.4) 100%);
}

.driver-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.driver-content h3 {
    color: var(--color-text-light);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.driver-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.driver-content ul {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.driver-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Gallery Page Specific Styles */
.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-brand-red);
    color: var(--color-brand-red);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--color-brand-red);
    color: var(--color-text-light);
    border-color: var(--color-brand-red);
    box-shadow: var(--shadow-brand);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 11, 22, 0.95) 0%, rgba(9, 11, 22, 0.4) 50%, rgba(9, 11, 22, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 41, 93, 0.15);
}

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

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

.gallery-title {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-category {
    color: var(--color-brand-red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

.gallery-grid .gallery-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-grid .gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

/* Packages Page Grid */
.packages-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.packages-header {
    margin-bottom: 3.5rem;
}

.packages-header p {
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

/* Services Detail Grid & Cards */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-detail-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 41, 93, 0.15);
}

.service-detail-img {
    height: 230px;
    overflow: hidden;
    background-color: var(--color-secondary-blue);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

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

.service-detail-content h3 {
    font-size: 1.35rem;
    color: var(--color-primary-blue);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
}

.service-bullet-list li {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-bullet-list li svg {
    color: var(--color-brand-red);
    flex-shrink: 0;
}

.service-detail-content .btn-whatsapp {
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   18. RESPONSIVE DESIGN MEDIA QUERIES (Mobile & Tablet Adjustments)
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding-top: 125px;
        min-height: unset;
        height: auto;
    }

    .hero-stats-container {
        position: relative;
        bottom: 0;
        margin-top: 3.5rem;
        padding: 0;
    }

    .selector-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-selector-submit {
        grid-column: span 2;
        width: 100%;
    }

    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-img-box {
        height: 350px;
    }

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

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

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

    .benefits-section-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

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

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

    /* Sub-pages Tablet Overrides */
    .tour-detail-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .packages-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        padding-top: 98px; /* Account for header heights */
    }

    .header-top-bar {
        display: none; /* Hide top bar on mobile for space */
    }
    
    .header-wrapper.scrolled {
        transform: none;
    }

    header {
        background-color: var(--color-bg-white);
        padding: 0.75rem 1.25rem !important;
        box-shadow: var(--shadow-sm);
    }

    .logo {
        color: var(--color-secondary-blue);
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background-color: var(--color-text-dark);
    }

    /* Mobile Nav Menu Drawer overlay */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        z-index: 999;
        transition: var(--transition-smooth);
        box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: var(--color-text-dark);
        font-size: 1.15rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
    }
    .hero-btn-group .btn-primary,
    .hero-btn-group .btn-outline {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .hero-stat-item {
        border-right: none;
    }

    .selector-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .btn-selector-submit {
        grid-column: span 1;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .service-boxes-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .steps-timeline-container::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    /* Sub-pages Mobile Overrides */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .driver-panel {
        grid-template-columns: 1fr;
    }
    
    .driver-img {
        min-height: 250px;
    }
    
    .driver-content {
        padding: 2rem;
    }
    
    .packages-page-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-info-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .tour-price-box {
        text-align: left;
    }
}

/* Mobile App Bottom Nav Styles */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-blue);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0;
    border-top: 2px solid var(--color-brand-red);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    gap: 0.2rem;
    transition: var(--transition-fast);
}

.mobile-nav-item svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: white;
}

.mobile-nav-item.chat-highlight {
    color: #25D366;
}

.mobile-nav-item.chat-highlight:hover {
    color: #20ba5a;
}

@media screen and (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-top: 88px !important; /* Adjusted to 88px to accommodate responsive mobile top bar */
        padding-bottom: 60px !important; /* Leave space for bottom nav */
    }

    /* Show and style top utility bar on mobile responsively */
    .header-top-bar {
        display: block !important;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.75rem !important;
    }

    .header-top-container {
        flex-direction: column !important;
        gap: 0.25rem !important;
        align-items: center !important;
    }

    .top-bar-left {
        flex-direction: row !important;
        gap: 0.75rem !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .top-bar-right {
        display: none !important; /* Hide to save mobile space */
    }

    .top-bar-item {
        gap: 0.35rem !important;
    }

    /* Fix Booking Form Overlap on Mobile */
    .selector-wrapper {
        margin-top: 0px !important;
        padding: 0 1rem !important;
    }

    header {
        padding: 0.5rem 1rem !important;
    }

    .logo-img {
        height: 36px !important;
    }

    /* Force dark logo visibility on white mobile header */
    .header-wrapper:not(.scrolled) .logo-img {
        filter: none !important;
    }

    /* Reduce Hero Banner Height & padding on mobile */
    .hero {
        padding: 90px 1.25rem 2rem 1.25rem !important;
        min-height: unset !important;
        height: auto !important;
    }

    .hero-content {
        margin-bottom: 0 !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Hero Buttons - Side-by-Side on Mobile */
    .hero-btn-group {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .hero-btn-group .btn-primary,
    .hero-btn-group .btn-outline {
        width: 48% !important;
        max-width: 170px !important;
        padding: 0.65rem 0.5rem !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: var(--border-radius-sm) !important;
    }

    /* Hide hero stats container to fit banner & widget on one screen */
    .hero-stats-container {
        display: none !important;
    }

    /* About sections image first on mobile */
    .about-section-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }

    .about-img-box, .about-img-wrapper {
        height: 260px !important;
        margin-bottom: 0.5rem;
    }

    /* Explore Our Top-Rated Vehicles - 2 columns on mobile */
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .vehicle-card {
        display: flex !important;
        flex-direction: column !important;
    }

    .vehicle-card-content {
        padding: 1rem 0.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .vehicle-card-content h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .vehicle-specs-flex {
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        margin-bottom: 1rem !important;
    }

    .vehicle-spec-item {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.4rem !important;
        gap: 0.2rem !important;
    }

    /* Vertical stacking of CTAs in vehicle cards on mobile to fit nicely */
    .vehicle-card-footer {
        flex-direction: column !important;
        gap: 0.4rem !important;
        margin-top: auto !important;
        align-items: stretch !important;
    }

    .vehicle-card-footer a.btn-whatsapp,
    .vehicle-card-footer button.btn-vehicle-book {
        width: 100% !important;
        padding: 0.5rem 0.25rem !important;
        font-size: 0.75rem !important;
        justify-content: center !important;
        gap: 0.2rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Compact Sub-page Banner */
    .page-banner {
        padding: 4.5rem 1rem 2rem 1rem !important;
        background-attachment: scroll !important;
    }

    .page-banner h1 {
        font-size: 1.85rem !important;
    }
}

/* ==========================================================================
   17.6. Contact Page Layout & Styling (Premium Design)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-info-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-brand-red);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-card svg {
    margin-bottom: 0.25rem;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary-blue);
    font-weight: 800;
    margin: 0;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    margin: 0;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 59, 48, 0.08);
    color: var(--color-brand-red);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 41, 93, 0.05);
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(30, 41, 93, 0.12);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-brand-red);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
}

.contact-form button[type="submit"] {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: var(--shadow-brand);
    cursor: pointer;
}

/* Google Maps Container */
.map-container {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 41, 93, 0.05);
}

/* Desktop and Mobile Responsiveness Overrides for Contact */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-panel {
        padding: 2.2rem 1.5rem;
    }
    
    .contact-form-panel div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-form button[type="submit"] {
        width: 100% !important;
    }
    
    .map-container {
        height: 300px;
    }
}

