/*
Theme Name: Basic Pro
Theme URI: https://yourwebsite.com/basic-pro
Author: Stark
Author URI: https://yourwebsite.com
Description: A professional, modern WordPress theme with customizable hero section, call-to-action features, Bootstrap 5 framework, and comprehensive security. Features responsive design, block editor support, WooCommerce compatibility, and extensive customization options.
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: starter-theme
Tags: blog, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, flexible-header, full-width-template, one-column, two-columns, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-styles, wide-blocks

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Basic Pro WordPress Theme, (C) 2024-2026 Stark Web Technologies
Basic Pro is distributed under the terms of the GNU GPL v2 or later.
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --forest: #1a3a2a;
    --forest-deep: #0f261a;
    --emerald: #2d7a4f;
    --emerald-light: #3a9963;
    --sage: #7fb09b;
    --sage-light: #a8d4c0;
    --cream: #faf8f3;
    --cream-warm: #f5f0e8;
    --gold: #c8a84e;
    --gold-light: #dfc576;
    --charcoal: #2a2a2a;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;

    /* Legacy variables for other templates */
    --color-primary: #2d7a4f;
    --color-secondary: #0f261a;
    --color-accent: #c8a84e;
    --color-text: #3a3a3a;
    --color-text-light: #6b6b6b;
    --color-background: #faf8f3;
    --color-background-alt: #f5f0e8;
    --color-border: #e0ddd5;
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --spacing-unit: 1rem;
    --container-width: 1400px;
    --transition-base: 0.3s;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

html { scroll-behavior: smooth; font-size: var(--font-size-base); }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--forest-deep);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; color: var(--gold);
    letter-spacing: 4px; opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.hwf-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s ease;
    background: transparent;
}
.hwf-nav.scrolled {
    background: rgba(26, 58, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
/* Inner pages: nav starts with dark background since there's no hero */
body:not(.home) .hwf-nav {
    background: rgba(26, 58, 42, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
body:not(.home) #content {
    padding-top: 110px;
}
body.page-template-page-contact #content,
body.page-template-page-contact-us #content,
body.page-template-page-about-us #content,
body.page-template-page-services #content {
    padding-top: 0;
}
.nav-brand {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    text-decoration: none;
}
.nav-logo {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.2rem;
    color: var(--forest-deep);
    transition: transform 0.3s ease;
}
.nav-brand:hover .nav-logo { transform: rotate(10deg) scale(1.05); }
.nav-brand:hover { text-decoration: none; }
.nav-brand .custom-logo-link { display: block; }
.nav-brand .custom-logo { display: block; height: auto; }
.nav-brand-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem; font-weight: 600;
    color: var(--gold); letter-spacing: 2.5px;
}
.nav-links {
    display: flex; gap: 36px; list-style: none;
    margin: 0; padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a,
.nav-links li a {
    text-decoration: none; color: rgba(255,255,255,0.8);
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
    position: relative; transition: color 0.3s;
    padding: 0;
    background: none;
    border: none;
}
.nav-links a::after,
.nav-links li a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: width 0.4s ease;
}
.nav-links a:hover,
.nav-links li a:hover { color: var(--white); text-decoration: none; }
.nav-links a:hover::after,
.nav-links li a:hover::after { width: 100%; }
.nav-cta,
.nav-links li:last-child a {
    padding: 10px 28px !important; border: 1.5px solid var(--gold);
    color: var(--gold) !important; border-radius: 2px;
    transition: all 0.4s ease !important;
    letter-spacing: 1.5px !important;
}
.nav-cta:hover,
.nav-links li:last-child a:hover {
    background: var(--gold) !important;
    color: var(--forest-deep) !important;
}
.nav-cta::after,
.nav-links li:last-child a::after { display: none !important; }

.menu-toggle {
    display: none; cursor: pointer;
    flex-direction: column; gap: 5px;
    background: none; border: none; padding: 5px;
}
.menu-toggle span {
    width: 28px; height: 2px;
    background: var(--white);
    transition: 0.3s;
    display: block;
}

/* Mobile nav open state */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26, 58, 42, 0.98);
    padding: 20px 30px;
    gap: 16px;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 40%, #1e4430 100%);
    overflow: hidden;
}
/* Hero Slider */
.hero-slider {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slider-dots {
    position: absolute; bottom: 80px;
    left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 12px;
}
.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-dot.active,
.hero-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}
/* Hero Text Slides */
.hero-text-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1400px; margin: 0 auto;
    padding: 140px 80px 100px;
}
.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-text-slide .hero-left,
.hero-text-slide .hero-right {
    opacity: 1;
    animation: none;
}
.hero-text-slide.active .hero-left {
    animation: fadeUp 0.8s 0.2s both;
}
.hero-text-slide.active .hero-right {
    animation: fadeUp 0.8s 0.4s both;
}

