/* =========================================================
   THE HEALTHY ADVOCACY TEAM — Main Stylesheet
   Brand Colors: Green #3a8c2f | Blue #2d6db5 | Yellow #f0a500
   ========================================================= */

/* === CUSTOM PROPERTIES === */
:root {
    --green:        #3a8c2f;
    --green-dark:   #2a6a20;
    --green-light:  #5ab847;
    --green-pale:   #eaf5e7;
    --blue:         #2d6db5;
    --blue-dark:    #1e4f8a;
    --blue-light:   #4d8fd4;
    --blue-pale:    #e8f1fb;
    --yellow:       #f0a500;
    --yellow-dark:  #c07800;
    --yellow-light: #f7c242;
    --yellow-pale:  #fef6e0;
    --gray-900:     #1a1a1a;
    --gray-700:     #3d3d3d;
    --gray-500:     #6b6b6b;
    --gray-300:     #b0b0b0;
    --gray-100:     #f5f5f5;
    --white:        #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
    --radius:       10px;
    --radius-lg:    16px;
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

/* === TYPOGRAPHY HELPERS === */
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }
.text-yellow { color: var(--yellow); }
.section-pad { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header.white { color: var(--white); }
.section-header.white h2 { color: var(--white); }
.section-header.white p { color: rgba(255,255,255,0.85); }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-header.white .section-label {
    color: var(--yellow);
    background: rgba(240,165,0,0.18);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header h2 span { color: var(--green); }

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--green);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(58,140,47,0.35);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58,140,47,0.45);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--blue);
    transition: var(--transition);
}
.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.section-cta { text-align: center; margin-top: 48px; }

/* === TOP BAR === */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    gap: 24px;
}
.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-right {
    display: flex;
    gap: 14px;
}
.topbar-right a {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.topbar-right a:hover { color: var(--yellow); }

/* === NAVIGATION === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-body);
}
.logo-the { font-size: 12px; color: var(--gray-500); font-weight: 400; }
.logo-healthy { font-size: 18px; font-weight: 700; color: var(--green); }
.logo-advocacy { font-size: 18px; font-weight: 700; color: var(--blue); }
.logo-team { font-size: 16px; font-weight: 700; color: var(--yellow); }

/* Nav Links */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-pale); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: 6px;
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--green-pale); color: var(--green); padding-left: 18px; }

/* CTA Button */
.btn-cta {
    padding: 10px 24px;
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-slider { position: relative; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active { position: relative; opacity: 1; }
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 160px;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-text { max-width: 640px; }
.hero-badge {
    display: inline-block;
    background: rgba(240,165,0,0.9);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-text h1 em {
    font-style: normal;
    color: var(--yellow-light);
}
.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    padding: 16px 36px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-hero-secondary {
    padding: 16px 36px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Slider controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.slider-btn:hover { background: rgba(255,255,255,0.35); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.dot.active { width: 28px; border-radius: 4px; background: var(--white); }

/* Quick Links Bar */
.hero-quick-links {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
    margin-top: -1px;
}
.quick-links-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--green);
}
.quick-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid rgba(0,0,0,0.07);
    transition: var(--transition);
}
.quick-link:last-child { border-right: none; }
.quick-link:hover { background: var(--gray-100); }
.ql-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ql-icon.green { background: var(--green-pale); color: var(--green); }
.ql-icon.blue  { background: var(--blue-pale);  color: var(--blue); }
.ql-icon.yellow { background: var(--yellow-pale); color: var(--yellow-dark); }
.quick-link strong { display: block; font-size: 14px; font-weight: 600; color: var(--gray-900); }
.quick-link span   { display: block; font-size: 12px; color: var(--gray-500); }

/* === MISSION BANNER === */
.mission-banner {
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--blue-pale) 100%);
    padding: 60px 0;
    text-align: center;
}
.mission-inner { max-width: 760px; margin: 0 auto; }
.mission-quote {
    position: relative;
    padding: 0 48px;
}
.quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.5;
    color: var(--green);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 0;
}
.mission-quote p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}
.mission-quote cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === ABOUT SNIPPET === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.badge-number { font-size: 36px; font-weight: 700; line-height: 1; }
.badge-label  { font-size: 12px; line-height: 1.3; margin-top: 4px; opacity: 0.9; }

