/* ============================================
   Benton Emergency Roof Tarping - Stylesheet
   Brand Colors:
   - Primary: #0A2740 (Forest Navy)
   - Accent: #C9A84C (Gold)
   - Background: #F4F6F8
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0A2740;
    --primary-dark: #071c2e;
    --primary-light: #0f3454;
    --accent: #C9A84C;
    --accent-dark: #b8943f;
    --accent-light: #d9bc6a;
    --background: #F4F6F8;
    --background-alt: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --border: #e0e0e0;
    --shadow: rgba(10, 39, 64, 0.1);
    --shadow-lg: rgba(10, 39, 64, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow);
}

.header.scrolled {
    padding: 0;
}

.header .container {
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 39, 64, 0.92) 0%, rgba(10, 39, 64, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    opacity: 0.9;
}

.feature-icon {
    font-size: 20px;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--background);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

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

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose {
    padding: 100px 0;
    background: white;
}

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

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-text > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.benefits-list span {
    color: var(--text-light);
    font-size: 14px;
}

.why-choose-images {
    position: relative;
}

.image-stack {
    position: relative;
}

.img-large {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 15px 40px var(--shadow-lg);
    border: 4px solid white;
}

/* ============================================
   Damage Types Section
   ============================================ */
.damage-types {
    padding: 100px 0;
    background: var(--background);
}

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

.damage-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.damage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

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

.damage-content {
    padding: 30px;
}

.damage-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.damage-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Service Area Section
   ============================================ */
.service-area {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.service-area .section-header h2 {
    color: white;
}

.service-area .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.area-icon {
    font-size: 20px;
}

.area-item span:last-child {
    font-weight: 600;
}

.area-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.cta-banner-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-banner .btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cta-banner .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    color: var(--text-medium);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

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

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links a,
.footer-services a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-images {
        order: -1;
    }
    
    .img-small {
        width: 160px;
        right: 20px;
        bottom: -20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 30px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-phone {
        display: none;
    }
    
    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services,
    .damage-types,
    .why-choose,
    .contact {
        padding: 70px 0;
    }
    
    .service-area {
        padding: 70px 0;
    }
    
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand img {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-card,
    .damage-card {
        padding: 25px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Page Hero (Service Pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 39, 64, 0.92) 0%, rgba(10, 39, 64, 0.75) 100%);
    z-index: -1;
}

.page-hero .hero-content {
    max-width: 700px;
    color: white;
}

.page-hero .hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ============================================
   Service Overview Section
   ============================================ */
.service-overview {
    padding: 100px 0;
    background: white;
}

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

.overview-text .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.overview-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-lg);
}

/* ============================================
   Why Tarping / Features Grid
   ============================================ */
.why-tarping {
    padding: 100px 0;
    background: var(--background);
}

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

.tarping-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.tarping-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.tarping-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tarping-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.tarping-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   When to Call - Signs Section
   ============================================ */
.when-to-call {
    padding: 100px 0;
    background: white;
}

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

.sign-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sign-item:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.sign-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.sign-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.sign-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Process Steps
   ============================================ */
.our-process {
    padding: 100px 0;
    background: var(--background);
}

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

.process-step {
    text-align: center;
    padding: 25px 15px;
}

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

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Related Services
   ============================================ */
.related-services {
    padding: 100px 0;
    background: white;
}

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

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--accent-dark);
}

/* ============================================
   Damage Types Section (Service Pages)
   ============================================ */
.damage-types-section {
    padding: 100px 0;
    background: var(--background);
}

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

.repair-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.repair-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.repair-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.repair-card ul {
    list-style: none;
}

.repair-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.repair-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   Leak Repair Section
   ============================================ */
.leak-repair-section {
    padding: 100px 0;
    background: white;
}

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

.leak-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0 15px;
}

.leak-text h3:first-child {
    margin-top: 0;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.check {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-list li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-list strong {
    color: var(--primary);
}

.leak-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-lg);
}

/* ============================================
   Repair Process Section
   ============================================ */