/* Overlay */
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 38, 26, 0.7);
    z-index: 1;
}
.hero.hero-has-slider .hero-overlay {
    background: rgba(15, 38, 26, 0.55);
}
.hero:not(.hero-has-slider) .hero-overlay {
    display: none;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 122, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(127, 176, 155, 0.04) 0%, transparent 40%);
}
.hero-grain {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-deco-line {
    position: absolute; left: 60px; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, rgba(200,168,78,0.2) 30%, rgba(200,168,78,0.2) 70%, transparent);
}
.hero-deco-line:nth-child(2) { left: auto; right: 60px; }

.hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto;
    padding: 140px 80px 100px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    width: 100%;
}
/* When slider is active, text slides are absolute positioned */
.hero.hero-has-slider .hero-content.hero-text-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 140px 80px 100px;
}
.hero.hero-has-slider .hero-content.hero-text-slide > .hero-left,
.hero.hero-has-slider .hero-content.hero-text-slide > .hero-right {
    max-width: 1400px;
}
.hero-left { opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
}
.hero-tag::before {
    content: ''; width: 40px; height: 1px;
    background: var(--gold);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600; line-height: 1.15;
    color: var(--white); margin-bottom: 28px;
}
.hero-title em {
    font-style: italic; color: var(--gold);
}
.hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 520px; margin-bottom: 42px;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 0.82rem;
    font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer;
    transition: all 0.4s ease; position: relative;
    font-family: 'DM Sans', sans-serif;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: var(--gold); color: var(--forest-deep);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,168,78,0.3);
    color: var(--forest-deep);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
    color: var(--white);
}

.hero-right {
    position: relative;
    opacity: 0; animation: fadeUp 1s 1s forwards;
}
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; padding: 48px;
    backdrop-filter: blur(10px);
    position: relative;
}
.hero-card::before {
    content: ''; position: absolute;
    top: -1px; left: 40px; width: 80px; height: 2px;
    background: var(--gold);
}
.hero-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold); line-height: 1;
    margin-bottom: 8px;
}
.hero-stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 500;
}
.hero-quote {
    margin-top: 36px; padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.hero-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.15rem;
    color: rgba(255,255,255,0.7); line-height: 1.6;
}
.hero-quote span {
    display: block; margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal; font-size: 0.75rem;
    color: var(--gold); letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute; bottom: 40px;
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(200,168,78,0.5), transparent);
}

/* ==========================================================================
   Mission Strip
   ========================================================================== */
.mission-strip {
    background: var(--gold);
    padding: 28px 60px;
    overflow: hidden; position: relative;
}
.mission-marquee {
    display: flex; gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.mission-marquee span {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 500;
    color: var(--forest-deep);
    letter-spacing: 2px; text-transform: uppercase;
    display: flex; align-items: center; gap: 60px;
}
.mission-marquee span::after {
    content: '\2666'; font-size: 0.5rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 140px 80px;
    max-width: 1400px; margin: 0 auto;
}
.section-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 60px;
    margin-bottom: 80px;
}
.section-tag {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--emerald);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.section-tag::before {
    content: ''; width: 30px; height: 1.5px;
    background: var(--emerald);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600; line-height: 1.2;
    color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--emerald); }
.section-desc {
    max-width: 480px;
    font-size: 1rem; line-height: 1.9;
    color: var(--text-light); font-weight: 300;
}
.about-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.about-card {
    background: var(--white);
    padding: 48px 36px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative; overflow: hidden;
    transition: all 0.5s ease;
}
.about-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--emerald);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.about-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--sage-light), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 24px;
    color: var(--white);
}
.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 14px;
}
.about-card p {
    font-size: 0.92rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
}

