/* ============================================================
   GREENLINE LAWN & LANDSCAPE — MAIN STYLESHEET
   Design: Bold, dark, conversion-focused local service site
   Palette: Dark Green (#1a3a1a), Lime Green (#7ed957), White
   Template match: High-contrast alternating sections
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --green-dark: #1a3a1a;
    --green-deep: #0f2b0f;
    --green-mid: #2d5a2d;
    --green-accent: #7ed957;
    --green-accent-hover: #6bc743;
    --green-light: #a8e88a;
    --white: #ffffff;
    --off-white: #f5f7f2;
    --gray-100: #f0f2ed;
    --gray-200: #e0e3da;
    --gray-300: #c5c9bd;
    --gray-500: #8a8e82;
    --gray-700: #4a4e44;
    --gray-900: #1c1f18;
    --text-dark: #1c1f18;
    --text-light: #e8ebe4;
    --text-muted: #b0b4a8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.20);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--green-deep);
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(126, 217, 87, 0.15);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar span, .top-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--green-accent);
}

.top-bar i {
    color: var(--green-accent);
    font-size: 12px;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
    color: var(--green-accent);
    background: var(--green-dark);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--green-dark);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--green-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-links a:hover {
    color: var(--green-dark);
}

.nav-cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    background: var(--green-accent);
    color: var(--green-dark);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--green-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-accent:hover {
    background: var(--green-accent-hover);
    border-color: var(--green-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(126, 217, 87, 0.35);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.btn-dark:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}

.btn-full {
    width: 100%;
}

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

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    background: var(--green-deep);
    min-height: 700px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 43, 15, 0.88) 0%, rgba(26, 58, 26, 0.82) 40%, rgba(15, 43, 15, 0.75) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    padding: 60px 20px 70px;
    min-height: 700px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--green-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-headline .accent {
    color: var(--green-accent);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(126, 217, 87, 0.08);
    border: 1px solid rgba(126, 217, 87, 0.2);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

.trust-badge i {
    color: var(--green-accent);
    font-size: 16px;
}

/* ---------- HERO FORM ---------- */
.hero-form-wrap {
    position: relative;
}

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-xl);
    border-top: 5px solid var(--green-accent);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header i {
    font-size: 28px;
    color: var(--green-accent);
    margin-bottom: 8px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

.quote-form .form-group {
    margin-bottom: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--green-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.15);
}

.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8e82' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.quote-form .btn-full {
    margin-top: 4px;
    font-size: 17px;
    padding: 16px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 14px;
}

.form-note i {
    margin-right: 4px;
    color: var(--green-mid);
}

/* ---------- SECTION STYLES ---------- */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--green-deep);
}

.section-accent {
    background: var(--green-accent);
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 10px;
}

.section-tag.light {
    color: var(--green-accent);
}

.section-tag.dark {
    color: var(--green-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-title.dark {
    color: var(--green-dark);
}

.section-title .accent {
    color: var(--green-accent);
}

.section-title .accent-dark {
    color: var(--green-deep);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.section-header-cta span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-700);
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--green-accent);
    color: var(--green-dark);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.about-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-trust-item > i {
    font-size: 24px;
    color: var(--green-accent);
    background: var(--green-dark);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.about-trust-item strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.about-trust-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ---------- REVIEWS SECTION ---------- */
.review-count {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: -10px;
}

.stars {
    color: var(--green-accent);
    font-size: 28px;
    display: inline-flex;
    gap: 4px;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(126, 217, 87, 0.15);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--green-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(126, 217, 87, 0.1);
}

.review-stars {
    color: var(--green-accent);
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-accent);
    color: var(--green-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-author strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.review-author span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ---------- SERVICES SECTION ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green-accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-accent);
    color: var(--green-dark);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ---------- PORTFOLIO SECTION ---------- */
.portfolio-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

.portfolio-featured img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.portfolio-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 43, 15, 0.95));
    padding: 60px 40px 40px;
}

.portfolio-featured-overlay h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--green-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-featured-overlay p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-list {
    margin-top: 24px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.why-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--green-accent);
    color: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-item strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.why-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- PROCESS SECTION ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(126, 217, 87, 0.15);
    border-top: 4px solid var(--green-accent);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--green-accent);
    transform: translateY(-3px);
    background: rgba(126, 217, 87, 0.06);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(126, 217, 87, 0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.process-icon {
    font-size: 32px;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- GALLERY SECTION ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ---------- FAQ SECTION ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--green-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--green-accent);
    color: var(--green-dark);
}

.faq-question:hover {
    background: var(--green-accent);
    color: var(--green-dark);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-icon {
    color: var(--green-accent);
    font-size: 14px;
}

.faq-item.active .faq-icon,
.faq-question:hover .faq-icon {
    color: var(--green-dark);
}

.faq-toggle {
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    border-top: 1px solid var(--gray-200);
}

/* ---------- SERVICE AREAS SECTION ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    padding: 14px 18px;
    background: rgba(126, 217, 87, 0.08);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.area-item:hover {
    border-color: var(--green-accent);
    background: rgba(126, 217, 87, 0.15);
}

.area-item i {
    color: var(--green-accent);
    font-size: 16px;
}

.areas-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(126, 217, 87, 0.3);
}

.areas-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 30px;
}

/* ---------- FINAL CTA SECTION ---------- */
.section-cta {
    position: relative;
    background: var(--green-dark);
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 43, 15, 0.95), rgba(26, 58, 26, 0.9)),
        radial-gradient(circle at 20% 80%, rgba(126, 217, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(126, 217, 87, 0.08) 0%, transparent 50%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--text-muted);
}

.cta-contact-row i {
    color: var(--green-accent);
    margin-right: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--gray-900);
    color: var(--text-muted);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: var(--green-accent);
    color: var(--green-dark);
}

.footer .logo-name {
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    font-size: 14px;
    color: var(--gray-500);
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--green-accent);
    width: 16px;
    text-align: center;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(126, 217, 87, 0.1);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--green-accent);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green-accent);
    color: var(--green-dark);
    border-color: var(--green-accent);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--green-accent);
    color: var(--green-dark);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--green-accent-hover);
    transform: translateY(-3px);
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--green-deep);
    border-top: 2px solid var(--green-accent);
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-sticky-cta .btn {
    font-size: 15px;
    padding: 14px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- FORM SUCCESS STATE ---------- */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 56px;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-500);
}

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

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 50px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-form-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 350px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-image img {
        height: 350px;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s ease;
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 17px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-btns .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 34px);
    }

    .about-trust-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .areas-list {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-btns .btn {
        width: 100%;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .scroll-top {
        bottom: 80px;
    }

    .portfolio-featured img {
        height: 300px;
    }

    .portfolio-featured-overlay {
        padding: 40px 24px 28px;
    }

    .portfolio-featured-overlay h3 {
        font-size: 22px;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-inner {
        padding: 30px 16px 40px;
    }

    .hero-form-card {
        padding: 28px 20px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 6px 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item img {
        height: 140px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 16px;
        font-size: 14px;
    }

    .area-item {
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* ---------- MOBILE OVERLAY ---------- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
