:root {
    --navy: #102742;
    --navy-dark: #071827;
    --green: #4d902d;
    --orange: #f39a12;
    --blue: #244f9e;
    --red: #c8194f;
    --soft: #f4f8fb;
    --text: #263238;
    --muted: #6f7d86;
}

body {
    font-family: 'Tw Cen MT', sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-nav .nav-link,
.btn {
    font-family: "Segoe UI", Arial, sans-serif;
}

a {
    text-decoration: none;
}

/* NAVBAR */
.field-navbar {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(16, 39, 66, 0.12);
    border-bottom: 5px solid var(--green);
    z-index: 999;
}

.field-navbar::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--green), var(--orange), var(--blue), var(--red));
}

.navbar-brand img {
    height: 58px;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-weight: 700;
    padding: 13px 15px;
    position: relative;
    transition: 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--orange);
}

.navbar-nav .nav-link.active {
    color: var(--orange);
    background: rgba(243, 154, 18, 0.12);
    border-radius: 10%;
    padding:5px;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 6px;
    width: 0;
    height: 3px;
    background: var(--green);
    border-radius: 20px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 30px;
}

.navbar-nav .nav-link.active::before {
    display: none;
}

.nav-contact-btn {
    background: var(--green);
    color: #fff;
    border-radius: 50px;
    padding: 11px 24px;
    font-weight: 800;
    margin-left: 12px;
    box-shadow: 0 12px 25px rgba(77, 144, 45, 0.25);
}

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

/* HOVER MEGA MENU */
.mega-parent {
    position: static;
}

.mega-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 0.25s ease;
    border: none;
    border-radius: 26px;
    padding: 34px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(16, 39, 66, 0.18);
    left: 50%;
    top: 78px;
    width: min(950px, calc(100vw - 40px));
    margin-left: 0;
    translate: -50% 0;
}

.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.about-menu {
    max-width: 880px;
}

.methods-menu {
    max-width: 960px;
}

.services-menu {
    max-width: 980px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    transition: 0.25s ease;
    height: 100%;
}

.mega-item:hover {
    background: #f2f7fb;
    transform: translateY(-3px);
}

.mega-item span {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    font-size: 20px;
    transition: 0.25s ease;
}

.mega-item:hover span {
    background: var(--orange);
    color: #ffffff;
}

.mega-item h6 {
    color: var(--navy);
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 5px;
}

.mega-item p {
    margin: 0;
    color: #657386;
    font-weight: 600;
    line-height: 1.4;
}

/* HERO */
.hero {
    padding: 165px 0 105px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(7, 24, 39, 0.95), rgba(16, 39, 66, 0.88)),
        radial-gradient(circle at top right, rgba(77, 144, 45, 0.45), transparent 35%),
        radial-gradient(circle at bottom left, rgba(243, 154, 18, 0.32), transparent 30%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(77, 144, 45, 0.25);
    right: -160px;
    top: 120px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(243, 154, 18, 0.18);
    left: -80px;
    bottom: -80px;
}

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

.hero h1 {
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.05;
    margin: 15px 0 20px;
}

.hero p {
    font-size: 19px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 6px solid var(--green);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.hero-panel i {
    font-size: 42px;
    color: var(--orange);
    margin-bottom: 18px;
}

.hero-panel h4 {
    color: #ffffff;
    font-weight: 700;
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.panel-link {
    color: #ffffff;
    font-weight: 700;
}

.panel-link:hover {
    color: var(--orange);
}

.main-btn {
    background: var(--green);
    color: #fff;
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
}

.main-btn:hover {
    background: var(--orange);
    color: #fff;
}

.hero-outline-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
}

.hero-outline-btn:hover {
    background: #ffffff;
    color: var(--navy);
}

.small-title {
    display: inline-block;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.light-title {
    color: var(--orange);
}

/* SECTIONS */
.section {
    padding: 90px 0;
}

.white-section {
    background: #ffffff;
}

.color-band {
    background:
        linear-gradient(135deg, rgba(16, 39, 66, 0.96), rgba(36, 79, 158, 0.86)),
        radial-gradient(circle at right, rgba(77, 144, 45, 0.35), transparent 35%);
    color: #ffffff;
}

.green-section {
    background:
        linear-gradient(135deg, rgba(77, 144, 45, 0.96), rgba(16, 39, 66, 0.92)),
        radial-gradient(circle at top right, rgba(243, 154, 18, 0.28), transparent 35%);
    color: #ffffff;
}

.color-band h2,
.green-section h2 {
    color: #ffffff;
}

.section h2 {
    color: var(--navy);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* CARDS */
.feature-box,
.method-card,
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    border: 1px solid #eef3f6;
    transition: 0.3s;
    color: var(--text);
}

.feature-box {
    border-left: 6px solid var(--green);
}

.feature-box i,
.method-card i {
    font-size: 38px;
    color: var(--green);
    margin-bottom: 18px;
}

.method-card:hover,
.service-card:hover {
    transform: translateY(-7px);
}

.method-card h4,
.service-card h4 {
    color: var(--navy);
    font-weight: 700;
}

.method-card a,
.service-card a,
.text-link {
    color: var(--green);
    font-weight: 700;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green), var(--orange), var(--blue), var(--red));
    position: absolute;
    top: 0;
    left: 0;
}