/* ==========================================================================
   Sectors Section
   ========================================================================== */
.sectors {
    background: var(--forest-deep);
    padding: 140px 80px;
    position: relative; overflow: hidden;
}
.sectors::before {
    content: ''; position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(45,122,79,0.08), transparent);
}
.sectors .section-tag { color: var(--gold); }
.sectors .section-tag::before { background: var(--gold); }
.sectors .section-title { color: var(--white); }
.sectors .section-title em { color: var(--gold); }
.sectors .section-desc { color: rgba(255,255,255,0.5); }
.sectors-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.sectors-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 80px;
}
.sector-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.sector-item::before {
    content: ''; position: absolute;
    inset: 0; background: linear-gradient(135deg, rgba(200,168,78,0.08), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.sector-item:hover::before { opacity: 1; }
.sector-item:hover {
    border-color: rgba(200,168,78,0.2);
    transform: translateY(-4px);
}
.sector-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: rgba(200,168,78,0.15);
    margin-bottom: 16px; line-height: 1;
}
.sector-item h4 {
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}
.sector-item p {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(255,255,255,0.4); font-weight: 300;
}

/* ==========================================================================
   Impact Section
   ========================================================================== */
.impact {
    padding: 140px 80px;
    max-width: 1400px; margin: 0 auto;
}
.impact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.impact-visual {
    position: relative;
}
.impact-img-main {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2d7a4f 0%, #1a3a2a 50%, #c8a84e 100%);
    border-radius: 2px; position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.impact-img-content {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.impact-img-icon {
    font-size: 4.5rem; color: var(--white); opacity: 0.9;
}
.impact-img-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--white);
    opacity: 0.8; letter-spacing: 2px;
}
.impact-img-overlay {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--gold); padding: 32px 40px;
    display: flex; flex-direction: column; align-items: center;
}
.impact-img-overlay .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--forest-deep); line-height: 1;
}
.impact-img-overlay .label {
    font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--forest-deep);
    font-weight: 600; margin-top: 6px;
}
.impact-content .section-tag { margin-bottom: 16px; }
.impact-content .section-title { margin-bottom: 24px; }
.impact-content .section-desc { max-width: 100%; margin-bottom: 40px; }
.impact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 0; padding: 0; }
.impact-list li {
    display: flex; align-items: flex-start; gap: 16px;
    font-size: 0.95rem; color: var(--text);
    line-height: 1.7;
}
.impact-list li::before {
    content: '\2714'; flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(45,122,79,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--emerald);
    font-weight: 700; margin-top: 2px;
}

/* ==========================================================================
   Coverage Section
   ========================================================================== */
.coverage {
    background: var(--cream-warm);
    padding: 140px 80px;
}
.coverage-inner {
    max-width: 1400px; margin: 0 auto;
    text-align: center;
}
.coverage-inner .section-tag { justify-content: center; }
.coverage-inner .section-tag::before { display: none; }
.coverage-inner .section-title { margin-bottom: 16px; }
.coverage-inner .section-desc {
    max-width: 600px; margin: 0 auto 60px;
}
.districts-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 16px; max-width: 1100px; margin: 0 auto;
}
.district-chip {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 20px 12px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}
.district-chip::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--emerald); transform: scaleX(0);
    transition: transform 0.3s ease;
}
.district-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.district-chip:hover::before { transform: scaleX(1); }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative; padding: 160px 80px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    text-align: center; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(200,168,78,0.06), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(45,122,79,0.08), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner .section-tag { justify-content: center; color: var(--gold); }
.cta-inner .section-tag::before { background: var(--gold); }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600; color: var(--white);
    line-height: 1.2; margin: 16px 0 24px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.55); font-weight: 300;
    margin-bottom: 48px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services - WP Editor Content */
