/* ===== AREA PAGE STYLES ===== */
/* Unique design for city/area service pages — distinct from service-page.css */

/* ===== AREA HERO ===== */
.area-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 16px 90px;
    overflow: hidden;
}

.area-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 30, 18, 0.95) 0%,
        rgba(20, 55, 35, 0.88) 50%,
        rgba(12, 40, 25, 0.80) 100%
    );
    z-index: 1;
}

.area-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 2;
}

.area-hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
}

.area-hero .area-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.area-breadcrumb a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-breadcrumb a:hover { color: #fff; }

.area-breadcrumb svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.35);
}

.area-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.area-hero h1 span {
    color: var(--color-gold);
    display: block;
    font-size: 0.65em;
    margin-top: 6px;
}

.area-hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.85;
    max-width: 620px;
    margin-bottom: 34px;
}

.area-hero .btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== ABOUT CITY SECTION ===== */
.area-about {
    background: #fff;
    padding: 90px 16px;
}

.area-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.area-about-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: relative;
}

.area-about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.area-about-img:hover img {
    transform: scale(1.03);
}

.area-about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.area-about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.area-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.area-fact {
    background: #f8faf8;
    border: 1px solid #e8efe8;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-fact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--color-green-deep), var(--color-green-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-fact-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.area-fact-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.35;
}

.area-fact-text small {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

/* ===== TRUSTED SERVICES OVERVIEW ===== */
.area-trusted {
    background: var(--color-green-deep);
    padding: 80px 16px;
    color: #fff;
}

.area-trusted h2 {
    color: #fff;
}

.area-trusted .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trusted-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.trusted-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.trusted-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 165, 90, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trusted-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.trusted-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.trusted-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== COMPLETE SERVICES SECTION ===== */
.area-services {
    background: #fff;
    padding: 90px 16px;
}

.area-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.area-service-item:first-child {
    padding-top: 40px;
}

.area-service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.area-service-item:nth-child(even) {
    direction: rtl;
}

.area-service-item:nth-child(even) > * {
    direction: ltr;
}

.area-service-text h3 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--color-dark);
}

.area-service-text p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.area-service-text .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.area-service-visual {
    background: linear-gradient(135deg, #f0f5f0, #e8efe8);
    border-radius: var(--radius);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.area-service-visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-green-deep), var(--color-green-accent));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.25);
}

.area-service-visual-icon svg {
    width: 48px;
    height: 48px;
    fill: #fff;
}

/* ===== WHY CHOOSE US ===== */
.area-why {
    background: #f8f8f8;
    padding: 90px 16px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-us-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    transform: translateY(-6px);
}

.why-us-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(39, 174, 96, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-us-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-green-accent);
}

.why-us-card h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.why-us-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== LOCAL CHALLENGES ===== */
.area-challenges {
    background: #fff;
    padding: 90px 16px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.challenge-card {
    border-radius: var(--radius);
    padding: 28px 22px;
    background: linear-gradient(145deg, #f0f5f0, #f8faf8);
    border: 1px solid #e0ebe0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-green-accent), var(--color-gold));
    border-radius: 4px 0 0 4px;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenge-card h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.challenge-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== AREA PROCESS ===== */
.area-process {
    background: #f8f8f8;
    padding: 90px 16px;
}

.area-process .process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.area-process .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-green-accent), var(--color-gold));
    border-radius: 3px;
}

.area-process .timeline-step {
    display: flex;
    gap: 28px;
    padding-bottom: 40px;
    position: relative;
}

.area-process .timeline-step:last-child { padding-bottom: 0; }

.area-process .timeline-dot {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: #fff;
    border: 3px solid var(--color-green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Righteous', sans-serif;
    font-size: 22px;
    color: var(--color-green-accent);
    position: relative;
    z-index: 2;
}

.area-process .timeline-content { padding-top: 14px; }
.area-process .timeline-content h3 { font-size: 20px; margin-bottom: 10px; }
.area-process .timeline-content p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 0; }

/* ===== AREA FAQ ===== */
.area-faq {
    background: #fff;
    padding: 90px 16px;
}

.area-faq .faq-container {
    max-width: 860px;
    margin: 40px auto 0;
}

/* ===== AREAS WE SERVE GRID ===== */
.area-served {
    background: #f8f8f8;
    padding: 90px 16px;
}

.served-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.served-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.served-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-green-accent);
}

.served-card-pin {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-green-deep), var(--color-green-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.served-card-pin svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.served-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.served-card p {
    font-size: 12.5px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

.served-card-arrow {
    position: absolute;
    top: 24px;
    right: 20px;
    font-size: 18px;
    color: var(--color-green-accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.served-card:hover .served-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== AREA CTA ===== */
.area-cta {
    background: linear-gradient(135deg, var(--color-green-deep) 0%, #2e7d4f 100%);
    color: #fff;
    text-align: center;
    padding: 90px 16px;
}

.area-cta h2 { color: #fff; font-size: 38px; margin-bottom: 18px; }
.area-cta p { color: rgba(255, 255, 255, 0.8); font-size: 17px; max-width: 600px; margin: 0 auto 32px; }

.area-cta .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Righteous', sans-serif;
    font-size: 26px;
    color: var(--color-gold);
    margin-bottom: 24px;
    text-decoration: none;
}

.area-cta .cta-phone svg { width: 26px; height: 26px; fill: var(--color-gold); }

/* ===== AREA MAP ===== */
.area-map {
    background: #fff;
    padding: 60px 16px;
}

.area-map .map-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.area-map .map-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* ===== AREA PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .area-hero h1 { font-size: 40px; }
    .area-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .area-about-img img { height: 320px; }
    .trusted-grid { grid-template-columns: repeat(2, 1fr); }
    .area-service-item { grid-template-columns: 1fr; gap: 30px; }
    .area-service-item:nth-child(even) { direction: ltr; }
    .area-service-visual { min-height: 200px; padding: 40px 30px; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .challenges-grid { grid-template-columns: repeat(2, 1fr); }
    .served-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .area-hero { min-height: auto; padding: 130px 16px 80px; }
    .area-hero h1 { font-size: 30px; }
    .area-hero-text { font-size: 15px; }
    .area-about { padding: 60px 16px; }
    .area-facts { grid-template-columns: 1fr; }
    .trusted-grid { grid-template-columns: 1fr; }
    .area-services { padding: 60px 16px; }
    .area-service-item { gap: 20px; padding: 30px 0; }
    .why-us-grid { grid-template-columns: 1fr; }
    .challenges-grid { grid-template-columns: 1fr; }
    .area-why, .area-challenges, .area-process, .area-faq, .area-cta { padding: 60px 16px; }
    .area-cta h2 { font-size: 28px; }
    .served-grid { grid-template-columns: repeat(2, 1fr); }
    .area-process .process-timeline::before { left: 20px; }
    .area-process .timeline-dot { width: 42px; height: 42px; min-width: 42px; font-size: 16px; }
    .area-process .timeline-step { gap: 18px; }
}
