/* ============================================
   Charles Pence Surveys — Custom Styles
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-600: #52B788;
    --green-500: #74C69D;
    --green-400: #95D5B2;
    --green-300: #B7E4C7;
    --green-200: #D8F3DC;
    --green-100: #EDF7F0;
    --cream: #FAF9F6;
    --cream-dark: #F0EEE8;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-dark: #B8912E;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-900: #1A1A1A;
    --gray-700: #3D3D3D;
    --gray-500: #6B6B6B;
    --gray-300: #B8B8B8;
    --gray-100: #E8E8E8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(27,67,50,0.08);
    --shadow-md: 0 4px 16px rgba(27,67,50,0.10);
    --shadow-lg: 0 8px 32px rgba(27,67,50,0.12);
    --shadow-xl: 0 16px 48px rgba(27,67,50,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--green-900);
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

.nav-logo-accent {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-900);
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--green-900);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    transition: var(--transition);
}

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

.nav-cta::after {
    display: none !important;
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--green-900);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Geometric decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,106,79,0.06) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,67,0.10) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--green-200);
    border-radius: var(--radius-lg);
    rotate: 45deg;
    top: 20%;
    right: 8%;
    opacity: 0.5;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: var(--radius-md);
    rotate: 30deg;
    bottom: 25%;
    right: 15%;
    opacity: 0.3;
}

.hero-shape-5 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--green-300);
    border-radius: 50%;
    top: 15%;
    left: 5%;
    opacity: 0.3;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-100);
    color: var(--green-800);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--green-900);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--gold);
    position: relative;
}

.hero-desc {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 520px;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green-900);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--green-900);
    border: 2px solid var(--green-900);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-900);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== FLOATING STAT CARDS ========== */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card--1::before { background: var(--green-600); }
.stat-card--2::before { background: var(--gold); }
.stat-card--3::before { background: var(--green-400); }
.stat-card--4::before { background: var(--green-700); }

.stat-card-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
}

.stat-card--1 .stat-card-accent { background: var(--green-600); }
.stat-card--2 .stat-card-accent { background: var(--gold); }
.stat-card--3 .stat-card-accent { background: var(--green-400); }
.stat-card--4 .stat-card-accent { background: var(--green-700); }

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-card--1 .stat-card-icon { background: var(--green-100); color: var(--green-700); }
.stat-card--2 .stat-card-icon { background: rgba(212,168,67,0.15); color: var(--gold-dark); }
.stat-card--3 .stat-card-icon { background: var(--green-200); color: var(--green-800); }
.stat-card--4 .stat-card-icon { background: rgba(27,67,50,0.1); color: var(--green-900); }

.stat-card-icon svg {
    width: 26px;
    height: 26px;
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
}

/* ========== MARQUEE ========== */
.marquee-strip {
    background: var(--green-900);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 0.6rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SECTION COMMON ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--green-900);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.section-desc {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 24px;
    background: var(--cream);
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(27,67,50,0.06);
}

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

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.15);
    color: var(--gold-light);
}

.service-card:hover .service-link svg {
    stroke: var(--gold-light);
}

.service-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--green-200);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    letter-spacing: -0.03em;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green-700);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-link svg {
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 24px;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.about-img-accent img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--green-900);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-accent-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
}

.about-accent-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-800);
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ========== PROCESS ========== */
.process {
    padding: 120px 24px;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.process .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process .section-label {
    color: var(--gold);
}

.process .section-label::before {
    background: var(--gold);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

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

.process-step-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.process-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    transition: var(--transition);
}

.process-step:hover .process-step-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-900);
    transform: scale(1.1);
}

.process-step-circle svg {
    width: 28px;
    height: 28px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.process-connector {
    display: none;
}

/* ========== AREAS ========== */
.areas {
    padding: 120px 24px;
    background: var(--cream);
}

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

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

.areas-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-tag {
    background: var(--white);
    color: var(--green-800);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--green-200);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--green-900);
    color: var(--white);
    border-color: var(--green-900);
    transform: translateY(-2px);
}

.areas-map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.areas-map-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.areas-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-900);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212,168,67,0.1);
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    bottom: -80px;
    right: 5%;
}

.cta-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 24px;
    background: var(--white);
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--green-900);
    font-weight: 600;
    line-height: 1.6;
}

.contact-link:hover {
    color: var(--gold-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ========== CONTACT FORM ========== */
.contact-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--green-200);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form-subtitle {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--green-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-900);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    margin: 0 auto 20px;
    color: var(--green-600);
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--green-900);
    color: var(--white);
    padding: 80px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-accent {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: grid;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ========== ANIMATIONS ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        max-width: 500px;
    }

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

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

    .about-visual {
        max-width: 500px;
    }

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

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

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px 18px;
    }

    .stat-card-number {
        font-size: 1.3rem;
    }

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

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

    .process-step-num {
        font-size: 2.5rem;
    }

    .areas-img-accent {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        justify-content: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-img-accent {
        right: 10px;
        bottom: -20px;
    }

    .about-img-accent img {
        width: 180px;
        height: 140px;
    }

    .about-accent-block {
        top: -10px;
        left: -10px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .areas-tags {
        gap: 8px;
    }

    .area-tag {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

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