.services-wp-content {
    padding: 80px 80px;
    padding-top: 120px;
    background: #fff;
}
.services-wp-content-inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #333;
}
.services-wp-content-inner h1,
.services-wp-content-inner h2,
.services-wp-content-inner h3,
.services-wp-content-inner h4 {
    color: #0a1a10;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.services-wp-content-inner p { margin-bottom: 1.2em; }
.services-wp-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1em 0;
}
.services-wp-content-inner ul,
.services-wp-content-inner ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}
@media (max-width: 768px) {
    .services-wp-content { padding: 48px 20px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hwf-footer {
    background: #0a1a10;
    padding: 80px 80px 40px;
}
.footer-inner {
    max-width: 1400px; margin: 0 auto;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-brand-text {
    font-size: 1.1rem; margin-bottom: 16px; display: block;
    color: var(--white);
}
.footer-brand p {
    font-size: 0.88rem; line-height: 1.8;
    color: rgba(255,255,255,0.35); font-weight: 300;
    max-width: 320px;
}
.footer-col h5 {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a,
.footer-col ul li a {
    text-decoration: none; color: rgba(255,255,255,0.4);
    font-size: 0.88rem; transition: color 0.3s;
    background: none; border: none; padding: 0;
}
.footer-col ul a:hover,
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-contact-item {
    font-size: 0.88rem; color: rgba(255,255,255,0.4);
    margin-bottom: 10px; line-height: 1.6;
}
.footer-contact-item strong {
    display: block; color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    display: flex; justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem; text-decoration: none;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ==========================================================================
   WordPress Content Section (for page content on front page)
   ========================================================================== */
.wp-content-section {
    padding: 80px 0;
    max-width: 1400px; margin: 0 auto;
}
.wp-content-section .container {
    max-width: 1400px; margin: 0 auto;
    padding: 0 80px;
}

/* ==========================================================================
   Typography (for non-front-page templates)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600; line-height: 1.3;
    margin-top: 0; margin-bottom: 0.5em;
    color: var(--charcoal);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-top: 0; margin-bottom: var(--spacing-unit); }

a { color: var(--emerald); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--emerald-light); }

/* ==========================================================================
   Content (non-front-page templates)
   ========================================================================== */
.container {
    width: 100%; max-width: var(--container-width);
    margin: 0 auto; padding: 0 80px;
}

.site-main:not(.front-page) {
    padding: 120px 0 80px;
    max-width: 1400px; margin: 0 auto;
}

.site-main:not(.front-page) .container {
    max-width: var(--container-width);
}

.entry-header { margin-bottom: var(--spacing-unit); }
.entry-title { margin-bottom: 0.25em; color: var(--charcoal); }
.entry-title a { color: var(--charcoal); text-decoration: none; }
.entry-title a:hover { color: var(--emerald); }
.entry-meta { color: var(--text-light); font-size: 0.875rem; }
.entry-meta a { color: var(--text-light); }
.entry-content { margin-bottom: var(--spacing-unit); }
.entry-content img { max-width: 100%; height: auto; }
.entry-footer {
    padding-top: var(--spacing-unit);
    border-top: 1px solid var(--color-border);
    color: var(--text-light); font-size: 0.875rem;
}

.post-thumbnail { margin-bottom: var(--spacing-unit); }
.post-thumbnail img { display: block; width: 100%; height: auto; }

/* Post Navigation */
.post-navigation, .posts-navigation {
    margin: 2rem 0; padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.nav-links {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.nav-previous, .nav-next { flex: 1; min-width: 200px; }
.nav-next { text-align: right; }

/* Pagination */
.pagination { margin: 2rem 0; text-align: center; }
.pagination .page-numbers {
    display: inline-block; padding: 0.5rem 0.75rem;
    margin: 0 0.25rem; border: 1px solid var(--color-border);
}
.pagination .page-numbers.current {
    background-color: var(--emerald);
    border-color: var(--emerald); color: var(--white);
}

/* Comments */
.comments-area {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment {
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.comment-list .children { list-style: none; margin-left: 2rem; padding: 0; }
.comment-author { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.comment-author .avatar { border-radius: 50%; }

/* Widgets */
.widget { margin-bottom: 2rem; }
.widget-title {
    margin-bottom: 1rem; padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--emerald);
    font-size: 1.125rem;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 0.5rem 0; border-bottom: 0.5px solid var(--color-border); }
.widget li:last-child { border-bottom: none; }

/* Search */
.search-form { display: flex; }
.search-form .search-field {
    flex: 1; padding: 0.5rem;
    border: 1px solid var(--color-border); border-right: none;
}
.search-form .search-submit {
    padding: 0.5rem 1rem; background-color: var(--emerald);
    border: 1px solid var(--emerald); color: var(--white); cursor: pointer;
}

/* Forms */
button, input[type="button"], input[type="submit"], .button {
    display: inline-block; padding: 0.75rem 1.5rem;
    background-color: var(--emerald); border: none;
    color: var(--white); font-size: 1rem;
    font-family: inherit; cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover, input[type="button"]:hover, input[type="submit"]:hover, .button:hover {
    background-color: var(--emerald-light);
}

input[type="text"], input[type="email"], input[type="url"],
input[type="password"], input[type="search"], input[type="number"],
input[type="tel"], textarea, select {
    padding: 0.5rem; border: 1px solid var(--color-border);
    font-family: inherit; font-size: 1rem;
    width: 100%; max-width: 100%;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: var(--emerald);
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.basicpro-contact-form { max-width: 800px; margin: 0 auto; }
.basicpro-contact-form .form-label { font-weight: 500; margin-bottom: 0.5rem; display: block; }
.basicpro-contact-form .required { color: #dc3545; }
.basicpro-contact-form .form-control {
    width: 100%; padding: 0.75rem;
    border: 1px solid var(--color-border); border-radius: 4px;
    font-size: 1rem; font-family: var(--font-body);
    transition: border-color 0.3s ease;
}
.basicpro-contact-form .form-control:focus {
    outline: none; border-color: var(--emerald);
    box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.1);
}
.basicpro-contact-form .alert { padding: 1rem; margin-bottom: 1.5rem; border-radius: 4px; border: 1px solid transparent; }
.basicpro-contact-form .alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.basicpro-contact-form .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }

/* ==========================================================================
   Contact Page
   ========================================================================== */
/* Hero Banner */
.contact-hero {
    position: relative;
    padding: 160px 80px 100px;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 40%, #1e4430 100%);
    text-align: center;
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 122, 79, 0.1) 0%, transparent 50%);
}
.contact-hero-content {
    position: relative; z-index: 2;
    max-width: 700px; margin: 0 auto;
}
.contact-hero .section-tag {
    color: var(--gold); justify-content: center;
}
.contact-hero .section-tag::before { background: var(--gold); }
.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600; color: var(--white);
    line-height: 1.2; margin: 16px 0 20px;
}
.contact-hero-title em { font-style: italic; color: var(--gold); }
.contact-hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.55); font-weight: 300;
}

/* Info Cards */
.contact-info-section {
    padding: 80px 80px 40px;
    max-width: 1400px; margin: 0 auto;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--emerald);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.contact-info-card:hover::before { transform: scaleX(1); }
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}
.contact-info-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--sage-light), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--white); font-size: 1.2rem;
}
.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 12px;
}
.contact-info-card p {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--text-light); margin-bottom: 4px;
}
.contact-info-card a {
    color: var(--text-light); text-decoration: none;
    transition: color 0.3s;
}
.contact-info-card a:hover { color: var(--emerald); }