.service-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 27px;
    margin-bottom: 22px;
}

/* PRESENCE */
.presence-content p {
    max-width: 850px;
}

.presence-map {
    margin-top: 35px;
    background: #ffffff;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(16, 39, 66, 0.14);
    border: 1px solid #e8eef2;
}

.presence-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.78);
    padding: 70px 0 25px;
    border-top: 6px solid var(--green);
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.site-footer h6 {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

/* RESPONSIVE */
@media (min-width: 992px) {
    .navbar .dropdown-toggle::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 18px;
        margin-top: 15px;
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(16, 39, 66, 0.12);
    }

    .nav-contact-btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        translate: 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 12px 0;
        display: none;
        border-radius: 0;
    }

    .mega-parent:hover .mega-menu {
        display: block;
    }

    .mega-item {
        padding: 12px;
    }

    .hero {
        padding-top: 140px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 45px;
    }

    .section {
        padding: 65px 0;
    }

    .hero-panel,
    .service-card,
    .method-card {
        padding: 25px;
    }
}


.footer-title {
    color: #d96f09 !important;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    width: 42px;
    height: 3px;
    background: #981c48;
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.location-title {
    color: #981c48 !important;
}

.location-title::after {
    background: #d96f09;
}

.footer-email {
    margin-top: 18px;
}

.footer-email i {
    color: #d96f09;
    margin-right: 8px;
}

.footer-email a,
.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-email a:hover,
.footer-links a:hover {
    color: #d96f09;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

.footer-links a::before {
    content: "\00BB";
    color: #d96f09;
    font-size: 18px;
    line-height: 1;
    transition: 0.25s ease;
}

.footer-links a:hover {
    padding-left: 6px;
}

.footer-links a:hover::before {
    color: #981c48;
}

.footer-locations {
    display: grid;
    gap: 12px;
}

.footer-location-item {
    display: flex;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 4px solid #d96f09;
}

.footer-location-item:nth-child(even) {
    border-left-color: #981c48;
}

.location-icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(217, 111, 9, 0.18);
    color: #d96f09;
    display: grid;
    place-items: center;
}

.footer-location-item:nth-child(even) .location-icon {
    background: rgba(152, 28, 72, 0.2);
    color: #ff8fb5;
}

.footer-location-item strong {
    display: block;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 2px;
}

.footer-location-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #d96f09;
    color: #ffffff;
    transform: translateY(-3px);
}

/* TOPBAR */

.topbar {
    background: #253e7c;
    color: #ffffff;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left i {
    color: #f39a12;
}

.topbar-left a {
    color: rgba(255,255,255,0.85);
}

.topbar-left a:hover {
    color: #f39a12;
}

.topbar-right {
    display: flex;
    gap: 10px;
}

.topbar-right a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: 0.3s;
}

.topbar-right a:hover {
    background: #f39a12;
    transform: translateY(-2px);
}

/* Navbar spacing fix */

.field-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

.section-intro {
    max-width: 850px;
    color: inherit;
    opacity: 0.9;
}

/* ETHOS DIAGRAM */
.ethos-diagram {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}

.ethos-node {
    background: #ffffff;
    color: var(--text);
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
    border-top: 5px solid #d96f09;
    transition: 0.3s ease;
}

.ethos-node:nth-child(even) {
    border-top-color: #981c48;
}

.ethos-node:hover {
    transform: translateY(-7px);
}

.ethos-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.ethos-node h5 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.ethos-node p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

/* WHY FIELDPATH */
.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), #d96f09, #981c48);
    position: absolute;
    top: 0;
    left: 0;
}

