/* ========================================
   TFNAF - Global Styles & Reset
   ======================================== */

/* ========================================
   POPPINS FONT FACE
   ======================================== */

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Brand */
    --primary-blue: #FF9E01;
    --primary-dark: #34484F;
    --primary-light: #ffb84d;

    /* Accent Colors - Premium & Conversion */
    --accent-gold: #FF9E01;
    --accent-green: #10b981;

    /* Neutral Colors */
    --white: #FEFFFE;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--gray-800);
    padding: 8px 0;
}

.nav-desktop a:hover {
    color: var(--primary-blue);
}

.dropdown {
    position: static;
}

.header-content {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-blue);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: var(--gray-50);
    color: var(--primary-blue);
    padding-left: 22px;
}

.services-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    right: 0;
    width: auto;
    padding: 12px;
    gap: 4px;
}

.services-menu li {
    padding: 0;
}

.services-menu a {
    border-radius: 6px;
    padding: 10px 14px;
    text-align: center;
}

.services-menu a:hover {
    padding-left: 14px;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--accent-green);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.btn-call:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.phone-icon {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    display: block;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: var(--white);
    border-top: 1px solid transparent;
    transition: max-height 0.35s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-mobile a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-800);
    font-weight: 500;
}

.nav-mobile a:hover {
    background-color: var(--gray-50);
    color: var(--primary-blue);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero > .container {
    width: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background-color: var(--gray-50);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.usp-section,
.services-section,
.locations-section,
.testimonials-section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 50px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   USP SECTION
   ======================================== */

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.usp-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.usp-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.usp-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.usp-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.location-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    color: var(--white);
    padding: 30px 25px;
}

.location-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.location-cta {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 15px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--gray-300);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-blue);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-gold);
}

/* ========================================
   STICKY BOTTOM CTA (Mobile)
   ======================================== */

.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    display: none;
    gap: 10px;
    z-index: 999;
}

.sticky-btn-call,
.sticky-btn-book {
    flex: 1;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
}

.sticky-btn-call {
    background-color: var(--accent-green);
    color: var(--white);
}

.sticky-btn-book {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav-mobile.active {
        max-height: 500px;
        opacity: 1;
        border-top-color: var(--gray-200);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        min-height: unset;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .trust-number {
        font-size: 36px;
    }
    
    .usp-section,
    .services-section,
    .locations-section,
    .testimonials-section {
        padding: var(--section-padding-mobile);
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid,
    .locations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content > p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sticky-bottom-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .usp-icon {
        font-size: 48px;
    }
    
    .usp-card h3 {
        font-size: 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ========================================
   PAGE HERO (all inner pages)
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.page-hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   CONTENT SECTIONS & TWO-COL LAYOUT
   ======================================== */

/* Body content links - visible and clickable */
.content-section p a,
.content-section li a:not(.btn-primary):not(.btn-secondary),
.testimonials-section p a,
.usp-detail-card a,
.value-card a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: rgba(255, 158, 1, 0.4);
    text-underline-offset: 2px;
    font-weight: 600;
    transition: var(--transition);
}

.content-section p a:hover,
.content-section li a:not(.btn-primary):not(.btn-secondary):hover,
.testimonials-section p a:hover,
.usp-detail-card a:hover,
.value-card a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

.content-section {
    padding: 80px 0;
}

.content-section.bg-gray {
    background-color: var(--gray-50);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.two-col h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.two-col p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-text {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ========================================
   FEATURES LIST (service & location pages)
   ======================================== */

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--accent-green);
    font-size: 20px;
    flex-shrink: 0;
    font-weight: 700;
}

/* ========================================
   STEPS GRID (service pages)
   ======================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   ROUTES GRID & ROUTE CARDS
   ======================================== */

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.route-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
}

.route-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.route-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   PRICING BOX
   ======================================== */

.pricing-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-box p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ========================================
   RELATED SERVICES GRID
   ======================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.related-card .related-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.related-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.related-card a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   LOCATION PAGES — ROUTE INFO BAR
   ======================================== */

.route-info-bar {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.route-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.route-stat span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   LOCATION PAGES — INFO CARDS
   ======================================== */

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   LOCATION PAGES — AIRPORTS GRID (London)
   ======================================== */

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.airport-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-blue);
}

.airport-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.airport-card .airport-code {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.airport-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   LOCATION PAGES — PICKUP LIST
   ======================================== */

.pickup-list {
    list-style: none;
    padding: 0;
}

.pickup-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
}

.pickup-list li:last-child {
    border-bottom: none;
}

.pickup-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   LOCATION PAGES — NEARBY LOCATIONS
   ======================================== */

.locations-nearby {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.nearby-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.nearby-card .nearby-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nearby-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.nearby-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.nearby-card a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.usp-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.usp-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.usp-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.usp-detail-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.usp-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.usp-detail-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-info p {
    font-size: 14px;
    color: var(--gray-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-bar {
    background: #34484F;
    color: var(--white);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 45px;
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-info-body p,
.contact-info-body a {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-info-body a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-info-body a:hover {
    color: var(--primary-dark);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.required {
    color: #ef4444;
}

/* ========================================
   INNER PAGES — RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col h2 {
        font-size: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .route-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 45px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .content-section {
        padding: 50px 0;
    }

    .pricing-box {
        padding: 35px 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 40px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .route-info-bar {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 45px 0 35px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .content-section {
        padding: 40px 0;
    }

    .route-info-bar {
        grid-template-columns: 1fr 1fr;
    }

    .location-card {
        height: 250px;
    }
}

/* ========================================
   SHARED UTILITY — pickup area note
   ======================================== */

.pickup-area-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-600);
}

.pickup-area-note a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 158, 1, 0.4);
    text-underline-offset: 2px;
}

.pickup-area-note a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

/* ========================================
   FORM SUCCESS MESSAGE
   ======================================== */

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 16px;
    color: var(--gray-600);
}

.form-response-note {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 12px;
    text-align: center;
}

.contact-avail-note {
    margin-top: 5px;
    font-size: 13px;
    color: var(--gray-600);
}

.contact-email-label {
    margin-top: 8px;
    color: var(--gray-600);
    font-size: 15px;
}

.contact-info-note {
    margin-top: 5px;
    font-size: 13px;
    color: var(--gray-600);
}

.contact-book-inline {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.contact-book-inline:hover {
    background: var(--primary-dark);
    color: white;
}

.map-embed-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed-wrapper iframe {
    border: 0;
    display: block;
}

.faq-answer a {
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--primary-dark);
}

/* ========================================
   BOOKING PAGE
   ======================================== */

.booking-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.booking-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.booking-container {
    max-width: 900px;
    margin: -40px auto 80px;
    padding: 0 20px;
}

.booking-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 50px;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title ~ .form-section-title {
    margin-top: 40px;
}

.section-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.booking-card .form-control {
    padding: 14px 18px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.form-note {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 5px;
}

.submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
    text-align: center;
}

.submit-section .submit-btn {
    padding: 18px 60px;
    font-size: 18px;
    max-width: 400px;
}

.submit-section .form-note {
    margin-top: 15px;
}

.or-divider {
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--gray-300);
}

.or-divider span {
    background-color: var(--white);
    padding: 0 20px;
    position: relative;
    color: var(--gray-600);
    font-weight: 600;
}

.call-option {
    text-align: center;
    padding: 30px;
    background-color: var(--gray-50);
    border-radius: 8px;
}

.call-option h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.call-option p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: var(--accent-green);
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
}