/* Main Section (Form + Sidebar) */
.contact-main-section {
    padding: 40px 80px 100px;
    max-width: 1400px; margin: 0 auto;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-form-wrapper .section-tag { margin-bottom: 8px; }
.contact-form-wrapper .section-title { margin-bottom: 12px; }
.contact-form-desc {
    font-size: 0.95rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
    margin-bottom: 32px;
}
.contact-form-wrapper .basicpro-contact-form {
    max-width: 100%; margin: 0;
}
.contact-form-wrapper .form-group { margin-bottom: 20px; }
.contact-form-wrapper .form-control {
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 2px;
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s ease;
}
.contact-form-wrapper .form-control:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.08);
}
.contact-form-wrapper .btn-primary {
    background: var(--gold); color: var(--forest-deep);
    padding: 16px 40px; font-size: 0.82rem;
    font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; border: none;
    cursor: pointer; transition: all 0.4s ease;
    font-family: 'DM Sans', sans-serif;
}
.contact-form-wrapper .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,168,78,0.3);
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.contact-map {
    border-radius: 4px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-map iframe { display: block; }
.contact-social-box {
    background: var(--forest-deep);
    padding: 36px; border-radius: 4px;
}
.contact-social-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--white); margin-bottom: 10px;
}
.contact-social-box p {
    font-size: 0.88rem; line-height: 1.7;
    color: rgba(255,255,255,0.45); font-weight: 300;
    margin-bottom: 20px;
}
.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s ease;
}
.contact-socials a:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
}