.why-card:hover {
    transform: translateY(-7px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ethos-diagram {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ethos-diagram {
        grid-template-columns: 1fr;
    }
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 30px;
}

.country-tags span {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 15px;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.country-tags span:hover {
    background: #ffffff;
    color: var(--green);
    transform: translateY(-3px);
}

.map-btn {
    background: #d96f09;
    color: #ffffff;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.map-btn:hover {
    background: #981c48;
    color: #ffffff;
}


/* ABOUT PAGE */
.about-page-header p {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.about-mission-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 38px;
    border-left: 6px solid #d96f09;
    box-shadow: 0 18px 50px rgba(16, 39, 66, 0.12);
}

.about-mission-card i {
    font-size: 42px;
    color: var(--green);
    margin-bottom: 18px;
}

.about-mission-card h4 {
    color: var(--navy);
    font-weight: 800;
}

/* PRESENCE INTERACTIVE MAP */
.map-country-tags {
    margin-top: 25px;
}

.country-tag {
    border: 1px solid rgba(16, 39, 66, 0.15);
    background: #ffffff;
    color: var(--navy);
    border-radius: 20px;
    padding: 10px 17px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.country-tag:hover,
.country-tag.active {
    background: #d96f09;
    color: #ffffff;
    border-color: #d96f09;
    transform: translateY(-2px);
}

.interactive-map-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 18px 55px rgba(16, 39, 66, 0.12);
    border: 1px solid #e8eef2;
}

.map-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.map-tab {
    border: none;
    background: #f1f5f8;
    color: var(--navy);
    font-weight: 800;
    border-radius: 30px;
    padding: 9px 18px;
}

.map-tab.active {
    background: var(--green);
    color: #ffffff;
}

.field-map {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f4f8fb;
    min-height: 420px;
}

.field-map img {
    width: 100%;
    height: auto;
    display: block;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #981c48;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(152, 28, 72, 0.18);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.25s ease;
}

.map-marker span {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: var(--navy);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.map-marker:hover,
.map-marker.active {
    background: #d96f09;
    box-shadow: 0 0 0 10px rgba(217, 111, 9, 0.25);
    transform: translate(-50%, -50%) scale(1.25);
    z-index: 5;
}

.map-marker:hover span,
.map-marker.active span {
    opacity: 1;
    visibility: visible;
}

.selected-country-box {
    margin-top: 18px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
}

.selected-country-box span {
    display: block;
    opacity: 0.78;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-country-box strong {
    display: block;
    font-size: 24px;
}

/* TEAM */
.about-team-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    transition: 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-7px);
}

.about-team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #eef3f6;
}

.team-info {
    padding: 22px;
}

.team-info h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 6px;
}

.team-info p {
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0;
}

.team-structure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.team-structure div {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 24px;
    border-left: 5px solid #d96f09;
}

.team-structure h5 {
    color: #ffffff;
    font-weight: 800;
}

.team-structure p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

/* WHY DETAIL */
.why-detailed-list {
    display: grid;
    gap: 20px;
}

.why-detail-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 22px;
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
}

.why-number {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #524e84, #3f3b69);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(82, 78, 132, 0.28);
}
.why-detail-card:hover .why-number {
    transform: scale(1.05);
    transition: 0.3s ease;
}

.why-detail-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.why-detail-card p {
    color: var(--muted);
}

/* LATEST */
.latest-card {
    background: #ffffff;
    color: var(--text);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
}

.latest-card span {
    display: inline-block;
    background: rgba(217, 111, 9, 0.12);
    color: #d96f09;
    border-radius: 30px;
    padding: 6px 13px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 16px;
}

.latest-card h4 {
    color: var(--navy);
    font-weight: 800;
}

.latest-card a {
    color: var(--green);
    font-weight: 800;
}

@media (max-width: 991px) {
    .team-structure {
        grid-template-columns: 1fr;
    }

    .why-detail-card {
        grid-template-columns: 1fr;
    }

    .field-map {
        min-height: 300px;
    }
}

.country-map-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.country-map-btn {
    border: 1px solid rgba(16, 39, 66, 0.15);
    background: #ffffff;
    color: var(--navy);
    border-radius: 20px;
    padding: 10px 17px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.country-map-btn:hover,
.country-map-btn.active {
    background: #d96f09;
    border-color: #d96f09;
    color: #ffffff;
    transform: translateY(-2px);
}

.live-map-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 18px 55px rgba(16, 39, 66, 0.12);
    border: 1px solid #e8eef2;
}

.map-top-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.map-top-tabs button {
    border: none;
    background: #f1f5f8;
    color: var(--navy);
    font-weight: 800;
    border-radius: 30px;
    padding: 9px 18px;
}

