/* ================= GENERAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
}

:root {
    --green: #1ba260;
    --dark-green: #087a46;
    --blue: #0d47a1;
    --dark-blue: #062c67;
    --light-green: #eefaf4;
    --light-blue: #eef5ff;
    --white: #ffffff;
}

a {
    text-decoration: none;
}


/* ================= NAVBAR ================= */

.navbar {
    min-height: 78px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--green);
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--blue);
}

.logo-text strong {
    font-size: 22px;
}

.logo-text small {
    font-size: 8px;
    color: #555;
}

.nav-link {
    color: #222 !important;
    font-weight: 500;
    margin-left: 12px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green) !important;
}


/* ================= BUTTONS ================= */

.btn-green {
    background: var(--green);
    color: white;
    border: 2px solid var(--green);
}

.btn-green:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: white;
}

.btn-blue {
    background: var(--blue);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
}

.btn-blue:hover {
    background: var(--dark-blue);
    color: white;
}


/* ================= HERO ================= */

.hero-section {
    min-height: 650px;
    position: relative;
    background-image: url("../images/banner.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 37, 24, 0.90),
        rgba(5, 53, 90, 0.55),
        rgba(0, 0, 0, 0.15)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-small-title {
    color: #8ff0ba;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-content h1 span {
    color: #62e39a;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: bold;
}

.hero-description {
    font-size: 17px;
    max-width: 650px;
    line-height: 1.7;
}


/* ================= SECTION ================= */

.section-tag {
    color: var(--green);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-title {
    color: var(--blue);
    font-weight: 800;
    margin: 10px 0;
}

.section-title span {
    color: var(--green);
}

.section-description {
    max-width: 850px;
    line-height: 1.8;
}


/* ================= GROWTH ================= */

.growth-section {
    background: var(--light-green);
}

.growth-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.growth-card:hover {
    transform: translateY(-8px);
}

.growth-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.growth-card h4 {
    color: var(--blue);
    font-size: 19px;
    font-weight: bold;
}

.growth-card p {
    color: #555;
    line-height: 1.6;
}


/* ================= SERVICES ================= */

.services-section {
    background: white;
}

.service-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    background: white;
    border: 1px solid #e2e2e2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: var(--light-green);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.blue-icon {
    background: var(--light-blue);
    color: var(--blue);
}

.service-card h3 {
    color: var(--blue);
    font-size: 21px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.service-link {
    color: var(--green);
    font-weight: bold;
}


/* ================= LOCATIONS ================= */

.locations-section {
    background: var(--light-blue);
}

.location-box {
    background: white;
    padding: 18px;
    border-radius: 8px;
    color: var(--blue);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.location-box i {
    color: var(--green);
    margin-right: 8px;
}

.location-box:hover {
    background: var(--green);
    color: white;
}

.location-box:hover i {
    color: white;
}


/* ================= CTA ================= */

.cta-section {
    background: linear-gradient(
        100deg,
        var(--blue),
        var(--dark-blue)
    );
    color: white;
    padding: 70px 20px;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
}


/* ================= FOOTER ================= */

.footer {
    background: #062c67;
    color: white;
    padding: 55px 0 20px;
}

.footer h3 {
    color: #62e39a;
}

.footer h5 {
    color: #8ff0ba;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #ddd;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #62e39a;
}

.footer p {
    color: #ddd;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .nav-link {
        margin-left: 0;
    }

}

@media (max-width: 576px) {

    .hero-section {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

}

/* ================= ABOUT PAGE ================= */

.about-hero {
    background: linear-gradient(
        135deg,
        #eefaf4,
        #eef5ff
    );
    padding: 90px 20px;
    border-bottom: 4px solid var(--green);
}

.about-hero h1 {
    color: var(--blue);
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.about-hero h1 span {
    color: var(--green);
}

.about-hero p {
    font-size: 18px;
    color: #555;
}


/* About Image */

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}


/* About Content */

.about-company p {
    color: #555;
    line-height: 1.8;
}

.about-points {
    margin-top: 25px;
}

.about-points div {
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 12px;
}

.about-points i {
    color: var(--green);
    margin-right: 10px;
}


/* Trust Section */

.trust-section {
    background: var(--light-green);
}

.trust-card {
    background: white;
    text-align: center;
    padding: 35px 25px;
    height: 100%;
    border-radius: 12px;
    border-top: 4px solid var(--green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-green);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.blue-trust {
    background: var(--light-blue);
    color: var(--blue);
}

.trust-card h3 {
    color: var(--blue);
    font-size: 22px;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}


/* Values */

.values-section {
    background: white;
}

.value-box {
    text-align: center;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    height: 100%;
}

.value-box i {
    font-size: 35px;
    color: var(--green);
    margin-bottom: 15px;
}

.value-box h4 {
    color: var(--blue);
}

.value-box p {
    color: #666;
}


/* About Responsive */

@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 35px;
    }

    .about-image img {
        height: 300px;
    }

}




/* ================= PROPERTIES PAGE ================= */

.properties-hero {
    background: linear-gradient(
        135deg,
        #eefaf4,
        #eef5ff
    );
    padding: 90px 20px;
    border-bottom: 4px solid var(--green);
}

.properties-hero h1 {
    color: var(--blue);
    font-size: 50px;
    font-weight: 800;
    margin-top: 10px;
}

.properties-hero h1 span {
    color: var(--green);
}

.properties-hero p {
    color: #555;
    font-size: 18px;
}


/* Property Categories */

.property-intro {
    background: white;
}

.property-category {
    background: white;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.property-category:hover {
    transform: translateY(-8px);
    border-color: var(--green);
}

.property-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.green-property {
    background: var(--light-green);
    color: var(--green);
}

.blue-property {
    background: var(--light-blue);
    color: var(--blue);
}

.property-category h3 {
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 15px;
}

.property-category p {
    color: #666;
    line-height: 1.7;
}

.property-category a {
    color: var(--green);
    font-weight: bold;
}


/* Property Listing */

.property-listing {
    background: var(--light-blue);
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-7px);
}

.property-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--green);
    color: white;
    padding: 7px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.blue-badge {
    background: var(--blue);
}

.property-content {
    padding: 25px;
}

.property-content h3 {
    color: var(--blue);
    font-size: 21px;
}

.property-location {
    color: var(--green) !important;
    font-weight: bold;
}

.property-content p {
    color: #666;
    line-height: 1.6;
}

.property-btn {
    color: var(--green);
    font-weight: bold;
}


/* Location Tags */

.property-location-section {
    background: white;
}

.property-location-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.property-location-tags span {
    background: var(--light-green);
    color: var(--blue);
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.property-location-tags i {
    color: var(--green);
    margin-right: 6px;
}


/* Responsive */

@media (max-width: 768px) {

    .properties-hero h1 {
        font-size: 36px;
    }

    .property-image {
        height: 210px;
    }

}





/* ================= SERVICES PAGE ================= */

.services-hero {
    background: linear-gradient(
        135deg,
        #eefaf4,
        #eef5ff
    );

    padding: 90px 20px;

    border-bottom: 4px solid var(--green);
}

.services-hero h1 {
    color: var(--blue);

    font-size: 50px;

    font-weight: 800;

    margin-top: 10px;
}

.services-hero h1 span {
    color: var(--green);
}

.services-hero p {
    color: #555;

    font-size: 18px;

    margin-top: 15px;
}


/* ================= SERVICES INTRO ================= */

.services-intro {
    background: white;
}

.services-intro-text {
    max-width: 750px;

    margin: auto;

    color: #666;

    line-height: 1.8;
}


/* ================= MAIN SERVICES ================= */

.main-services {
    background: var(--light-green);
}

.main-service-card {
    background: white;

    border-radius: 14px;

    overflow: hidden;

    height: 100%;

    box-shadow: 0 6px 25px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.main-service-card:hover {
    transform: translateY(-8px);
}


/* Service Image */

.main-service-image {
    height: 240px;

    position: relative;

    overflow: hidden;
}

.main-service-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}

.service-number {
    position: absolute;

    top: 15px;

    left: 15px;

    background: var(--green);

    color: white;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;
}


/* Service Content */

.main-service-content {
    padding: 30px 25px;
}

.main-service-icon {
    width: 60px;

    height: 60px;

    background: var(--light-green);

    color: var(--green);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 18px;
}

.blue-service-icon {
    background: var(--light-blue);

    color: var(--blue);
}

.main-service-content h3 {
    color: var(--blue);

    font-size: 22px;

    margin-bottom: 15px;
}

.main-service-content p {
    color: #666;

    line-height: 1.7;

    min-height: 110px;
}

.service-action {
    color: var(--green);

    font-weight: bold;
}

.service-action i {
    margin-left: 5px;
}


/* ================= SERVICE PROCESS ================= */

.service-process {
    background: white;
}

.process-box {
    text-align: center;

    padding: 30px 20px;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    height: 100%;

    transition: 0.3s;
}

.process-box:hover {
    border-color: var(--green);

    transform: translateY(-5px);
}

.process-icon {
    width: 65px;

    height: 65px;

    margin: auto;

    margin-bottom: 20px;

    background: var(--light-green);

    color: var(--green);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;
}

.blue-process-icon {
    background: var(--light-blue);

    color: var(--blue);
}

.process-box h4 {
    color: var(--blue);

    font-weight: bold;
}

.process-box p {
    color: #666;

    line-height: 1.6;
}


/* ================= CORRIDOR ================= */

.service-corridor {
    background: var(--light-blue);
}

.service-corridor p {
    color: #555;

    line-height: 1.8;

    margin-bottom: 25px;
}

.corridor-box {
    background: white;

    padding: 30px;

    border-radius: 14px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.corridor-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 10px;

    border-bottom: 1px solid #eee;

    color: var(--blue);

    font-weight: bold;
}

.corridor-item:last-child {
    border-bottom: none;
}

.corridor-item i {
    color: var(--green);

    font-size: 22px;

    width: 30px;
}


/* ================= SERVICES RESPONSIVE ================= */

@media (max-width: 768px) {

    .services-hero h1 {
        font-size: 36px;
    }

    .main-service-image {
        height: 220px;
    }

    .main-service-content p {
        min-height: auto;
    }

}


/* ================= LOCATIONS PAGE ================= */

.locations-hero {
    background: linear-gradient(
        135deg,
        #eefaf4,
        #eef5ff
    );

    padding: 90px 20px;

    border-bottom: 4px solid var(--green);
}

.locations-hero h1 {
    color: var(--blue);

    font-size: 48px;

    font-weight: 800;

    margin-top: 10px;
}

.locations-hero h1 span {
    color: var(--green);
}

.locations-hero p {
    color: #555;

    font-size: 18px;

    margin-top: 15px;
}


/* ================= INTRO ================= */

.locations-intro {
    background: white;
}

.locations-intro p {
    color: #555;

    line-height: 1.8;
}


/* Highlight */

.location-highlight {
    background: linear-gradient(
        135deg,
        var(--blue),
        #147a72
    );

    color: white;

    min-height: 330px;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.location-highlight > i {
    font-size: 55px;

    margin-bottom: 20px;
}

.location-highlight h3 {
    font-size: 34px;

    font-weight: 800;

    margin-bottom: 5px;
}

.location-highlight p {
    color: white;

    font-size: 20px;

    margin-bottom: 20px;
}

.location-highlight span {
    font-size: 17px;

    font-weight: bold;
}

.location-line {
    width: 80px;

    height: 3px;

    background: white;

    margin: 10px 0 20px;
}


/* ================= LOCALITIES ================= */

.localities-section {
    background: var(--light-green);
}

.location-card {
    background: white;

    border-radius: 14px;

    padding: 28px;

    display: flex;

    gap: 20px;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

    border-left: 4px solid var(--green);

    transition: 0.3s;
}

.location-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.location-card-icon {
    min-width: 55px;

    height: 55px;

    background: var(--light-green);

    color: var(--green);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;
}

.blue-location-icon {
    background: var(--light-blue);

    color: var(--blue);
}

.location-number {
    color: var(--green);

    font-size: 13px;

    font-weight: bold;
}

.location-card h3 {
    color: var(--blue);

    font-size: 20px;

    margin: 4px 0 10px;
}

.location-card p {
    color: #666;

    margin: 0;

    line-height: 1.6;
}


/* ================= MAP STYLE ================= */

.corridor-map-section {
    background: white;
}

.corridor-map-section p {
    color: #555;

    line-height: 1.8;

    margin-bottom: 25px;
}

.map-box {
    height: 400px;

    border-radius: 20px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e8f4ed,
            #e8f0f8
        );

    border: 2px solid #d7e8df;
}


/* Main Road */

.map-road {
    position: absolute;

    width: 115%;

    height: 35px;

    background: #ffffff;

    border-top: 7px solid #b8c9d0;

    border-bottom: 7px solid #b8c9d0;

    transform: rotate(-18deg);

    top: 180px;

    left: -30px;
}


/* Map Center */

.map-center {
    position: absolute;

    top: 135px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--blue);

    color: white;

    padding: 18px 25px;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);

    z-index: 5;
}

.map-center i {
    display: block;

    font-size: 25px;

    margin-bottom: 6px;
}

.map-center strong {
    display: block;

    font-size: 16px;
}

.map-center small {
    display: block;

    margin-top: 4px;
}


/* Map Labels */

.map-label {
    position: absolute;

    background: white;

    color: var(--blue);

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: bold;

    box-shadow: 0 3px 10px rgba(0,0,0,0.10);

    z-index: 6;
}

.label-1 {
    top: 45px;
    left: 30px;
}

.label-2 {
    top: 90px;
    right: 25px;
}

.label-3 {
    bottom: 45px;
    left: 40px;
}

.label-4 {
    bottom: 80px;
    right: 30px;
}

.label-5 {
    top: 25px;
    right: 180px;
}

.label-6 {
    bottom: 25px;
    right: 160px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .locations-hero h1 {
        font-size: 35px;
    }

    .location-card {
        padding: 22px;
    }

    .map-box {
        height: 350px;
    }

    .map-label {
        font-size: 10px;
        padding: 5px 8px;
    }

    .label-5 {
        right: 80px;
    }

    .label-6 {
        right: 70px;
    }

}



/* ================= CONTACT PAGE ================= */

.contact-hero {
    background: linear-gradient(
        135deg,
        #eefaf4,
        #eef5ff
    );

    padding: 90px 20px;

    border-bottom: 4px solid var(--green);
}

.contact-hero h1 {
    color: var(--blue);

    font-size: 48px;

    font-weight: 800;

    margin-top: 10px;
}

.contact-hero h1 span {
    color: var(--green);
}

.contact-hero p {
    color: #555;

    font-size: 18px;

    margin-top: 15px;
}


/* Contact Section */

.contact-section {
    background: white;
}

.contact-description {
    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* Contact Information */

.contact-info-box {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 25px;
}

.contact-icon {
    min-width: 55px;

    height: 55px;

    background: var(--light-green);

    color: var(--green);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;
}

.blue-contact-icon {
    background: var(--light-blue);

    color: var(--blue);
}

.contact-info-box h4 {
    color: var(--blue);

    font-size: 18px;

    margin-bottom: 5px;
}

.contact-info-box p {
    color: #666;

    margin: 0;

    line-height: 1.6;
}

.contact-info-box a {
    color: var(--green);

    font-weight: 600;

    text-decoration: none;
}


/* Enquiry Form */

.enquiry-form {
    background: #f7fbf9;

    padding: 40px;

    border-radius: 16px;

    border: 1px solid #e2eee8;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.enquiry-form h2 {
    color: var(--blue);

    font-size: 30px;

    font-weight: 800;
}

.enquiry-form h2 span {
    color: var(--green);
}

.enquiry-form p {
    color: #666;
}

.enquiry-form label {
    display: block;

    color: var(--blue);

    font-weight: 600;

    margin-bottom: 7px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;

    border: 1px solid #d8e2dd;

    border-radius: 7px;

    padding: 12px 14px;

    outline: none;

    background: white;

    font-size: 15px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(31, 150, 103, 0.10);
}

.enquiry-form textarea {
    resize: vertical;
}

.submit-btn {
    padding: 13px 25px;

    border: none;
}


/* Benefits */

.contact-benefits {
    background: var(--light-green);
}

.contact-benefit {
    background: white;

    text-align: center;

    padding: 35px 25px;

    border-radius: 12px;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.contact-benefit i {
    color: var(--green);

    font-size: 35px;

    margin-bottom: 18px;
}

.contact-benefit h3 {
    color: var(--blue);

    font-size: 21px;
}

.contact-benefit p {
    color: #666;

    line-height: 1.6;
}


/* Contact Responsive */

@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 35px;
    }

    .enquiry-form {
        padding: 25px 20px;
    }

}

/* =========================================================
   LOCATION PAGE - IMAGE FIX
   ========================================================= */

.location-card {
    display: block !important;
    width: 100%;
    height: 100%;
    padding: 18px !important;
    overflow: hidden;
}

/* Location Image Box */
.location-card-image {
    width: 100% !important;
    height: 220px !important;
    display: block !important;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 0 18px 0;
}

/* Location Image */
.location-card-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Image Hover Effect */
.location-card:hover .location-card-image img {
    transform: scale(1.05);
}

/* Location Icon */
.location-card .location-card-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    margin-bottom: 12px;
}

/* Location Number */
.location-card .location-number {
    display: block;
    margin-bottom: 2px;
}

/* Location Heading */
.location-card h3 {
    margin-top: 4px;
    margin-bottom: 10px;
}

/* Location Description */
.location-card p {
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   LOCATION PAGE - MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .location-card {
        display: block !important;
        padding: 16px !important;
    }

    .location-card-image {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 16px;
    }

    .location-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .location-card-image {
        height: 190px !important;
    }

}




/* ================= CONTACT HERO IMAGE ================= */

.contact-hero {
    background-image:
        linear-gradient(
            rgba(6, 44, 103, 0.65),
            rgba(8, 122, 70, 0.55)
        ),
        url("../images/contact-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 100px 20px;
    border-bottom: 4px solid var(--green);
    color: white;
}

.contact-hero h1 {
    color: white;
}

.contact-hero h1 span {
    color: #62e39a;
}

.contact-hero p {
    color: white;
}