/* CTA Strip */
.contact-cta {
    background: var(--cream-warm);
    padding: 80px 80px;
    text-align: center;
}
.contact-cta-inner {
    max-width: 700px; margin: 0 auto;
}
.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600; color: var(--charcoal);
    margin-bottom: 16px;
}
.contact-cta h2 em { font-style: italic; color: var(--emerald); }
.contact-cta p {
    font-size: 1rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
    margin-bottom: 32px;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-hero { padding: 140px 40px 80px; }
    .contact-info-section { padding: 60px 40px 30px; }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main-section { padding: 30px 40px 80px; }
    .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-cta { padding: 60px 40px; }
}
@media (max-width: 768px) {
    .contact-hero { padding: 120px 24px 60px; }
    .contact-info-section { padding: 40px 24px 20px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-main-section { padding: 20px 24px 60px; }
    .contact-cta { padding: 50px 24px; }
}

/* ==========================================================================
   About Us Page
   ========================================================================== */
/* Hero Banner */
.about-hero {
    position: relative;
    padding: 160px 80px 100px;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 40%, #1e4430 100%);
    text-align: center;
    overflow: hidden;
}
.about-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 122, 79, 0.1) 0%, transparent 50%);
}
.about-hero-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: 0 auto;
}
.about-hero .section-tag {
    color: var(--gold); justify-content: center;
}
.about-hero .section-tag::before { background: var(--gold); }
.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600; color: var(--white);
    line-height: 1.2; margin: 16px 0 24px;
}
.about-hero-title em { font-style: italic; color: var(--gold); }
.about-hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.55); font-weight: 300;
    max-width: 650px; margin: 0 auto;
}

/* Our Story */
.about-story {
    padding: 100px 80px;
    max-width: 1400px; margin: 0 auto;
}
.about-story-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px; align-items: center;
}
.about-story-content .section-tag { margin-bottom: 12px; }
.about-story-content .section-title { margin-bottom: 24px; }
.about-story-content p {
    font-size: 1rem; line-height: 1.9;
    color: var(--text-light); font-weight: 300;
    margin-bottom: 16px;
}
.about-story-content strong { color: var(--charcoal); font-weight: 600; }
.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-stat-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.about-stat-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.about-stat-card:hover::before { transform: scaleX(1); }
.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}
.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 700;
    color: var(--gold); line-height: 1;
    margin-bottom: 8px;
}
.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* What We Do */
.about-what-we-do {
    background: var(--cream-warm);
    padding: 100px 80px;
}
.about-what-inner {
    max-width: 1400px; margin: 0 auto;
}

/* Impact Section */
.about-impact-section {
    padding: 100px 80px;
    max-width: 1400px; margin: 0 auto;
}
.about-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
}
.about-impact-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.about-impact-item::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--emerald);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.about-impact-item:hover::before { transform: scaleX(1); }
.about-impact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}
.about-impact-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--sage-light), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--white); font-size: 1.1rem;
}
.about-impact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 10px;
}
.about-impact-item p {
    font-size: 0.88rem; line-height: 1.7;
    color: var(--text-light); font-weight: 300;
}

