/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --darkest: #073B3A;
    --dark: #0B6E4F;
    --medium: #08A045;
    --light: #6BBF59;
    --bright: #21D375;
    --white: #FFFFFF;
    --off-white: #F0F7F4;
    --near-white: #E8F5E9;
    --text-dark: #0A2E2D;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dark-muted: rgba(7, 59, 58, 0.7);
    --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --accent: #FACC15;
    --accent-hover: #EAB308;
    --teal: #2DD4BF;
    --teal-dark: #0D9488;
    --teal-darker: #115E59;
    --gradient-bright: linear-gradient(135deg, #21D375 0%, #6BBF59 50%, #08A045 100%);
    --gradient-dark: linear-gradient(135deg, #073B3A 0%, #0B6E4F 100%);
    --gradient-hero: linear-gradient(160deg, #073B3A 0%, #0B6E4F 40%, #08A045 100%);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(7, 59, 58, 0.08);
}

.navbar.scrolled .nav-logo {
    color: var(--darkest);
}

.navbar.scrolled .nav-logo-img {
    filter: none;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark-muted);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--darkest);
}

.navbar.scrolled .nav-cta {
    background: var(--accent) !important;
    color: var(--darkest) !important;
}

.navbar.scrolled .nav-toggle span {
    background: var(--darkest);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--darkest) !important;
    padding: 11px 28px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.4);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--darkest);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--bright);
    color: var(--bright);
    background: rgba(33, 211, 117, 0.08);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(7, 59, 58, 0.3);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.05rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #073B3A;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 59, 58, 0.3) 0%, rgba(7, 59, 58, 0.6) 100%);
    z-index: 1;
}

.hero::before {
    display: none;
}

/* Animated floating orbs */
.hero::after {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 32px;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--bright);
    margin-bottom: 28px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 100px;
    background: rgba(33, 211, 117, 0.08);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
}

.highlight {
    color: var(--bright);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.8;
    font-weight: 300;
}

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

/* ===========================
   Section Styles
   =========================== */
.section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--medium);
    margin-bottom: 20px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(8, 160, 69, 0.08);
    border: 1px solid rgba(8, 160, 69, 0.15);
}

.section--dark .section-label {
    color: var(--bright);
    background: rgba(33, 211, 117, 0.1);
    border-color: rgba(33, 211, 117, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark-muted);
    max-width: 580px;
    margin-bottom: 64px;
    line-height: 1.7;
    font-weight: 300;
}

.section--dark .section-subtitle {
    color: var(--text-muted);
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 60px rgba(7, 59, 58, 0.12);
}

.about-photo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid var(--bright);
    z-index: -1;
    opacity: 0.3;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 28px;
    line-height: 1.15;
    color: var(--darkest);
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--text-dark-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(7, 59, 58, 0.08);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ===========================
   Results Banner
   =========================== */
.results-banner {
    background: var(--gradient-hero);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.results-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(33, 211, 117, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.result-item {
    padding: 16px;
}

.result-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.result-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--off-white);
}

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

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

.service-card {
    background: var(--white);
    border: 1px solid rgba(7, 59, 58, 0.06);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bright);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(7, 59, 58, 0.1);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(33, 211, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--medium);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--darkest);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===========================
   Impact / Case Studies
   =========================== */
.impact {
    background: var(--darkest);
    color: var(--white);
}

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

.case-studies {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.case-study {
    background: linear-gradient(135deg, rgba(11, 110, 79, 0.2) 0%, rgba(8, 160, 69, 0.05) 100%);
    border: 1px solid rgba(33, 211, 117, 0.1);
    border-radius: 24px;
    padding: 52px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-bright);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study:hover {
    border-color: rgba(33, 211, 117, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.case-study:hover::before {
    opacity: 1;
}

.case-study-image {
    margin: -52px -52px 32px -52px;
    height: 240px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-study:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.case-study-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bright);
    opacity: 0.7;
}

.case-study-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.case-study-highlight {
    background: rgba(33, 211, 117, 0.06);
    border-left: 3px solid var(--bright);
    padding: 24px 32px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 28px;
}

.highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.case-study-desc {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
}

.case-study-how {
    margin-bottom: 32px;
}

.case-study-how h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bright);
    margin-bottom: 12px;
    font-weight: 700;
}