.map-top-tabs button.active {
    background: var(--green);
    color: #ffffff;
}

#presenceLiveMap {
    height: 520px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #eef3f6;
}

.selected-map-country {
    margin-top: 18px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
}

.selected-map-country span {
    display: block;
    opacity: 0.78;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-map-country strong {
    display: block;
    font-size: 24px;
}

.leaflet-popup-content-wrapper {
    border-radius: 14px;
}

.leaflet-popup-content {
    font-weight: 800;
    color: var(--navy);
}

@media (max-width: 575px) {
    #presenceLiveMap {
        height: 380px;
    }
}

.field-map-marker {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(152, 28, 72, 0.25);
    display: grid;
    place-items: center;
}

.field-map-marker span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #981c48;
    border: 2px solid #ffffff;
}

.field-map-marker.active {
    width: 28px;
    height: 28px;
    background: rgba(217, 111, 9, 0.35);
}

.field-map-marker.active span {
    width: 14px;
    height: 14px;
    background: #d96f09;
}

/* ABOUT HERO */

.about-hero {

    background:
        linear-gradient(
            rgba(7, 24, 39, 0.82),
            rgba(7, 24, 39, 0.82)
        ),
        url("../img/hero-bg.jpg");

    background-size: cover;
    background-position: center;

    padding: 120px 0 90px;

}

/* smaller than homepage hero */

.about-hero h1 {

    font-size: 46px;

}

.about-hero p {

    max-width: 650px;

}

/* Mobile */

@media (max-width: 768px) {

    .about-hero {

        padding: 90px 0 60px;

    }

    .about-hero h1 {

        font-size: 34px;

    }

}

/* INNER HERO */
.inner-hero {
    min-height: auto;
    padding: 150px 0 95px;
}

.inner-hero h1 {
    font-size: 35px;
}

.inner-hero .hero-panel {
    background: rgba(255, 255, 255, 0.12);
}

/* METHOD SUMMARY */
.method-summary-card {
    display: block;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    color: var(--text);
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-summary-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #d96f09, #981c48);
    position: absolute;
    top: 0;
    left: 0;
}

.method-summary-card:hover {
    transform: translateY(-7px);
}

.method-summary-card span {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    font-size: 28px;
    margin-bottom: 22px;
}

.method-summary-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.method-summary-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* METHOD DETAILS */
.method-detail-section h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.method-detail-section p {
    font-size: 16px;
}

.method-visual-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.16);
}

.method-visual-card.light {
    background: #ffffff;
    color: var(--text);
    border: 1px solid #eef3f6;
    box-shadow: 0 18px 50px rgba(16, 39, 66, 0.12);
}

.method-visual-card i {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: #d96f09;
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 24px;
}

.method-visual-card.light i {
    background: linear-gradient(135deg, var(--navy), var(--green));
}

.method-visual-card h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.method-visual-card.light h3 {
    color: var(--navy);
}

.method-visual-card p {
    margin-bottom: 0;
    opacity: 0.86;
}

.method-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.method-points span {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 700;
}

.method-points.dark span {
    background: #f4f8fb;
    color: var(--navy);
    border: 1px solid #e6edf2;
}

/* QUALITY CARDS */
.quality-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    border: 1px solid #eef3f6;
    transition: 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-7px);
}

.quality-card i {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.quality-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .inner-hero {
        padding: 135px 0 75px;
    }

    .method-visual-card {
        padding: 30px;
    }
}


/* WHAT WE DO PAGE */

.service-overview-card {
    display: block;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    color: var(--text);
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #d96f09, #981c48);
    position: absolute;
    top: 0;
    left: 0;
}

.service-overview-card:hover {
    transform: translateY(-7px);
}

.service-overview-card span {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    font-size: 28px;
    margin-bottom: 22px;
}

.service-overview-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.service-overview-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.service-detail-section h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.service-visual-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.16);
}

.service-visual-card.light {
    background: #ffffff;
    color: var(--text);
    border: 1px solid #eef3f6;
    box-shadow: 0 18px 50px rgba(16, 39, 66, 0.12);
}

.service-visual-card i {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: #d96f09;
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 24px;
}

.service-visual-card.light i {
    background: linear-gradient(135deg, var(--navy), var(--green));
}

.service-visual-card h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.service-visual-card.light h3 {
    color: var(--navy);
}

.sub-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.sub-service-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 24px;
    border-left: 5px solid #d96f09;
}

