@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --green-dark:   #1B5E20;
    --green-mid:    #2E7D32;
    --green-light:  #4CAF50;
    --green-pale:   #F1F8F2;
    --green-tint:   #E8F5E9;
    --text-primary:   #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted:     #718096;
    --white:    #ffffff;
    --bg-light:   #f8f9f7;
    --bg-section: #f3f5f2;
    --border:     #dde4d9;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
    --shadow-md:  0 4px 14px rgba(0,0,0,0.09);
    --shadow-lg:  0 8px 28px rgba(0,0,0,0.12);
    --radius:     10px;
    --radius-sm:  6px;
    --radius-lg:  16px;
    --t:          0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(27,94,32,0.45);
    outline-offset: 2px;
}

/* ─── HEADER ─────────────────────────────────── */
.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 72px;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t);
}

.header.scrolled {
    box-shadow: 0 2px 18px rgba(0,0,0,0.09);
    border-bottom-color: transparent;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 72px;
}

.logo-section { display: flex; align-items: center; }

.logo-section a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity var(--t);
}

.logo-section a:hover { opacity: 0.8; }

.logo-section img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.nav-section { display: flex; align-items: center; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    display: block;
    transition: color var(--t), background var(--t);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green-dark);
    background: var(--green-pale);
}

.language-selector { display: none !important; }

.btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
    margin-left: 1rem;
    position: static;
    transform: none;
    overflow: visible;
    font-size: 0;
}

.btn .icon { position: static; width: auto; height: auto; display: flex; }
.btn .text { display: none; }
.btn:hover { background: var(--green-pale); border-color: var(--green-dark); color: var(--green-dark); transform: none; box-shadow: none; }
.btn:hover .icon { width: auto; }
.btn:hover .text { opacity: 0; }
.btn.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* ─── MOBILE MENU ────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 272px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    z-index: 9999;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
    border-left: 1px solid var(--border);
}

.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.38);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.32s ease;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.975rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--t);
    border-bottom: 1px solid var(--bg-section);
}

.mobile-nav-menu a:hover {
    color: var(--green-dark);
    background: var(--green-pale);
    padding-left: 1.5rem;
}

/* ─── HERO ───────────────────────────────────── */
.hero-banner {
    position: relative;
    height: 74vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
    background: #18251a;
}

.slideshow-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.58) 100%);
}

.hero-textbox {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 740px;
    padding: 0 2rem;
    animation: heroUp 0.75s ease both;
}

@keyframes heroUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-textbox h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-textbox p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--green-dark);
    border: 2px solid var(--green-dark);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all var(--t);
    min-height: 44px;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,94,32,0.38);
}

.cta-secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.65);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    box-shadow: none;
}

.slideshow-indicators {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--t);
    border: none;
    padding: 0;
    min-height: unset;
    min-width: unset;
}

.indicator.active {
    background: var(--white);
    width: 22px;
    border-radius: 4px;
}

/* ─── SHARED ─────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ─── ABOUT ──────────────────────────────────── */
.about {
    padding: 88px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.025rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text p { margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--t);
}

.stat-card:hover {
    border-color: var(--green-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
    line-height: 1;
}

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

/* ─── CLIENTS ────────────────────────────────── */
.clients-section {
    padding: 88px 0;
    background: var(--bg-light);
}

.clients-section > .container > h3 {
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted) !important;
    font-size: 1rem;
    font-weight: 400;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.client-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green-dark);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity var(--t);
}

.client-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.client-card:hover::before { opacity: 1; }

.client-icon {
    width: 54px;
    height: 54px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--t);
}

.client-card:hover .client-icon {
    background: var(--green-dark);
    transform: none;
    rotate: none;
}

.client-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--green-dark);
    transition: stroke var(--t);
}

.client-card:hover .client-icon svg { stroke: var(--white); }

.client-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.client-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.client-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.875rem;
}

.client-features li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
}

.client-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-dark);
}

/* ─── STATS ──────────────────────────────────── */
.stats-section {
    background: var(--green-dark);
    padding: 88px 0;
}

.stats-section .section-title {
    color: var(--white) !important;
}

.stats-section .section-title::after {
    background: rgba(255,255,255,0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    transition: all var(--t);
}

.stat-item:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-3px);
}

.stat-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    stroke: rgba(255,255,255,0.88);
}

.stat-big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.68);
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* ─── LEADERSHIP ─────────────────────────────── */
.leadership-section {
    padding: 88px 0;
    background: var(--bg-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 880px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--t);
}

.leader-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.leader-avatar {
    width: 78px;
    height: 78px;
    background: var(--green-dark);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.leader-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.leader-title {
    font-size: 0.8rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.leader-contact {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--t);
    min-height: unset;
}

.contact-item:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: none;
}