.repair-process-section {
    padding: 100px 0;
    background: var(--background);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-marker {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Why Professional
   ============================================ */
.why-professional {
    padding: 100px 0;
    background: white;
}

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

.professional-card {
    padding: 30px 25px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.professional-card:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.professional-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.professional-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.professional-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Understanding Wind Damage
   ============================================ */
.understanding-wind {
    padding: 100px 0;
    background: white;
}

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

.wind-info-text .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.wind-info-text > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.wind-info-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 35px 0 20px;
}

.wind-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wind-category {
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.category-level {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.wind-category h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.wind-category p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.wind-info-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-lg);
}

/* ============================================
   Signs of Wind Damage
   ============================================ */
.signs-wind-damage {
    padding: 100px 0;
    background: var(--background);
}

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

.sign-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.sign-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.sign-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.sign-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Restoration Process
   ============================================ */
.restoration-process {
    padding: 100px 0;
    background: white;
}

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

/* ============================================
   Prompt Action Section
   ============================================ */
.prompt-action {
    padding: 100px 0;
    background: var(--background);
}

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

.importance-list {
    list-style: none;
}

.importance-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.importance-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.importance-list strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.importance-list p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.prompt-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-lg);
}

/* ============================================
   Insurance Help Section
   ============================================ */
.insurance-help {
    padding: 100px 0;
    background: white;
}

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

.insurance-card {
    background: var(--background);
    padding: 35px;
    border-radius: 16px;
}

.insurance-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.insurance-list {
    list-style: none;
}

.insurance-list li {
    color: var(--text-medium);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.action-list {
    list-style: none;
    counter-reset: action-counter;
}

.action-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

.action-list li::before {
    counter-increment: action-counter;
    content: counter(action-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-list strong {
    color: var(--primary);
}

/* ============================================
   Service Area Page Styles
   ============================================ */
.main-service-areas {
    padding: 100px 0;
    background: white;
}

.areas-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.featured-area {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.featured-area .area-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-area h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.featured-area p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.area-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-highlights li {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.secondary-areas {
    background: var(--background);
    padding: 40px;
    border-radius: 16px;
}

.secondary-areas h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.secondary-areas p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   All Service Areas Grid
   ============================================ */
.all-service-areas {
    padding: 100px 0;
    background: var(--background);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.area-card .area-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.area-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.area-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.area-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--background);
    color: var(--text-medium);
}

.area-tag.primary {
    background: var(--accent);
    color: var(--primary);
}

.additional-areas {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.additional-areas h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.additional-areas p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Why Local Section
   ============================================ */
.why-local {
    padding: 100px 0;
    background: white;
}

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

.local-benefit {
    padding: 30px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.local-benefit:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.local-benefit h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.local-benefit p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Services Provided Section
   ============================================ */
.services-provided {
    padding: 100px 0;
    background: var(--background);
}

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

.offered-service {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.offered-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.offered-service .service-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.offered-service h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.offered-service p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Contact CTA Section
   ============================================ */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

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

.contact-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact-cta .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.contact-cta .btn-outline:hover {
    background: var(--primary);
    color: white;
}

.service-note {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
}

.service-note p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--primary);
    opacity: 0.9;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.map-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 5px;
}

.map-info .phone-link {
    margin-top: 15px;
}

.map-info .phone-link a {
    color: var(--accent);
    font-weight: 600;
}

.map-placeholder {
    background: var(--background);
    border-radius: 16px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ef 100%);
    border-radius: 12px;
    border: 2px solid var(--primary);
}

.map-dot {
    position: absolute;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.map-dot::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.map-dot.benton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-dot.benton::after {
    right: -18px;
}

.map-dot.bryant {
    top: 40%;
    left: 65%;
}

.map-dot.bryant::after {
    left: -18px;
}

.map-dot.hot-springs {
    bottom: 20%;
    left: 30%;
}

.map-dot.hot-springs::after {
    right: -18px;
}

.map-dot.malvern {
    bottom: 25%;
    right: 25%;
}

.map-dot.malvern::after {
    left: -18px;
}

/* ============================================
   Responsive Service Pages
   ============================================ */
@media (max-width: 1024px) {
    .overview-content,
    .leak-content,
    .wind-info-content,
    .prompt-content,
    .insurance-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-showcase {
        grid-template-columns: 1fr;
    }
    
    .map-visual {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-overview,
    .why-tarping,
    .when-to-call,
    .our-process,
    .damage-types-section,
    .leak-repair-section,
    .repair-process-section,
    .why-professional,
    .understanding-wind,
    .signs-wind-damage,
    .restoration-process,
    .prompt-action,
    .insurance-help,
    .main-service-areas,
    .all-service-areas,
    .why-local,
    .services-provided,
    .map-section {
        padding: 70px 0;
    }
    
    .overview-text h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-overview .overview-content,
    .leak-content,
    .wind-info-content,
    .prompt-content,
    .insurance-content {
        gap: 30px;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .timeline-marker {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .contact-cta-buttons .btn {
        width: 100%;
    }
    
    .map-dot {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .overview-text h2,
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .signs-grid,
    .tarping-grid,
    .repair-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