.sub-service-card:nth-child(even) {
    border-left-color: #981c48;
}

.sub-service-grid.dark .sub-service-card {
    background: #ffffff;
    border: 1px solid #eef3f6;
    box-shadow: 0 14px 35px rgba(16, 39, 66, 0.08);
}

.sub-service-card.wide {
    grid-column: span 2;
}

.sub-service-card h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 10px;
}

.sub-service-grid.dark .sub-service-card h5 {
    color: var(--navy);
}

.sub-service-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.sub-service-grid.dark .sub-service-card p {
    color: var(--muted);
}

.monitoring-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    transition: 0.3s ease;
}

.monitoring-card:hover {
    transform: translateY(-7px);
}

.monitoring-card i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.monitoring-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.monitoring-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.tpm-note {
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    border-radius: 28px;
    padding: 34px;
}

.tpm-note h4 {
    font-weight: 800;
    margin-bottom: 12px;
}

.tpm-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
    .sub-service-grid {
        grid-template-columns: 1fr;
    }

    .sub-service-card.wide {
        grid-column: span 1;
    }

    .service-visual-card {
        padding: 30px;
    }
}


/* EXPERIENCE PAGE */

.experience-summary-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px;
    border-left: 6px solid #d96f09;
    box-shadow: 0 18px 50px rgba(16, 39, 66, 0.12);
}

.experience-summary-card i {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 22px;
}

.experience-summary-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 16px;
}

.experience-summary-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.experience-summary-card li {
    margin-bottom: 9px;
    color: var(--muted);
}

.experience-area-card {
    background: #ffffff;
    color: var(--text);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
    border-top: 5px solid #d96f09;
    transition: 0.3s ease;
}

.experience-area-card:nth-child(even) {
    border-top-color: #981c48;
}

.experience-area-card:hover {
    transform: translateY(-7px);
}

.experience-area-card i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    font-size: 26px;
    margin-bottom: 20px;
}

.experience-area-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.experience-area-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* Map shared with About page */
#experienceLiveMap {
    height: 520px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #eef3f6;
}

.experience-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.experience-highlight-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    border-left: 5px solid #d96f09;
    transition: 0.3s ease;
}

.experience-highlight-card:nth-child(even) {
    border-left-color: #981c48;
}

.experience-highlight-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.17);
}

.experience-highlight-card span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: #d96f09;
    color: #ffffff;
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 18px;
}

.experience-highlight-card:nth-child(even) span {
    background: #981c48;
}

.experience-highlight-card h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 10px;
}

.experience-highlight-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.case-style-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    border: 1px solid #eef3f6;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-style-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #d96f09, #981c48);
    position: absolute;
    top: 0;
    left: 0;
}

.case-style-card:hover {
    transform: translateY(-7px);
}

.case-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.case-meta span {
    background: rgba(217, 111, 9, 0.12);
    color: #d96f09;
    border-radius: 30px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 13px;
}

.case-meta small {
    color: var(--muted);
    font-weight: 700;
}

.case-style-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

.case-style-card p {
    color: var(--muted);
}

.case-style-card a {
    color: var(--green);
    font-weight: 800;
}

@media (max-width: 991px) {
    .experience-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #experienceLiveMap {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .experience-highlight-grid {
        grid-template-columns: 1fr;
    }

    #experienceLiveMap {
        height: 360px;
    }
}


/* CONTACT PAGE */
.contact-location-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eef3f6;
    box-shadow: 0 16px 45px rgba(16, 39, 66, 0.09);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-location-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #d96f09, #981c48);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-location-card:hover {
    transform: translateY(-7px);
}

.contact-location-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(77, 144, 45, 0.12);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-location-card h4 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-location-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-info-box {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 22px;
    margin-top: 25px;
}

.contact-info-box i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #d96f09;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.contact-info-box h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 3px;
}

.contact-info-box a {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}

.contact-info-box a:hover {
    color: #ffffff;
}

.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.contact-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
}

.contact-social-row a:hover {
    background: #d96f09;
    transform: translateY(-3px);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 24px 65px rgba(0,0,0,0.18);
}

.contact-form-card label {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 7px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 14px;
    border: 1px solid #dde7ee;
    min-height: 52px;
    font-weight: 600;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(77, 144, 45, 0.15);
}

.contact-map-cta {
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #ffffff;
    border-radius: 30px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.contact-map-cta h2 {
    color: #ffffff;
}

.contact-map-cta p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
    .contact-map-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .contact-form-card {
        padding: 25px;
    }
}