.presence-section {
    padding: 80px 0;
    background: #fff;
}

.presence-tabs {
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 50px;
    justify-content: center;
    display: flex;
    gap: 30px;
}

.presence-tabs .nav-item {
    margin-bottom: -2px;
}

.journey-hero {
    background: linear-gradient(110deg,
            rgba(7, 17, 30, 0.86),
            rgba(17, 24, 39, 0.78),
            rgba(111, 66, 193, 0.46)),
        url("../images/banner-6.jpg") center/cover no-repeat;
}

.presence-tabs .nav-link {
    border: none;
    background: transparent;
    color: #555;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.presence-tabs .nav-link:hover {
    color: #e71820;
    border-bottom: 3px solid #e71820;
}

.presence-tabs .nav-link.active {
    color: #033ba1;
    border-bottom: 3px solid #033ba1;
    background: transparent;
}

/* Zone Content */
.zone-details {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zone-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #033ba1;
    text-transform: uppercase;
}

.zone-description {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.zone-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Leadership Custom Grid */
.leadership-header {
    text-align: center;
    margin: 60px 0 40px;
}

.leadership-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #033ba1;
}

.leadership-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
}

.leader-card-custom {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.leader-img-box {
    width: 100%;
    height: 250px;
    background: #f8f9fb;
    overflow: hidden;
}

.leader-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.leader-card-custom:hover .leader-img-box img {
    filter: grayscale(0%);
}

.leader-card-custom h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin: 20px 0 5px 0;
}

.leader-card-custom span {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

/* Contact Accordion */
.contact-header {
    text-align: center;
    margin: 60px 0 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #033ba1;
}

.contact-accordion {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eaeaea;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    padding: 20px 25px;
    background: #fdfdfd;
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #e71820;
    background: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-accordion-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    padding: 25px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-details strong {
    color: #222;
}

.enquiry-tag {
    font-weight: 700;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    color: #033ba1 !important;
    text-transform: uppercase;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

@media(max-width: 768px) {
    .presence-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .presence-tabs .nav-link {
        border-bottom: none !important;
        border-left: 3px solid transparent;
    }

    .presence-tabs .nav-link:hover,
    .presence-tabs .nav-link.active {
        border-left-color: #033ba1;
        background: #f8f9fb;
    }

    .zone-title {
        font-size: 2.2rem;
    }
}

.zone-overview {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.zone-overview-header {
    text-align: center;
    margin-bottom: 50px;
}

.zone-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(3, 59, 161, .08);
    color: #033ba1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.zone-overview-header h3 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.zone-lead {
    max-width: 850px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.zone-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.overview-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #edf0f5;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    transition: .35s;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.overview-card i {
    font-size: 34px;
    color: #033ba1;
    margin-bottom: 15px;
}

.overview-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.overview-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.zone-content {
    max-width: 1000px;
    margin: auto;
}

.zone-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
    text-align: left;
}

.leadership-header {
    margin-top: 80px;
    margin-bottom: 40px;
}

.leadership-header h2 {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}

.leadership-header h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #033ba1;
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

.contact-header h2 {
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #033ba1;
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

.leadership-image {
    width: 100%;
    overflow: hidden;
}

.leader-ship img {
    width: 100%;
    height: 100%;
}



@media(max-width:992px) {

    .zone-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zone-overview-header h3 {
        font-size: 32px;
    }
}

@media(max-width:768px) {

    .zone-overview-grid {
        grid-template-columns: 1fr;
    }

    .zone-overview-header h3 {
        font-size: 26px;
    }

    .zone-lead {
        font-size: 17px;
    }

    .zone-content p {
        text-align: left;
    }
}