.case-study-how p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

/* ===========================
   Expertise Section
   =========================== */
.expertise {
    background: var(--white);
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    background: var(--off-white);
    color: var(--darkest);
    border: 1px solid rgba(7, 59, 58, 0.06);
}

.skill-tag:hover {
    background: var(--darkest);
    color: var(--white);
    border-color: var(--darkest);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(7, 59, 58, 0.15);
}

/* ===========================
   Resources Section
   =========================== */
.resources {
    background: var(--off-white);
}

.resource-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--darkest);
    border-radius: 24px;
    padding: 52px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.resource-featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(33, 211, 117, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.resource-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--darkest);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.resource-featured-content {
    position: relative;
    z-index: 1;
}

.resource-featured-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.resource-featured-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
}

.resource-featured-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ebook-cover-mini {
    width: 180px;
    height: 240px;
    background: linear-gradient(160deg, var(--dark) 0%, var(--darkest) 100%);
    border-radius: 4px 12px 12px 4px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.3), -2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    text-align: center;
    border-left: 4px solid var(--accent);
    position: relative;
}

.ebook-cover-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.ebook-cover-author {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.resource-card {
    background: var(--white);
    border: 1px solid rgba(7, 59, 58, 0.06);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(7, 59, 58, 0.1);
    border-color: transparent;
}

.resource-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--medium);
    font-weight: 700;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: rgba(8, 160, 69, 0.08);
    border-radius: 100px;
    align-self: flex-start;
}

.resource-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--darkest);
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.resource-card p {
    color: var(--text-dark-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
    flex-grow: 1;
    margin-bottom: 16px;
}

.resource-meta {
    font-size: 0.78rem;
    color: rgba(7, 59, 58, 0.45);
    font-weight: 500;
}

@media (max-width: 968px) {
    .resource-featured {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }

    .resource-featured-visual {
        order: -1;
    }

    .ebook-cover-mini {
        width: 150px;
        height: 200px;
    }

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

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: var(--darkest);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('cta-bg.jpg') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 59, 58, 0.4) 0%, rgba(7, 59, 58, 0.7) 100%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.cta-section .btn-primary {
    background: var(--accent);
    color: var(--darkest);
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--off-white);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--text-dark-muted);
}

.contact-item svg {
    color: var(--medium);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--darkest);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
    background: var(--white);
    border: 1px solid rgba(7, 59, 58, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--darkest);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(7, 59, 58, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--medium);
    box-shadow: 0 0 0 4px rgba(8, 160, 69, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--darkest);
    padding: 56px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

/* ===========================
   Photo Breaks
   =========================== */
.photo-break {
    height: 400px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.photo-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 59, 58, 0.3) 0%, rgba(7, 59, 58, 0.5) 100%);
}

.photo-break--workspace {
    background-image: url('services-photo.jpg');
}

.photo-break--community {
    background-image: url('impact-photo.jpg');
    background-position: center 30%;
}

@media (max-width: 968px) {
    .photo-break {
        height: 300px;
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {
    .photo-break {
        height: 220px;
    }
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===========================
   Responsive
   =========================== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 28px;
        gap: 18px;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(7, 59, 58, 0.06);
    }

    .navbar:not(.scrolled) .nav-links {
        background: rgba(7, 59, 58, 0.98);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

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

    .about-photo {
        max-width: 320px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

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

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

    .case-study {
        padding: 36px 28px;
    }

    .case-study-image {
        margin: -36px -28px 24px -28px;
        height: 200px;
    }

    .case-study-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .highlight-number {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