.about-content .section-label { margin-bottom: 12px; }
.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-content .lead {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 16px;
    font-weight: 400;
}
.about-content p {
    color: var(--gray-500);
    margin-bottom: 28px;
}
.about-values { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-700); }
.value-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.value-dot.green { background: var(--green); }
.value-dot.blue  { background: var(--blue); }
.value-dot.yellow { background: var(--yellow); }

/* === IMPACT STATS === */
.impact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.impact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 60%, var(--green) 100%);
}
.impact-section .container { position: relative; z-index: 1; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--yellow-light);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.service-card.featured::after {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
}
.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon-wrap.green { background: var(--green-pale); color: var(--green); }
.service-icon-wrap.blue  { background: var(--blue-pale);  color: var(--blue); }
.service-icon-wrap.yellow { background: var(--yellow-pale); color: var(--yellow-dark); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { color: var(--blue); gap: 8px; }

/* === CTA BAND === */
.cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    padding: 64px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }
.btn-cta-white {
    padding: 14px 32px;
    background: var(--white);
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-cta-white:hover { background: var(--yellow); color: var(--white); transform: translateY(-2px); }
.btn-cta-outline {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* === NEWS === */
.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.news-img { position: relative; overflow: hidden; }
.news-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-category {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.news-category.green  { background: var(--green); color: var(--white); }
.news-category.blue   { background: var(--blue); color: var(--white); }
.news-category.yellow { background: var(--yellow); color: var(--white); }
.news-body { padding: 20px 24px 24px; }
.news-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray-300); margin-bottom: 10px; }
.news-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.35;
}
.news-card.large h3 { font-size: 22px; }
.news-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.news-read-more { font-size: 14px; font-weight: 600; color: var(--green); transition: var(--transition); }
.news-read-more:hover { color: var(--blue); }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--gray-100); }
.testimonials-slider { max-width: 760px; margin: 0 auto; }
.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.testimonial-card.active { display: block; }
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.6;
    color: var(--green);
    opacity: 0.2;
    margin-bottom: 8px;
}
.testimonial-card > p {
    font-size: 17px;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--gray-900); }
.testimonial-author span  { display: block; font-size: 13px; color: var(--gray-500); }
.test-nav { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition);
}
.test-dot.active { width: 28px; border-radius: 4px; background: var(--green); }

/* === PARTNERS === */
.partners-section {
    padding: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.partners-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 28px;
}
.partners-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
}
.partner-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.partner-item:hover { color: var(--green); }

/* === FOOTER === */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.75); }
.footer-wave { line-height: 0; }
.footer-wave svg { height: 60px; width: 100%; }
.footer-body { padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}
.footer-logo strong { font-weight: 700; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-contact ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* === INNER PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 14px;
}
.page-hero p { font-size: 17px; opacity: 0.88; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--yellow-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.contact-info { padding: 40px; background: var(--green-pale); border-radius: var(--radius-lg); }
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--green-dark);
    margin-bottom: 20px;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.ci-icon {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); flex-shrink: 0;
}
.ci-label { font-size: 12px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-value { font-size: 15px; color: var(--gray-700); font-weight: 500; }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(58,140,47,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.large { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .quick-links-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .navbar-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--white);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 8px;
    }
    .navbar-menu.open { display: flex; }
    .nav-link { font-size: 20px; padding: 12px 16px; width: 100%; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .quick-links-bar { grid-template-columns: 1fr 1fr; }
    .hero-content { padding: 80px 0 120px; }
    .slider-btn { display: none; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .quick-links-bar { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
}
