/* ============================================
   Mayflower Cars Plymouth - Main Stylesheet
   Mobile-First Responsive Design
   ============================================ */

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #111111;
    --primary-dark: #000000;
    --primary-light: #333333;
    --accent: #d4a84b;
    --accent-light: #f5e6c8;
    --accent-dark: #b8922f;

    /* Neutral Colors */
    --text: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --background-dark: #111111;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Feedback Colors */
    --success: #22c55e;
    --success-light: #dcfce7;
    --error: #ef4444;
    --error-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes (Mobile-first) */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

.lead {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--background);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--background);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--background);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text);
    border: 2px solid var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--background);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--background);
    border: 2px solid var(--background);
}

.btn-outline-light:hover {
    background-color: var(--background);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background);
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-xl);
    color: var(--primary);
    line-height: 1.1;
}

.logo-subtext {
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: 600;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.nav.active {
    transform: translateX(0);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-link {
    display: block;
    padding: var(--space-md);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--background-alt);
    color: var(--primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/smeaton1.avif');
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    opacity: 0.8;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--background);
}

.hero-title {
    font-size: var(--text-3xl);
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--background);
}

.hero-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
}

/* ============================================
   Award Banner
   ============================================ */
.award-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: var(--space-lg) 0;
    color: var(--primary);
}

.award-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    text-align: left;
}

.award-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.award-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.award-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.award-subtitle {
    font-size: var(--text-sm);
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .award-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .award-title {
        font-size: var(--text-base);
    }
}

/* ============================================
   Page Hero (Interior Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
    color: var(--background);
}

.page-hero-compact {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

.page-title {
    font-size: var(--text-3xl);
    font-weight: 900;
    margin-bottom: var(--space-sm);
    color: var(--background);
}

.page-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.section-title {
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

/* ============================================
   Services Overview
   ============================================ */
.services-grid {
    display: grid;
    gap: var(--space-lg);
}

.service-card {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--accent-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.service-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.service-card-text {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-section {
    background: var(--background-alt);
    padding: var(--space-xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.trust-icon {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
}

.trust-text {
    font-weight: 600;
    color: var(--primary);
    font-size: var(--text-sm);
}

/* ============================================
   Routes Section
   ============================================ */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.route-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.route-destination {
    font-weight: 600;
    font-size: var(--text-sm);
}

.route-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

.routes-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-card.active {
    display: block;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

.testimonial-text {
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--border);
    transition: background var(--transition-fast);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--primary);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: var(--text-xl);
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-light);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   Contact Strip
   ============================================ */
.contact-strip {
    background: var(--primary);
    padding: var(--space-xl) 0;
}

.contact-strip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.contact-strip-text h3 {
    color: var(--background);
    font-size: var(--text-xl);
}

.contact-strip-text p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-strip-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    max-width: 300px;
}

/* ============================================
   Service Detail Pages
   ============================================ */
.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.service-detail-text h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-list .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--success);
}

.airports-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.airport-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.airport-item ul {
    color: var(--text-light);
}

.airport-item li {
    padding: var(--space-xs) 0;
}

.routes-list {
    columns: 1;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.routes-list li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
}

.use-cases-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.use-case h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.use-case p {
    color: var(--text-light);
}

.image-placeholder {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
    border: 2px dashed var(--border);
}

.image-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    margin-bottom: var(--space-md);
}

.image-placeholder span {
    font-weight: 600;
    color: var(--primary);
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Coverage Section
   ============================================ */
.coverage-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.coverage-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.coverage-column h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.coverage-column ul li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
}

.coverage-note {
    color: var(--text-light);
    font-style: italic;
}

.map-placeholder {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
    border: 2px dashed var(--border);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    margin-bottom: var(--space-md);
}

.map-placeholder span {
    font-weight: 600;
    color: var(--primary);
}

.map-placeholder p {
    color: var(--text-light);
    margin-top: var(--space-sm);
}

.map-note {
    font-size: var(--text-sm);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-2xl) 0;
    text-align: center;
    color: var(--background);
}

.cta-section h2 {
    color: var(--background);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   Pricing Tables
   ============================================ */
.pricing-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-intro-content h2 {
    margin-bottom: var(--space-md);
}

.pricing-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    text-align: left;
    max-width: 500px;
    margin: var(--space-lg) auto 0;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-includes .icon {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin: 0 calc(-1 * var(--space-md));
    padding: 0 var(--space-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 500px;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--primary);
    color: var(--background);
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table td.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: var(--text-lg);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--accent-light);
    cursor: pointer;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--space-lg);
}

.pricing-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Vehicle Options
   ============================================ */
.vehicles-grid {
    display: grid;
    gap: var(--space-lg);
}