.contact-icon {
    width: 15px;
    height: 15px;
    color: var(--green-dark);
    flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────── */
.services {
    padding: 88px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--t);
}

.service-card::before { display: none; }

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

.service-icon {
    width: 54px;
    height: 54px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem 0;
    transition: all var(--t);
    position: static;
}

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

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--green-dark);
    transition: stroke var(--t);
    position: static;
}

.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
    font-size: 1.025rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: static;
    z-index: auto;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.65;
    position: static;
}

.service-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.875rem;
    position: static;
}

.service-list li {
    padding: 0.28rem 0 0.28rem 1.2rem;
    font-size: 0.84rem;
    color: var(--text-secondary);
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-dark);
}

/* ─── CONTACT ────────────────────────────────── */
.contact {
    background: var(--bg-section);
    padding: 88px 0;
}

.contact .section-title { color: var(--text-primary) !important; }

.contact > .container > h3 {
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted) !important;
    font-size: 1rem;
    font-weight: 400;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.contact-form::before { display: none; }
.contact-form > * { position: static; z-index: auto; }

.contact-form h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 1.75rem;
    text-align: left;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group { position: relative; }

.input-wrapper {
    position: relative;
    overflow: visible;
}

.input-wrapper::before { display: none; }

.form-group input,
.form-group textarea,
.input-wrapper select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.7rem;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    transition: all var(--t);
    min-height: 44px;
    backdrop-filter: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--green-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
    transform: none;
}

.input-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.input-icon svg {
    width: 15px;
    height: 15px;
    color: var(--text-muted);
    transition: color var(--t);
}

.form-group input:focus ~ .input-icon svg,
.form-group textarea:focus ~ .input-icon svg {
    color: var(--green-dark);
    transform: none;
}

.form-group textarea {
    height: 116px;
    resize: vertical;
    padding-top: 0.8rem;
}

.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23718096' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.input-wrapper select:invalid { border-color: var(--border); }
.input-wrapper select:valid   { border-color: var(--border); }

.submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: var(--green-dark);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1rem;
    min-height: 48px;
    position: static;
    overflow: visible;
}

.submit-btn::before { display: none; }

.submit-btn:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27,94,32,0.3);
}

.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; pointer-events: none; }

.btn-text, .btn-icon { position: static; z-index: auto; }
.btn-icon svg { width: 17px; height: 17px; }
.submit-btn:hover .btn-icon { transform: none; }

.file-upload-wrapper { margin-top: 0; }

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t);
    width: 100%;
    font-size: 0.875rem;
    color: var(--text-secondary);
    min-height: 44px;
}

.file-upload-btn:hover {
    background: var(--green-pale);
    border-color: var(--green-dark);
    color: var(--green-dark);
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.6rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-top: 0.45rem;
    border: 1px solid var(--border);
}

.file-name { flex: 1; font-size: 0.875rem; color: var(--text-primary); font-weight: 500; }
.file-size { font-size: 0.8rem; color: var(--text-muted); }

.remove-file {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color var(--t);
}

.remove-file:hover { color: #c53030; }

.checkbox-wrapper { margin-top: 0.7rem; }

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
    padding-left: 0;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: static;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    transition: all var(--t);
    margin-top: 2px;
    display: block;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--green-dark);
    background: var(--green-pale);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 5px; top: 2px;
    width: 5px; height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after { display: block; }

.checkbox-text { color: var(--text-secondary); }
.checkbox-text a { color: var(--green-dark); text-decoration: underline; }

.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.map-header {
    padding: 1.5rem;
    background: var(--green-dark);
    color: var(--white);
}

.map-header h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.2rem; }
.map-header p { font-size: 0.875rem; opacity: 0.82; }

.map-embed { height: 420px; }

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
    background: #18201a;
    color: #b8c8ba;
    border-top: none;
}

.footer-main { padding: 4rem 0 2rem; }

.footer-top { text-align: center; margin-bottom: 3rem; }

.company-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.company-subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.company-card {
    background: rgba(255,255,255,0.04);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.07);
    transition: background var(--t);
}

.company-card:hover {
    background: rgba(255,255,255,0.07);
    transform: none;
    box-shadow: none;
}

.card-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.card-icon { width: 15px; height: 15px; color: var(--green-light); }

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    font-size: 0.875rem;
    padding: 0;
}

.detail-label {
    min-width: 82px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.detail-value { color: rgba(255,255,255,0.72); font-size: 0.875rem; }

.contact-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    padding: 0.45rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--t);
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    cursor: pointer;
    min-height: unset;
}

.contact-card .contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: none;
}

