/* ==========================================
   SERVICE PAGE SPECIFIC STYLES
   ========================================== */

/* SERVICE HERO */
.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 95, 95, 0.9) 0%, rgba(74, 144, 164, 0.8) 100%);
}

.service-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #FFFFFF;
    text-decoration: underline;
}

.breadcrumb span {
    color: #FFFFFF;
    font-weight: 600;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.service-hero-content h1 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-hero-subtitle {
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* SERVICE INTRO */
.service-intro {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

/* WHO IT'S FOR */
.who-its-for {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.two-column-layout h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.two-column-layout h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #0A5F5F;
}

.benefit-list,
.caution-list,
.safety-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li,
.safety-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #6B7280;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.25rem;
}

.safety-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #4A90A4;
    font-size: 1.25rem;
}

.caution-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #6B7280;
}

.caution-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: bold;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    border: 2px solid #FF6B6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #4A90A4;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-color: #0A5F5F;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0A5F5F;
}

.benefit-card p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 0;
}

/* FORMULAS SECTION */
.formulas-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.formula-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.formula-item {
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.formula-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #0A5F5F;
}

.formula-item p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 0;
}

/* SAFETY SECTION */
.safety-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.disclaimer-box {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.disclaimer-box h4 {
    color: #92400E;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #78350F;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* LOCAL SECTION */
.local-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

/* RELATED SERVICES */
.related-services {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    font-size: 1.25rem;
    color: #0A5F5F;
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 0;
}

.related-card p {
    font-size: 0.9375rem;
    color: #6B7280;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
}

/* SERVICE CTA */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A5F5F 0%, #4A90A4 100%);
    text-align: center;
}

.service-cta h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-cta p {
    color: #FFFFFF;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-note {
    color: #FFFFFF;
    font-size: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* FAQ SECTION */
.faq-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #0A5F5F;
    margin-bottom: 1rem;
}

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

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .two-column-layout {
        gap: 3rem;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .service-hero {
        min-height: 350px;
        padding: 3rem 0;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper p {
        font-size: 1rem;
    }
}