.vehicle-card {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--background-alt);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.vehicle-card h3 {
    margin-bottom: var(--space-xs);
}

.vehicle-capacity {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.vehicle-features {
    text-align: left;
    margin-bottom: var(--space-md);
}

.vehicle-features li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
    padding-left: var(--space-lg);
    position: relative;
}

.vehicle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.vehicle-price {
    font-weight: 600;
    color: var(--primary);
}

.vehicle-description {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Single Vehicle Display */
.fleet-single {
    display: flex;
    justify-content: center;
}

.vehicle-card-featured {
    max-width: 500px;
    border: 2px solid var(--accent);
}

/* Vehicle Info Box (Booking Form) */
.vehicle-info-box {
    padding: var(--space-md) var(--space-lg);
    background: var(--accent-light);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
}

.vehicle-info-box .vehicle-name {
    display: block;
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.vehicle-info-box .vehicle-desc {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ============================================
   Additional Charges
   ============================================ */
.charges-grid {
    display: grid;
    gap: var(--space-lg);
}

.charge-item {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.charge-item h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.charge-item p {
    color: var(--text-light);
    font-size: var(--text-sm);
}

/* ============================================
   Booking Form
   ============================================ */
.booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.booking-form-container {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Progress Steps */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--primary);
    color: var(--background);
}

.step-label {
    font-size: var(--text-sm);
    color: var(--text-light);
    display: none;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-title {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.form-subsection-title {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-size: var(--text-lg);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
    background: var(--background);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-hint {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Vehicle Options Radio */
.vehicle-options {
    display: grid;
    gap: var(--space-md);
}

.vehicle-option {
    cursor: pointer;
}

.vehicle-option input {
    display: none;
}

.vehicle-option-content {
    display: block;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.vehicle-option input:checked + .vehicle-option-content {
    border-color: var(--primary);
    background: var(--accent-light);
}

.vehicle-name {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.vehicle-desc {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* Price Estimate */
.price-estimate {
    margin-top: var(--space-lg);
}

.price-estimate-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--accent-light);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
}

.price-label {
    font-weight: 600;
    color: var(--text);
}

.price-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent-dark);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--accent-dark);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--primary);
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.form-buttons .btn {
    flex: 1;
}

.btn-back {
    background: var(--background-alt);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-back:hover {
    background: var(--border);
}

/* Flight/Return Details */
.flight-details,
.return-details {
    background: var(--background-alt);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

/* Booking Summary */
.booking-summary {
    background: var(--background-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.summary-title {
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-light);
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    border-top: 2px solid var(--primary);
}

.summary-total .summary-value {
    font-size: var(--text-xl);
    color: var(--primary);
}

/* Payment Options */
.payment-title {
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.payment-method {
    margin-bottom: var(--space-md);
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: block;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.payment-option input:checked + .payment-option-content {
    border-color: var(--primary);
    background: var(--accent-light);
}

.payment-name {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.payment-desc {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.card-icon {
    padding: var(--space-xs) var(--space-sm);
    background: var(--background);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-light);
}

.square-payment {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--background-alt);
    border-radius: var(--radius-md);
}

.payment-note {
    color: var(--text-light);
    text-align: center;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-benefits .icon {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-md) 0;
}

.sidebar-phone .icon {
    width: 24px;
    height: 24px;
}

.sidebar-hours {
    color: var(--text-light);
    font-size: var(--text-sm);
}

.trust-card {
    text-align: center;
}

.trust-badges-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.trust-badges-small .badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   Modal
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: var(--background);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: var(--success-light);
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--success);
}

.modal-title {
    margin-bottom: var(--space-md);
}

.modal-text {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.modal-details {
    background: var(--background-alt);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

/* ============================================
   About Page
   ============================================ */
.about-story-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about-story-text p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.about-story-text p.lead {
    color: var(--text);
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--accent-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-light);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    gap: var(--space-lg);
}

.fleet-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fleet-image .image-placeholder {
    min-height: 200px;
    border-radius: 0;
    border: none;
}

.fleet-card h3 {
    padding: var(--space-lg) var(--space-lg) var(--space-sm);
}

.fleet-card p {
    padding: 0 var(--space-lg);
    color: var(--text-light);
}

.fleet-specs {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.fleet-specs li {
    font-size: var(--text-sm);
    color: var(--text-light);
    padding-left: var(--space-md);
    position: relative;
}

.fleet-specs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.fleet-note {
    text-align: center;
    color: var(--text-light);
    margin-top: var(--space-xl);
    font-style: italic;
}

/* Single Fleet Card Display */
.fleet-single {
    display: flex;
    justify-content: center;
}

.fleet-card-featured {
    max-width: 500px;
    border: 2px solid var(--accent);
    text-align: center;
}

.fleet-card-featured p {
    padding: 0 var(--space-lg) var(--space-md);
}

/* Credentials */
.credentials-grid {
    display: grid;
    gap: var(--space-lg);
}

.credential-card {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.credential-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--background);
}

.credential-card h3 {
    margin-bottom: var(--space-sm);
}

.credential-card p {
    color: var(--text-light);
}

/* ============================================
   Terms & Policy Page
   ============================================ */
.terms-section {
    padding-bottom: var(--space-3xl);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-block {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.terms-block:last-child {
    margin-bottom: 0;
}

.terms-block h2 {
    color: var(--primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent);
}

.terms-block h3 {
    color: var(--text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.terms-block h3:first-of-type {
    margin-top: 0;
}

.terms-block p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.terms-block ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.terms-block ul li {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.terms-block a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.terms-block a:hover {
    color: var(--primary);
}

.terms-updated {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-lg);
    margin-bottom: 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-method-details h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
}

.contact-value.phone {
    font-size: var(--text-xl);
}

.contact-note {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-top: var(--space-xs);
}

.contact-cta {
    background: var(--background-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.contact-cta h3 {
    margin-bottom: var(--space-xs);
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

/* Contact Form */
.contact-form-container {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    margin-bottom: var(--space-sm);
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--success-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--success);
}

.form-success h3 {
    margin-bottom: var(--space-md);
}

.form-success p {
    color: var(--text-light);
}

/* Map Section */
.map-section {
    padding: var(--space-2xl) 0;
    background: var(--background-alt);
}

.map-container {
    margin-top: var(--space-lg);
}

.map-container .map-placeholder {
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--background);
    padding: var(--space-2xl) 0 calc(var(--space-2xl) + 80px);
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
}

.footer-title {
    color: var(--background);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

/* ============================================
   Sticky CTA (Mobile)
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: var(--background);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   Icons
   ============================================ */
.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    :root {
        --text-3xl: 2.25rem;
        --text-4xl: 3rem;
        --text-5xl: 3.75rem;
    }

    .container {
        padding: 0 var(--space-xl);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    /* Navigation */
    .nav-toggle {
        display: none;
    }

    .nav {
        position: static;
        transform: none;
        padding: 0;
        background: none;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-xs);
    }

    .nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-base);
    }

    /* Hero */
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-cta {
        flex-direction: row;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Trust Grid */
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Routes Grid */
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Form Row */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Booking Progress */
    .step-label {
        display: block;
    }

    /* Vehicle Options */
    .vehicle-options {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Strip */
    .contact-strip-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contact-strip-actions {
        flex-direction: row;
        width: auto;
        max-width: none;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
        max-width: none;
    }

    /* Service Detail */
    .service-detail-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-detail-content.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-text {
        flex: 1;
    }

    .service-detail-image {
        flex: 0 0 40%;
    }

    /* Airports Grid */
    .airports-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Routes List */
    .routes-list {
        columns: 2;
    }

    /* Use Cases Grid */
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Coverage */
    .coverage-content {
        flex-direction: row;
    }

    .coverage-text {
        flex: 1;
    }

    .coverage-map {
        flex: 1;
    }

    /* Pricing Includes */
    .pricing-includes {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Vehicles Grid */
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Charges Grid */
    .charges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Booking */
    .booking-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .booking-form-container {
        flex: 1;
    }

    .booking-sidebar {
        flex: 0 0 300px;
    }

    /* About */
    .about-story-content {
        flex-direction: row;
    }

    .about-story-text {
        flex: 1;
    }

    .about-story-image {
        flex: 0 0 40%;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fleet Grid */
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Credentials Grid */
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Contact Grid */
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form-container {
        flex: 1;
    }

    /* Footer */
    .footer {
        padding-bottom: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sticky CTA - hide on tablet+ */
    .sticky-cta {
        display: none;
    }

    /* WhatsApp button - move down when sticky CTA is hidden */
    .whatsapp-float {
        bottom: 20px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    :root {
        --text-4xl: 3.5rem;
        --text-5xl: 4rem;
    }

    /* Hero */
    .hero-title {
        font-size: var(--text-5xl);
    }

    .page-title {
        font-size: var(--text-4xl);
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    /* Charges Grid */
    .charges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .sticky-cta,
    .nav,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .hero,
    .page-hero,
    .cta-section {
        background: none !important;
        color: #000 !important;
    }

    .section {
        padding: 1rem 0;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   High Contrast Mode
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --primary: #000080;
        --accent: #996600;
        --text: #000000;
        --text-light: #333333;
        --border: #000000;
    }

    .btn {
        border-width: 3px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        border-width: 3px;
    }
}
