* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

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

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ld-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/long-distance-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ld-hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.ld-hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ld-hero p {
    font-size: 1.5rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #dbeafe;
}

.btn-secondary {
    text-decoration: none;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon.orange {
    background: #f97316;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-feature-card p {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

/* Services Section */
.ld-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    transition: transform 0.3s ease;
    background: #e3f2fd;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: #1976d2;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.service-features li i {
    color: #28a745;
    margin-right: 8px;
    font-size: 12px;
}

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

.btn-cta {
    background: #f97316;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ea580c;
}




/* Process Section */
.ld-process {
    padding: 80px 0;
    background: #f9fafb;
    position: relative;
}

.ld-process .container {
    position: relative;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #bfdbfe, #bbf7d0, #e9d5ff, #fed7aa, #99f6e4);
    transform: translateY(-50%);
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.process-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.process-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.process-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.process-icon.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.process-icon i {
    font-size: 1.5rem;
    color: white;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 3;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.process-step p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.process-cta {
    margin-top: 64px;
}

.cta-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.process-cta {
    text-align: center;
    margin-top: 64px;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.cta-box p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Benefits Section */
.ld-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.showcase-feature {
    display: flex;
    gap: 16px;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    color: white;
    font-size: 1rem;
}

.showcase-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.showcase-feature p {
    color: #6b7280;
    font-size: 0.875rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}


/* Companies Section */
.ld-companies {
    padding: 80px 0;
    background: #f9fafb;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.company-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.company-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.company-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.company-rating span {
    font-weight: 700;
    color: #111827;
}

.company-content {
    padding: 24px;
}

.company-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.company-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.company-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.company-stars span {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 8px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.info-item i {
    color: #3b82f6;
}

.info-item .price {
    font-weight: 600;
    color: #111827;
}

.company-specialties {
    margin-bottom: 24px;
}

.company-specialties h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tags span {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.company-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-btn:hover {
    background: #2563eb;
}

.companies-cta {
    margin-top: 32px;
}

/* Form-related styles are now in common/form.css */

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefits-showcase {
        grid-template-columns: 1fr;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ld-hero h1 {
        font-size: 2.5rem;
    }

    .ld-hero p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

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

    .process-line {
        display: none;
    }

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

@media (max-width: 480px) {
    .ld-hero h1 {
        font-size: 2rem;
    }

    .ld-hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
    }

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