/* Quote Section */
.about-quote-section {
    background: var(--forest-deep);
    padding: 100px 80px;
    text-align: center;
}
.about-quote-inner {
    max-width: 750px; margin: 0 auto;
}
.about-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; color: var(--gold);
    line-height: 0.5; margin-bottom: 20px;
    opacity: 0.5;
}
.about-quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6; margin: 0;
    border: none; padding: 0;
}
.about-quote-attr {
    display: block; margin-top: 20px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal; font-size: 0.78rem;
    color: var(--gold); letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Page Extra Content (WP editor content area) */
.page-extra-content {
    padding: 80px 80px;
    max-width: 1400px; margin: 0 auto;
}
.page-extra-inner {
    max-width: 1400px; margin: 0 auto;
}
.page-extra-content .entry-content img { max-width: 100%; height: auto; }

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero { padding: 140px 40px 80px; }
    .about-story { padding: 80px 40px; }
    .about-story-inner { grid-template-columns: 1fr; }
    .about-what-we-do { padding: 80px 40px; }
    .about-impact-section { padding: 80px 40px; }
    .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
    .about-quote-section { padding: 80px 40px; }
}
@media (max-width: 768px) {
    .about-hero { padding: 120px 24px 60px; }
    .about-story { padding: 60px 24px; }
    .about-story-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-what-we-do { padding: 60px 24px; }
    .about-impact-section { padding: 60px 24px; }
    .about-impact-grid { grid-template-columns: 1fr; }
    .about-quote-section { padding: 60px 24px; }
    .about-quote-section blockquote { font-size: 1.2rem; }
}

/* ==========================================================================
   Services Page
   ========================================================================== */
/* Hero */
.services-hero {
    position: relative;
    padding: 160px 80px 100px;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 40%, #1e4430 100%);
    text-align: center;
    overflow: hidden;
}
.services-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 122, 79, 0.1) 0%, transparent 50%);
}
.services-hero-content {
    position: relative; z-index: 2;
    max-width: 750px; margin: 0 auto;
}
.services-hero .section-tag {
    color: var(--gold); justify-content: center;
}
.services-hero .section-tag::before { background: var(--gold); }
.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600; color: var(--white);
    line-height: 1.2; margin: 16px 0 24px;
}
.services-hero-title em { font-style: italic; color: var(--gold); }
.services-hero-desc {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.55); font-weight: 300;
    max-width: 620px; margin: 0 auto;
}

/* Core Pillars */
.services-pillars {
    padding: 100px 80px;
    max-width: 1400px; margin: 0 auto;
}
.services-pillars-inner { max-width: 1400px; margin: 0 auto; }
.services-pillars-grid {
    display: flex; flex-direction: column;
    gap: 28px;
}
.services-pillar-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.services-pillar-card::before {
    content: ''; position: absolute;
    left: 0; top: 0; width: 4px; height: 100%;
    background: var(--emerald);
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.5s ease;
}
.services-pillar-card:hover::before { transform: scaleY(1); }
.services-pillar-card:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}
.services-pillar-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--sage-light), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.5rem;
    flex-shrink: 0;
}
.services-pillar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 12px;
}
.services-pillar-content p {
    font-size: 0.95rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
    margin-bottom: 16px;
}
.services-pillar-content ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.services-pillar-content ul li {
    font-size: 0.88rem; color: var(--text);
    padding-left: 20px; position: relative;
    line-height: 1.6;
}
.services-pillar-content ul li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free';
    font-weight: 900; font-size: 0.7rem;
    color: var(--emerald);
    position: absolute; left: 0; top: 3px;
}

/* Detailed Services */
.services-detailed {
    background: var(--cream-warm);
    padding: 100px 80px;
}
.services-detailed-inner {
    max-width: 1400px; margin: 0 auto;
}
.services-row {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: 28px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.services-row:last-child { border-bottom: none; }
.services-row:hover {
    padding-left: 12px;
}
.services-row-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700;
    color: rgba(45, 122, 79, 0.15);
    line-height: 1;
}
.services-row-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 8px;
}
.services-row-content p {
    font-size: 0.92rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
}
.services-row-icon {
    width: 52px; height: 52px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald); font-size: 1.1rem;
    transition: all 0.4s ease;
}
.services-row:hover .services-row-icon {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-hero { padding: 140px 40px 80px; }
    .services-pillars { padding: 80px 40px; }
    .services-pillar-content ul { grid-template-columns: 1fr; }
    .services-detailed { padding: 80px 40px; }
}
@media (max-width: 768px) {
    .services-hero { padding: 120px 24px 60px; }
    .services-pillars { padding: 60px 24px; }
    .services-pillar-card {
        grid-template-columns: 1fr;
        gap: 20px; padding: 32px 24px;
    }
    .services-detailed { padding: 60px 24px; }
    .services-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .services-row-num { font-size: 1.4rem; }
    .services-row-icon { display: none; }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%); height: 1px; margin: -1px;
    overflow: hidden; padding: 0; position: absolute !important;
    width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1; border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important; clip-path: none;
    color: #21759b; display: block;
    font-size: 0.875rem; font-weight: 700;
    height: auto; left: 5px; line-height: normal;
    padding: 15px 23px 14px; text-decoration: none;
    top: 5px; width: auto; z-index: 100000;
}

