/* ==========================================================================
   Gowri Shankar Car Travels - Premium Design System & Stylesheet
   Location: Kakinada, Andhra Pradesh
   SEO & Luxury Travel Responsive Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-dark: #0b132b;
    --primary-navy: #1c2541;
    --primary-blue: #1d4ed8;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --accent-amber: #fbbf24;
    --accent-emerald: #10b981;

    /* Neutrals */
    --bg-dark: #070c1b;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-glass: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', var(--font-main);

    /* Layout & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Global Resets & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

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

ul {
    list-style: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    width: 0%;
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   3. Custom Utilities & Glassmorphism
   -------------------------------------------------------------------------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    border-radius: var(--radius-md);
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-tagline {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: #ffffff;
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #ffffff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. Top Contact Bar & Header Navigation
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-info a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-info a:hover {
    color: var(--accent-gold);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-social a {
    color: var(--text-light);
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Navbar */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

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

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.brand-title span {
    color: var(--accent-gold);
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.phone-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.phone-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.phone-text strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    color: #ffffff;
    z-index: 10002;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: none;
}

.mobile-drawer-overlay.active {
    display: block;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
    padding-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   5. Hero Section & Booking Widget
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 88vh;
    background: linear-gradient(135deg, rgba(7, 12, 27, 0.9), rgba(15, 23, 42, 0.85)),
        url('../img/slider-01.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    color: #ffffff;
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }
}

.hero-content h1 span {
    color: var(--accent-gold);
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

@media (min-width: 576px) {
    .hero-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-badge-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.hero-badge-card h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-badge-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Quick Fare Booking Card */
.booking-card {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.booking-card-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.form-control option {
    background: var(--primary-dark);
    color: #ffffff;
}

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

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
}

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

.about-experience-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    font-weight: 800;
}

.about-experience-badge h3 {
    font-size: 2.25rem;
    line-height: 1;
    color: var(--primary-dark);
}

.about-experience-badge p {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.about-feature-item i {
    color: var(--accent-emerald);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   7. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-navy));
    color: #ffffff;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 576px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem auto;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.why-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-header {
    padding: 1.75rem 1.75rem 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.service-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(29, 78, 216, 0.15));
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.service-body {
    padding: 0 1.75rem 1.5rem 1.75rem;
    flex-grow: 1;
}

.service-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-footer {
    padding: 1rem 1.75rem 1.5rem 1.75rem;
    border-top: 1px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-link:hover {
    color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   9. Vehicle Fleet Showcase Section
   -------------------------------------------------------------------------- */
.fleet-section {
    padding: 5rem 0;
    background: #ffffff;
}

.fleet-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 3rem 0;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

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

@media (min-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fleet-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.fleet-img-container {
    height: auto;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem;
    position: relative;
}

.fleet-img-container img {
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.fleet-card:hover .fleet-img-container img {
    transform: scale(1.06);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-dark);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.fleet-details {
    padding: 1.5rem;
}

.fleet-details h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0 1.5rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--accent-gold);
}

.fleet-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   10. Airport Transfers Section
   -------------------------------------------------------------------------- */
.airport-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
}

.airport-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .airport-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.airport-cards-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .airport-cards-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.airport-item-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.airport-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.airport-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.airport-item-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.airport-item-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   11. Tour Packages (Temple & Holiday)
   -------------------------------------------------------------------------- */
.packages-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

@media (min-width: 768px) {
    .package-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .package-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.package-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.package-meta {
    list-style: none;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.package-meta li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-meta li i {
    color: var(--primary-blue);
}

.package-actions {
    display: flex;
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   12. Step-by-Step Booking Timeline
   -------------------------------------------------------------------------- */
.process-section {
    padding: 5rem 0;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step-card {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.process-step-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 4px 12px rgba(11, 19, 43, 0.3);
}

.process-step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   13. Live Counter Statistics Section
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: #ffffff;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. Testimonials & Customer Reviews Section
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-rating {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   15. Photo Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 12, 27, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

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

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

.gallery-overlay-text h5 {
    color: #ffffff;
    font-size: 1.05rem;
}

.gallery-overlay-text span {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   16. SEO FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-wrapper {
    max-width: 840px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    background: #ffffff;
    user-select: none;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

/* --------------------------------------------------------------------------
   17. Contact & Google Map Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-card-text p,
.contact-card-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 320px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   18. SEO Keyword-Rich Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    border-top: 4px solid var(--accent-gold);
}

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

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    }
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 0.3rem;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Responsive Media Queries */
@media (max-width: 991px) {

    .top-bar,
    .header-top {
        display: none !important;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ==========================================================================
   Call To Action (CTA) Banner & Mobile Bottom Sticky Bar
   ========================================================================== */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    position: relative;
    padding: 4.5rem 0;
    color: #ffffff;
    overflow: hidden;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-size: 2.3rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-banner-title span {
    color: var(--accent-gold);
}

.cta-banner-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-phone {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}

.btn-cta-phone:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.6);
}

.btn-cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-cta-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.btn-cta-book {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--primary-dark);
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
}

.btn-cta-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
    color: var(--primary-dark);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(29, 78, 216, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 78, 216, 0);
    }
}

/* Mobile Sticky Bottom Call & WhatsApp Dual CTA Bar */
.mobile-bottom-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #0b132b;
    border-top: 2px solid var(--accent-gold);
    display: none;
    z-index: 9999;
    padding: 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    color: #ffffff;
}

.mobile-cta-call {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.mobile-cta-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

@media (max-width: 768px) {
    .mobile-bottom-cta-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .floating-whatsapp {
        bottom: 5rem;
    }

    .back-to-top {
        bottom: 5rem;
    }
}

/* ==========================================================================
   Custom "Call Now" Pill Button Style (Matches Provided Design Image)
   ========================================================================== */
.btn-call-now-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffefe5;
    color: #e65100;
    border: 1.5px solid #ff9d6c;
    border-radius: 14px;
    padding: 0.55rem 1.4rem;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(230, 81, 0, 0.06);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-call-now-pill i {
    color: #e65100;
    font-size: 1.1rem;
}

.btn-call-now-pill:hover {
    background: #ffe3d1;
    color: #d84315;
    border-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.15);
}

/* ==========================================================================
   Stacked Floating Action Buttons (WhatsApp Green + Call Orange Circles)
   Desktop & Mobile Layout (Matches Provided Reference Image)
   ========================================================================== */
.floating-quick-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
    z-index: 9998;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* WhatsApp Green Floating Circle */
.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.float-whatsapp:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
}

/* Call Orange Floating Circle */
.float-call {
    background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.float-call:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.7);
    color: #ffffff;
}




/* --------------------------------------------------------------------------
   Subpage Inner Header Banner & Breadcrumbs
   -------------------------------------------------------------------------- */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 60%, #0c1838 100%);
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 1px solid var(--border-glass);
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.breadcrumb-nav a {
    color: #cbd5e1;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent-gold);
}

.breadcrumb-nav i {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.breadcrumb-nav .active-page {
    color: var(--accent-gold);
    font-weight: 600;
}

.subpage-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subpage-hero-title span {
    background: linear-gradient(135deg, #fce055 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage-hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
    .page-header-banner {
        padding: 3.5rem 0 2.5rem;
    }
}