/* ── Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #1c6b30;
    --green-dark: #134820;
    --green-light: #eaf4ec;
    --orange: #e07520;
    --orange-dark: #b85d18;
    --navy: #192535;
    --navy-mid: #243448;
    --text: #1f2937;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
    --radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ───────────────────────────────────── */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    gap: 1.5rem;
}

.logo-img {
    height: 90px;
    width: auto;
    flex-shrink: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--border);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

@media (max-width: 900px) {
    nav ul {
        gap: 1rem;
    }
    .logo-img {
        height: 72px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        flex-wrap: wrap;
    }

    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid var(--border);
    }

    nav ul.open {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 0.65rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../images/Workers3.jpeg") center 30% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(19, 40, 28, 0.91) 0%,
        rgba(25, 37, 53, 0.78) 55%,
        rgba(25, 37, 53, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 4rem 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: #fff;
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 1.4rem;
    letter-spacing: -0.025em;
}

.hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    margin-bottom: 2.4rem;
    max-width: 540px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    .hero {
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    .hero p {
        font-size: 0.97rem;
    }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.82rem 1.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #f08830 0%,
        var(--orange) 100%
    );
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 117, 32, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 117, 32, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(
        135deg,
        #2d9447 0%,
        var(--green) 100%
    );
    color: #fff;
    box-shadow: 0 4px 14px rgba(28, 107, 48, 0.3);
}

.btn-green:hover {
    background: linear-gradient(
        135deg,
        var(--green) 0%,
        var(--green-dark) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 107, 48, 0.45);
}

/* ── STATS STRIP ──────────────────────────────── */
.stats-strip {
    background: linear-gradient(
        135deg,
        var(--green-dark) 0%,
        var(--green) 60%,
        #2a8a42 100%
    );
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--orange),
        transparent
    );
}

.stats-strip::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 500;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ── SECTIONS SHARED ──────────────────────────── */
section {
    padding: 5.5rem 0;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green);
    margin-bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.section-label::before {
    content: "";
    width: 22px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.workers-section .section-label::before,
.contact-section .section-label::before {
    background: rgba(255, 255, 255, 0.45);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 0.8rem;
    letter-spacing: -0.025em;
}

.section-sub {
    font-size: 1.08rem;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.75;
}

/* ── WHY US ───────────────────────────────────── */
.why-section {
    background: var(--bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 1.25rem;
}

.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition:
        box-shadow 0.25s,
        transform 0.25s,
        border-top-color 0.25s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-top-color: var(--green);
}

.why-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(
        135deg,
        var(--green-light) 0%,
        #e8f8ec 100%
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.55rem;
}

.why-card p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── ABOUT ────────────────────────────────────── */
.about-section {
    background: var(--bg);
    padding: 5.5rem 0;
}

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

.about-left p {
    color: var(--text-mid);
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.process-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.2rem 0 1rem;
}

.process-ol {
    list-style: none;
    counter-reset: steps;
}

.process-ol li {
    counter-increment: steps;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
}

.process-ol li:last-child {
    border-bottom: none;
}

.process-ol li::before {
    content: counter(steps);
    min-width: 26px;
    height: 26px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.values-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.value-item {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.2rem;
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── SECTORS ──────────────────────────────────── */
.sectors-section {
    background: var(--bg-alt);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.25rem;
}

.sector-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition:
        box-shadow 0.25s,
        transform 0.25s,
        border-top-color 0.25s;
}

.sector-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-top-color: var(--orange);
}

.sector-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(
        135deg,
        #fff3e8 0%,
        var(--green-light) 100%
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.1rem;
}

.sector-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.sector-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin: 1rem 0 0.55rem;
}

.sector-card ul {
    list-style: none;
}

.sector-card li {
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.sector-card li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.sector-skills {
    margin-top: 1.1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── WORKERS GALLERY ──────────────────────────── */
.workers-section {
    background: var(--navy);
    padding: 5.5rem 0;
}

.workers-section .section-label {
    color: var(--orange);
}
.workers-section .section-title {
    color: #fff;
}
.workers-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.workers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 0.9rem;
}

.worker-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

/* Layout: big | small | small / small | big */
.worker-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.worker-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.worker-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}
.worker-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}
.worker-item:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.worker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.worker-item:hover img {
    transform: scale(1.05);
}

.worker-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    padding: 2.5rem 1.25rem 1.1rem;
    color: #fff;
}

.worker-caption strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.worker-caption span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
    .workers-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    .worker-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .worker-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    .worker-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .worker-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    .worker-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 480px) {
    .workers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }
    .worker-item {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

/* ── CANDIDATES ───────────────────────────────── */
.candidates-section {
    background: var(--bg);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.candidate-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

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

.candidate-header {
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #2a3f5a 100%
    );
    padding: 1.5rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.candidate-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--orange));
}

.candidate-ref {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.candidate-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.candidate-body {
    padding: 1.5rem 1.75rem;
}

.candidate-body ul {
    list-style: none;
}

.candidate-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.97rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.candidate-body li:last-child {
    border-bottom: none;
}

.candidate-body li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.candidate-cta {
    padding: 0 1.75rem 1.75rem;
}

.candidate-cta .btn {
    display: block;
    text-align: center;
}

/* ── SERVICES ─────────────────────────────────── */
.services-section {
    background: var(--bg-alt);
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-col {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
}

.service-col-heading {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.service-col ul {
    list-style: none;
}

.service-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.97rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.service-col li:last-child {
    border-bottom: none;
}

.service-col li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.advantages-bar {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
}

.advantages-bar-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 1.1rem;
}

.advantages-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2.5rem;
}

.advantage-item {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.advantage-item::before {
    content: "✓";
    color: #4ade80;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── PROCESS ──────────────────────────────────── */
.process-section {
    background: var(--bg);
}

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

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

.step-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-sm);
}
.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(
        135deg,
        var(--green) 0%,
        var(--orange) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
}

.step-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ── FAQ ──────────────────────────────────────── */
.faq-section {
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    transition:
        border-left-color 0.25s,
        box-shadow 0.25s;
}

.faq-item:hover {
    border-left-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.55rem;
}

.faq-item p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────── */
.contact-section {
    background: var(--navy);
    padding: 5.5rem 0;
}

.contact-section .section-label {
    color: var(--orange);
}
.contact-section .section-title {
    color: #fff;
}
.contact-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: background 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.3rem;
    line-height: 1.65;
}

.contact-link {
    display: inline-block;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--orange);
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.contact-link:hover {
    background: var(--orange);
    color: #fff;
}

.contact-note {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-footer {
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.contact-footer a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-footer a:hover {
    color: #fff;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
}

footer a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--green-dark);
}

footer p + p {
    margin-top: 0.4rem;
}

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease-out,
        transform 0.55s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}