.call-btn:hover {
    background-color: #059669;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .booking-card {
        padding: 30px 20px;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-hero h1 {
        font-size: 32px;
    }
}
/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 84px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 145px !important;
    }
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px 18px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

/* ========================================
   Pricing CTA Buttons (replaces inline styles)
   ======================================== */

.pricing-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero inline link (inherits hero text color) */
.page-hero .hero-inline-link {
    color: inherit;
    text-decoration: underline;
}

/* ========================================
   Fleet Section (Booking Page)
   ======================================== */

.fleet-grid {
    display: grid;
    gap: 36px;
    margin-top: 40px;
}

.fleet-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.fleet-category-header.hackney {
    border-bottom-color: #059669;
}

.fleet-category-icon {
    font-size: 24px;
}

.fleet-category-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
}

.fleet-category-title.hackney {
    color: #059669;
}

.fleet-category-subtitle {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.fleet-vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vehicle-tag {
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.vehicle-tag.executive {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.vehicle-tag.hackney {
    background: #ecfdf5;
    border-color: #059669;
    color: #065f46;
}

.fleet-category-description {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 14px;
}

/* ========================================
   Fleet Cards (Homepage)
   ======================================== */

.fleet-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 20px;
}

.fleet-card-featured {
    border: 2px solid #1e3a8a;
}

.fleet-card-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.fleet-card-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
}

.fleet-card-subtitle {
    margin: 0 0 12px;
    font-size: 12px;
    color: #6b7280;
}

.fleet-card-body {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.7;
}

/* Homepage fleet grid — override default fleet-grid for card layout */
.content-section .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

/* Hero inline links (homepage hero) */
.hero .hero-inline-link {
    color: inherit;
    text-decoration: underline;
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--gray-600);
}

.policy-content h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.policy-content h3 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    margin-bottom: 1rem;
    font-size: 15px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content ul {
    list-style: disc;
}

.policy-content ol {
    list-style: decimal;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-size: 15px;
    line-height: 1.7;
}

.policy-updated {
    font-size: 14px;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.policy-intro {
    background-color: var(--gray-50);
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 2rem;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-short {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3d5a63 100%);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-summary {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    margin: 2rem 0;
}

.policy-summary h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.policy-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1.25rem;
}

.policy-summary-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px;
}

.policy-summary-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-size: 14px;
}

.policy-summary-item p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
    color: var(--gray-600);
}

.policy-toc {
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 30px;
    margin: 2rem 0;
}

.policy-toc h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
    color: var(--primary-dark);
}

.policy-toc ol {
    padding-left: 1.25rem;
}

.policy-toc a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.policy-toc a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.policy-section {
    padding-top: 1rem;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.5rem;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-data-list {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 16px 16px 16px 36px;
}

.policy-back-top {
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.policy-back-top a {
    font-size: 13px;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-back-top a:hover {
    color: var(--primary-blue);
}

.policy-contact-cta {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.policy-content address {
    font-style: normal;
    background-color: var(--gray-50);
    border-left: 4px solid var(--primary-blue);
    padding: 20px 24px;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 0 10px;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }

    .policy-summary,
    .policy-toc,
    .policy-intro {
        padding: 20px;
    }

    .policy-summary-grid {
        grid-template-columns: 1fr;
    }

    .policy-contact-cta {
        flex-direction: column;
    }

    .policy-contact-cta a {
        text-align: center;
    }
}