.alignleft { float: left; margin-right: 1rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.clearfix::after { content: ""; display: table; clear: both; }

/* WordPress core */
.wp-caption { max-width: 100%; margin-bottom: 1rem; }
.wp-caption img { display: block; max-width: 100%; height: auto; }
.wp-caption-text, figcaption, .gallery-caption {
    margin-top: 0.5rem; font-size: 0.875rem;
    color: var(--text-light); text-align: center;
}
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.gallery-item { margin: 0; }
.gallery-item img { display: block; width: 100%; height: auto; }

.alignwide { max-width: calc(var(--container-width) + 100px); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

/* 404 */
.error-404 { text-align: center; padding: 4rem 0; }
.error-404 .page-title { font-size: 4rem; color: var(--emerald); }

/* ==========================================================================
   Navigation (non-front-page - Bootstrap fallback styles)
   ========================================================================== */
.main-navigation {
    background-color: var(--forest);
    border-bottom: none;
    padding: 0;
}
.main-navigation .container { padding: 0 50px; }
.navbar-toggler { border: none; background-color: rgba(255,255,255,0.1); padding: 0.5rem 0.75rem; }
.navbar-toggler:hover { background-color: rgba(255,255,255,0.2); }
.navbar-toggler:focus { box-shadow: none; outline: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em; height: 1.5em;
}
.navbar-nav .nav-link, .navbar-nav a {
    color: rgba(255,255,255,0.8); font-size: 0.9375rem;
    transition: all 0.3s ease; text-decoration: none;
}
.navbar-nav .nav-link:hover, .navbar-nav a:hover,
.navbar-nav .current-menu-item > a {
    background-color: var(--emerald); color: var(--white) !important;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    *, *::before, *::after {
        background: transparent !important; color: #000 !important;
        box-shadow: none !important; text-shadow: none !important;
    }
    a, a:visited { text-decoration: underline; }
    a[href]::after { content: " (" attr(href) ")"; }
    .hwf-nav, .preloader, .hwf-footer, .comments-area { display: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hwf-nav { padding: 16px 30px; }
    .hero-text-slide,
    .hero.hero-has-slider .hero-content.hero-text-slide {
        grid-template-columns: 1fr; padding: 120px 40px 80px; gap: 50px;
    }
    .hwf-nav.scrolled { padding: 12px 30px; }
    .hero-content {
        grid-template-columns: 1fr; padding: 120px 40px 80px;
        gap: 50px;
    }
    .about, .impact, .coverage, .cta { padding: 100px 40px; }
    .sectors { padding: 100px 40px; }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: 1fr; gap: 50px; }
    .districts-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section-header { flex-direction: column; gap: 20px; }
    .container { padding: 0 40px; }
    .wp-content-section .container { padding: 0 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero-content { padding: 100px 24px 60px; }
    .hero-text-slide,
    .hero.hero-has-slider .hero-content.hero-text-slide {
        grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 30px;
    }
    .hero-stat-grid { gap: 20px; }
    .hero-stat-num { font-size: 2.2rem; }
    .hero-card { padding: 32px 24px; }
    .about, .impact, .coverage, .cta, .sectors { padding: 80px 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .districts-grid { grid-template-columns: repeat(3, 1fr); }
    .hwf-footer { padding: 60px 24px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .hero-deco-line { display: none; }
    .container { padding: 0 24px; }
    .wp-content-section .container { padding: 0 24px; }
    .site-main:not(.front-page) { padding: 100px 0 60px; }
    .mission-strip { padding: 20px 24px; }
}
