/* ===================================
   TopBudgetMove - Moving Company Website
   Flat Rate Long Distance Moving Service
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #1a2b5f;
    --primary-dark: #0f1a3d;
    --secondary-color: #f5734a;
    --secondary-dark: #e55a2f;
    --accent-color: #ff6b35;
    --background-light: #fdf6f0;
    --background-cream: #fff8f3;
    --card-coral: #f07b6e;
    --card-coral-dark: #e06558;
    --text-dark: #1a2b5f;
    --text-light: #666;
    --text-white: #ffffff;
    --input-bg: #ffeaa7;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--secondary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background-cream) 0%, #ffe8d6 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 115, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 43, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-top: 40px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.price-icon {
    background: var(--secondary-color);
    color: white;
}

.truck-icon {
    background: var(--primary-color);
    font-size: 1.5rem;
}

.delivery-icon {
    background: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image-mobile {
    display: none;
}

.hero-image-desktop {
    position: absolute;
    bottom: 60px;
    left: 20px;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-desktop img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===================================
   Form Card
   =================================== */
.form-card {
    background: var(--card-coral);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    display: none;
}

.form-group input {
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 43, 95, 0.3);
}

.form-group input.error {
    border: 2px solid var(--error-color);
    background: #ffeaea;
}

.form-group input.success {
    border: 2px solid var(--success-color);
}

.error-message {
    font-size: 0.8rem;
    color: #fff;
    background: var(--error-color);
    padding: 4px 8px;
    border-radius: 4px;
    display: none;
}

.error-message.visible {
    display: block;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    margin: 8px 0;
}

.price-display .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-display .price-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-card .btn-primary {
    margin-top: 8px;
    background: var(--primary-color);
    font-size: 1.1rem;
    padding: 16px;
}

.form-card .btn-primary:hover {
    background: var(--primary-dark);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
}

/* ===================================
   Trust Badges
   =================================== */