.contact-text { color: rgba(255,255,255,0.72); font-size: 0.875rem; font-weight: 500; }
.contact-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

.certifications-card { display: flex; flex-direction: column; gap: 0.55rem; }

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.04);
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--green-light);
    transition: background var(--t);
}

.cert-item:hover { background: rgba(255,255,255,0.07); transform: none; }

.cert-icon { width: 18px; height: 18px; color: var(--green-light); flex-shrink: 0; }
.cert-name { font-weight: 600; color: rgba(255,255,255,0.78); font-size: 0.875rem; }
.cert-desc { font-size: 0.775rem; color: rgba(255,255,255,0.42); }

.footer-bottom {
    background: rgba(0,0,0,0.22);
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.footer-links-container { background: none; padding: 0; border: none; box-shadow: none; }

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0;
    border: none;
    min-height: unset;
    display: inline;
    transition: color var(--t);
}

.footer-links a:hover { color: rgba(255,255,255,0.82); }

.accent-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    vertical-align: middle;
}

.copyright-container { background: none; padding: 0; border: none; box-shadow: none; }

.copyright { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    z-index: 99999;
    min-width: 320px;
    max-width: 92vw;
    opacity: 0;
    pointer-events: none;
    transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border);
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie-header { display: flex; align-items: center; gap: 0.75rem; }
.cookie-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.cookie-title { font-size: 0.975rem; font-weight: 600; color: var(--text-primary); margin: 0; }
.cookie-content { font-size: 0.875rem; color: var(--text-secondary); }
.cookie-text a { color: var(--green-dark); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.cookie-btn {
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t);
    min-height: 38px;
    font-family: 'Outfit', sans-serif;
}

.cookie-btn.accept  { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.cookie-btn.accept:hover { background: var(--green-mid); border-color: var(--green-mid); }
.cookie-btn.settings { background: var(--white); color: var(--green-dark); border-color: var(--green-dark); }
.cookie-btn.settings:hover { background: var(--green-pale); }
.cookie-btn.decline { background: var(--white); color: var(--text-muted); border-color: var(--border); }
.cookie-btn.decline:hover { background: var(--bg-light); color: var(--text-primary); }

/* ─── NOTIFICATIONS ──────────────────────────── */
.notification {
    position: fixed;
    top: 86px;
    right: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    max-width: 360px;
    animation: slideInRight 0.3s ease;
    border: 1px solid transparent;
    background: var(--white);
}

.notification-success { color: var(--green-dark); border-color: var(--green-dark); }
.notification-error   { color: #c53030; border-color: #fc8181; }
.notification-info    { color: #2b6cb0; border-color: #90cdf4; }

.notification-content { display: flex; align-items: center; gap: 0.75rem; }
.notification-message { flex: 1; font-weight: 500; font-size: 0.9rem; }

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.2rem;
    min-height: unset;
    min-width: unset;
    transition: color var(--t);
}

.notification-close:hover { color: var(--text-primary); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(100%); opacity: 0; }
}

.form-message {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    margin: 0.65rem 0;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-message.success {
    background: var(--green-pale);
    border: 1px solid rgba(27,94,32,0.28);
    color: var(--green-dark);
}

.form-message.error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
}

.success-popup {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
}

.success-popup h3 { color: var(--green-dark); font-size: 1.2rem; margin: 0.9rem 0 0.5rem; }
.success-popup p  { color: var(--text-secondary); font-size: 0.875rem; }

@keyframes popIn {
    from { transform: scale(0.75); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.click-to-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color var(--t);
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    min-height: unset;
    min-width: unset;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu  { display: none; }
    .btn       { display: flex; }

    .hero-banner { height: 80vh; min-height: 460px; }
    .hero-textbox h1 { font-size: 1.9rem; }
    .hero-textbox p  { font-size: 0.975rem; }
    .hero-cta-container { flex-direction: column; gap: 0.75rem; }
    .cta-button { width: 100%; text-align: center; }

    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .clients-grid  { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: 1fr; max-width: 440px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .contact-form { padding: 1.75rem; }
    .nav-container { padding: 0 1.25rem; }
    .about, .clients-section, .stats-section, .leadership-section,
    .services, .contact { padding: 64px 0; }
}

@media (max-width: 480px) {
    .hero-textbox h1 { font-size: 1.65rem; }
    .logo-section img { height: 38px; }
    .contact-form { padding: 1.25rem; }
    .cookie-banner { padding: 1.25rem; min-width: 0; }
    .cookie-buttons { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}

@media print {
    .header, .mobile-menu, .cookie-banner { display: none !important; }
    .hero-banner { margin-top: 0; }
    * { background: white !important; color: black !important; }
}