/* =========================
   SERVICE LANDINGS - VARIABLES
   ========================= */

:root {
    --service-primary: #fc3a00;
    --service-secondary: #fc3a00;
    --service-success: #10b981;
    --service-dark: #1a1a2e;
    --service-light: #f8f9fa;
}

/* =========================
   SERVICE LANDING CONTAINER
   ========================= */

.service-landing {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* =========================
   SERVICE HERO
   ========================= */

.service-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    overflow: hidden;
    margin-bottom: 100px;
}

.service-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #fc3a00 0%,
        #d93200 50%,
        #a12800 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    background: white;
    color: var(--service-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* =========================
   SERVICE INTRO
   ========================= */

.service-intro {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--service-primary);
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: var(--service-dark);
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--service-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(252, 58, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--service-primary), #d93200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--service-dark);
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* =========================
   SERVICE PROCESS TIMELINE
   ========================= */

.service-process {
    padding: 100px 24px;
    background: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 80px 0;
    color: var(--service-dark);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--service-primary), var(--service-secondary));
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--service-primary), #d93200);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(252, 58, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 4px solid white;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--service-dark);
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* =========================
   POPULAR PARTS GRID
   ========================= */

.service-popular-parts {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.service-popular-parts h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 60px 0;
    color: var(--service-dark);
}

.parts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.part-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.part-card:hover {
    border-color: var(--service-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(252, 58, 0, 0.15);
}

.part-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--service-dark);
}

/* =========================
   SERVICE FINDER
   ========================= */

.service-finder {
    padding: 100px 24px;
    background: white;
}

.finder-header {
    text-align: center;
    margin-bottom: 60px;
}

.finder-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: var(--service-dark);
}

.finder-header p {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
}

.finder-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.finder-card {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.finder-card:hover {
    border-color: var(--service-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(252, 58, 0, 0.2);
}

.finder-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.finder-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--service-dark);
}

.finder-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.finder-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--service-primary);
    transition: transform 0.3s ease;
}

.finder-card:hover .finder-arrow {
    transform: translateX(6px);
}

.finder-select-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.finder-select-wrapper label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--service-dark);
    margin-bottom: 16px;
}

.finder-select-wrapper select,
#service-province-select {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--service-dark);
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 56px;
    transition: all 0.3s ease;
}

.finder-select-wrapper select:hover,
#service-province-select:hover {
    border-color: var(--service-primary);
}

.finder-select-wrapper select:focus,
#service-province-select:focus {
    outline: none;
    border-color: var(--service-primary);
    box-shadow: 0 0 0 4px rgba(252, 58, 0, 0.1);
}

/* =========================
   FEATURED BUSINESSES
   ========================= */

.service-featured {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.service-featured h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 60px 0;
    color: var(--service-dark);
}

.featured-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.featured-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: var(--service-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(252, 58, 0, 0.2);
}

.featured-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--service-dark);
}

.featured-location {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 16px 0;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.rating-value {
    font-weight: 700;
    color: var(--service-dark);
}

.featured-cta {
    display: inline-block;
    color: var(--service-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* =========================
   FAQ SECTION
   ========================= */

.service-faq {
    padding: 100px 24px;
    background: white;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 60px 0;
    color: var(--service-dark);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--service-dark);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* =========================
   FINAL CTA
   ========================= */

.service-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--service-primary), #d93200);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    margin: 0 0 16px 0;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 48px;
    background: white;
    color: var(--service-primary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .finder-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 500px;
        padding: 60px 20px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .finder-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .service-intro,
    .service-process,
    .service-popular-parts,
    .service-finder,
    .service-featured,
    .service-faq,
    .service-cta {
        padding: 60px 20px;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}