.trust-badges {
    background: var(--primary-color);
    padding: 20px 0;
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background: linear-gradient(135deg, var(--background-cream) 0%, #fff 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.why-number {
    position: absolute;
    top: -15px;
    left: 24px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
}

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 8px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    background: var(--primary-color);
    color: var(--text-white);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: var(--text-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    background: var(--text-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   Coverage Section
   =================================== */
.coverage {
    background: linear-gradient(135deg, var(--background-cream) 0%, #ffe8d6 100%);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.popular-routes h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.routes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.routes-list li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}

.routes-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.coverage-cta {
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.coverage-cta h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.coverage-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--text-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26, 43, 95, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Final CTA
   =================================== */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.final-cta .btn-secondary {
    background: var(--text-white);
    color: var(--secondary-color);
}

.final-cta .btn-secondary:hover {
    background: var(--background-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--text-white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-color);
    color: white;
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===================================
   Loading State
   =================================== */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin: 30px 0;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-features {
        gap: 16px;
    }

    .badges-wrapper {
        gap: 20px;
    }

    .badge-item {
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .services-grid,
    .why-us-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .routes-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .form-card {
        padding: 24px;
    }

    .price-display .price {
        font-size: 1.75rem;
    }

    .service-card,
    .why-item,
    .testimonial-card,
    .coverage-cta {
        padding: 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }
}

/* ===================================
   Accessibility
   =================================== */
@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;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   Page Header (for subpages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.page-header .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.page-header .breadcrumb a {
    color: var(--text-white);
    text-decoration: underline;
}

.page-header .breadcrumb a:hover {
    color: var(--secondary-color);
}

.page-header p:not(.breadcrumb) {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===================================
   Service Hero
   =================================== */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--text-white);
}

.service-hero h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.service-hero .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.service-hero .breadcrumb a {
    color: var(--text-white);
    text-decoration: underline;
}

.service-hero .hero-subtitle {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-hero .hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.service-hero .price-tag {
    font-size: 2.5rem;
    font-weight: 800;
}

.service-hero .price-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Route Hero
   =================================== */
.route-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--text-white);
}

.route-hero h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.route-hero .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.route-hero .breadcrumb a {
    color: var(--text-white);
    text-decoration: underline;
}

.route-hero .hero-subtitle {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.route-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.route-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.route-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.route-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   Content Sections
   =================================== */
.service-content,
.route-content,
.legal-content,
.about-content,
.blog-hub {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.content-section h3 {
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: var(--background-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    width: auto;
    height: auto;
    background: none;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.benefit-item {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0;
}

.process-step .step-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.process-step .step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Included List */
.included-list {
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.included-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Routes Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.routes-grid li {
    padding: 0;
    margin: 0;
}

.routes-grid li::before {
    content: '→';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 8px;
}

.routes-grid a {
    color: var(--primary-color);
    font-weight: 500;
}

.routes-grid a:hover {
    color: var(--secondary-color);
}

/* Routes Detail Cards */
.routes-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.route-detail-card {
    background: var(--background-light);
    padding: 24px;
    border-radius: var(--border-radius);
}

.route-detail-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.route-detail-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* FAQ List in content */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.faq-list .faq-item {
    background: var(--background-light);
    padding: 24px;
    border-radius: var(--border-radius);
}

.faq-list .faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-list .faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--background-cream);
    padding: 48px;
    border-radius: var(--border-radius-lg);
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-phone {
    margin-top: 16px;
    font-size: 1.1rem;
}

.cta-phone a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Related Services/Routes */
.related-services,
.related-routes {
    background: var(--primary-color);
    padding: 60px 0;
}

.related-services h2,
.related-routes h2 {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 32px;
}

.related-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-link-card {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    color: var(--text-white);
    transition: var(--transition);
}

.service-link-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.service-link-card h3 {
    margin-bottom: 8px;
    color: var(--text-white);
}

.service-link-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: var(--text-white);
}

.routes-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.routes-links a {
    color: var(--text-white);
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
}

.routes-links a:hover {
    background: rgba(255,255,255,0.2);
}

/* ===================================
   Legal Pages
   =================================== */
.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-wrapper .last-updated {
    color: var(--text-light);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.legal-wrapper section {
    padding: 0;
    margin-bottom: 32px;
}

.legal-wrapper h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.legal-wrapper h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.contact-list {
    list-style: none;
    margin-left: 0;
}

.contact-list li {
    margin-bottom: 8px;
}

/* ===================================
   Blog Hub
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-card-content {
    padding: 32px;
}

.blog-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.blog-card h2 a {
    color: var(--primary-color);
}

.blog-card h2 a:hover {
    color: var(--secondary-color);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-cta {
    background: var(--background-cream);
    padding: 60px 0;
    text-align: center;
}

.blog-cta h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.blog-cta p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: var(--text-light);
}

/* ===================================
   Blog Article
   =================================== */
.article-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--text-white);
}

.article-header .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.article-header .breadcrumb a {
    color: var(--text-white);
    text-decoration: underline;
}

.article-header h1 {
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto 24px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.article-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.article-content h2 {
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 24px;
}

.article-content h3 {
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-callout {
    background: var(--background-cream);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    margin: 40px 0;
    text-align: center;
}

.article-callout h3 {
    margin-top: 0;
}

.article-callout p {
    margin-bottom: 24px;
}

.article-cta {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 48px;
}

.article-cta h2 {
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 16px;
}

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.related-articles {
    background: var(--background-light);
    padding: 60px 0;
}

.related-articles h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.related-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 8px;
}

.related-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Checklist styling */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.checklist label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.checklist label:hover {
    background: #eee;
}

.checklist input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ===================================
   Contact Page
   =================================== */
.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method .contact-icon {
    font-size: 1.5rem;
}

.contact-method h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.company-credentials {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.company-credentials h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.company-credentials p {
    color: var(--text-light);
}

.contact-form-section .form-card {
    max-width: 100%;
}

.contact-form-section .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-section textarea {
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-dark);
    resize: vertical;
    min-height: 100px;
}

.contact-form-section textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 43, 95, 0.3);
}

/* ===================================
   Routes Hub
   =================================== */
.routes-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.route-hub-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.route-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.route-hub-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.route-hub-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.route-hub-card .route-distance {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.other-routes-list {
    margin-top: 32px;
}

.other-routes-list h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 32px;
}

.other-routes-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.other-routes-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.other-routes-list li::before {
    content: '→';
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ===================================
   Trust Indicators
   =================================== */
.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.trust-item .trust-icon {
    color: var(--success-color);
}

/* Company Info */
.company-info {
    background: var(--background-light);
    padding: 24px;
    border-radius: var(--border-radius);
}

.company-info p {
    margin-bottom: 8px;
}

/* ===================================
   Responsive for New Pages
   =================================== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .route-info {
        gap: 24px;
    }

    .route-stat .stat-value {
        font-size: 1.5rem;
    }

    .legal-wrapper {
        padding: 24px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .article-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .service-hero,
    .route-hero,
    .page-header,
    .article-header {
        padding: 120px 0 40px;
    }

    .service-hero .hero-price,
    .route-info {
        flex-direction: column;
        gap: 16px;
    }

    .cta-section {
        padding: 32px 24px;
    }

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

    .blog-card.featured {
        grid-column: 1;
    }
}
