 .page-title {
        position: relative;
        padding: 190px 0px 115px 0px;
    }


    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

    .contact .contact-main-wrapper {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact.map {
        padding-bottom: 130px;
    }

    .contact .contact-form-wrapper {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .counter-heading.contact-page {
        text-align: left;
        margin-bottom: 0px;
    }

    @media (min-width: 992px) {
        .contact .contact-main-wrapper {
            /* grid-template-columns: 45% 55%; */
            min-height: 600px;
        }

        .contact .contact-form-wrapper {
            grid-template-columns: 45% 55%;
        }

    }

    .contact .map-wrapper {
        height: 300px;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }

    @media (min-width: 992px) {
        .contact .map-wrapper {
            height: 100%;
            position: sticky;
            top: 100px;
        }
    }

    .contact .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact .contact-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    @media (min-width: 576px) {
        .contact .contact-cards-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .contact .contact-card {
        background-color: var(--surface-color);
        padding: 10px 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .contact .contact-card .icon-box {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        background-color: #0057b8;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact .contact-card .icon-box i {
        font-size: 22px;
        color: #ffffff;
    }

    .contact .contact-card .contact-text h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .contact .contact-card .contact-text p {
        font-size: 14px;
        line-height: 1.5;
        color: var(--default-color);
        margin-bottom: 0;
    }

    .contact .contact-form-container {
        background-color: var(--surface-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .contact .contact-form-container h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--heading-color);
        position: relative;
        padding-left: 15px;
    }

    .contact .contact-form-container h3:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .contact .contact-form-container>p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: var(--default-color);
    }

    .contact .contact-form-container .php-email-form .form-control {
        padding: 10px 20px;
        border-radius: 10px;
        color: var(--default-color);
        transition: all 0.3s ease;
    }

    .contact .contact-form-container .php-email-form .form-control:focus {
        background-color: var(--surface-color);
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .contact .contact-form-container .php-email-form .form-control::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
    }

    .contact .contact-form-container .php-email-form textarea.form-control {
        min-height: 140px;
    }

    .contact .contact-form-container .php-email-form .form-submit {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
    }

    @media (max-width: 576px) {
        .contact .contact-form-container .php-email-form .form-submit {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    .contact .contact-form-container .php-email-form button {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .contact .contact-form-container .php-email-form button:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
    }

    .contact .contact-form-container .php-email-form .social-links {
        display: flex;
        gap: 12px;
    }

    .contact .contact-form-container .php-email-form .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
        color: var(--heading-color);
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .contact .contact-form-container .php-email-form .social-links a:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .contact .contact-form-container {
            padding: 25px 20px;
        }

        .contact .contact-form-container h3 {
            font-size: 22px;
        }
    }


    /* ==========================================
   ORDOCLIN CONTACT INFO
========================================== */

.ordoclin-contact-section {
    width: 100%;
    background: #ffffff;
}

.ordoclin-contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ordoclin-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ==========================================
   CONTACT CARD
========================================== */

.ordoclin-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    border-left: 3px solid #0c58b4;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.045);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ordoclin-contact-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   ICON
========================================== */

.ordoclin-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    border-radius: 8px;
    background: #eef2f8;
    color: #0c58b4;
    font-size: 20px;
    transition: background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.ordoclin-contact-card:hover .ordoclin-contact-icon {
    background: #0c58b4;
    color: #ffffff;

    transform: scale(1.05);
}


/* ==========================================
   CONTENT
========================================== */

.ordoclin-contact-content {
    min-width: 0;
}

.ordoclin-contact-content h3{
    margin-bottom: 8px;
}

.ordoclin-contact-content p {
    margin: 0;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.5;

    color: #58595b;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ordoclin-contact-content h3{
    text-align: left;
}

    
    

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ordoclin-contact-section {
        padding: 20px 0;
    }

    .ordoclin-contact-container {
        padding: 0 15px;
    }

    .ordoclin-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ordoclin-contact-card:last-child {
        grid-column: auto;
    }

    .ordoclin-contact-card {
        min-height: 82px;
        padding: 16px 18px;
    }

    .ordoclin-contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;

        margin-right: 15px;
    }

}



/* =========================================
   ORDOCLIN - GLOBAL FOOTPRINT
========================================= */

.oc-global-footprint {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    background: #f6f8fa;
    overflow: hidden;
}

.oc-global-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.oc-global-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 35px;
}

.oc-global-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #6bbcc1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.oc-global-heading h2 {
    margin: 0;
    color: #202124;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.oc-global-heading p {
    margin: 15px 0 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   LOCATION TABS
========================================= */

.oc-location-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.oc-location-tab {
    position: relative;
    border: 1px solid #e1e5e8;
    outline: none;
    padding: 12px 25px;
    border-radius: 6px;
    background: #ffffff;
    color: #353535;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oc-location-tab:hover {
    border-color: #6bbcc1;
    color: #168a91;
}

.oc-location-tab.active {
    border-color: #0c58b4;
    background: #0c58b4;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(107, 188, 193, 0.25);
}


/* =========================================
   MAIN LAYOUT
========================================= */

.oc-global-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(20, 35, 45, 0.10);
}


/* =========================================
   MAP AREA
========================================= */

.oc-map-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 35px;
    background: #e7eef5;
}

.oc-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 1.7 / 1;
}

.oc-world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
}


/* =========================================
   MAP LOCATION BUTTON
========================================= */

.oc-map-location {
    position: absolute;
    z-index: 5;
    /* width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #6bbcc1; */
    cursor: pointer;
    transform: translate(-50%, -50%);
}

/*.oc-map-location::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(107, 188, 193, 0.5);
    border-radius: 50%;
}

.oc-map-location.active {
    background: #168a91;
    transform: translate(-50%, -50%) scale(1.15);
} */



@keyframes oc-map-pulse-animation {

    0% {
        transform: scale(0.7);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }

}


/* =========================================
   MAP LABEL
========================================= */

.oc-map-label {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    white-space: nowrap;

    padding: 6px 13px;
    border-radius: 5px;

    background: #ffffff;
    color: #303030;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.oc-map-location.active .oc-map-label {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   MAP POSITIONS
   These percentages are based on the
   world-map image.
========================================= */


/* Canada */
.oc-map-canada {
    left: 23%;
    top: 28%;
}


/* US */
.oc-map-us {
    left: 25%;
    top: 43%;
}


/* UK */
.oc-map-uk {
    left: 48%;
    top: 29%;
}


/* Romania */
.oc-map-romania {
    left: 55%;
    top: 39%;
}


/* India */
.oc-map-india {
    left: 68%;
    top: 49%;
}

.oc-map-wrapper {
    position: relative;
    overflow: hidden;
}

.oc-world-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


/* =========================================
   LOCATION CONTENT
========================================= */

.oc-location-content {
    position: relative;
    padding: 55px 35px;
    background: #ffffff;
}

.oc-location-panel {
    display: none;
    animation: oc-location-fade 0.45s ease;
}

.oc-location-panel.active {
    display: block;
}

@keyframes oc-location-fade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

}


/* =========================================
   LOCATION TEXT
========================================= */

.oc-location-number {
    margin-bottom: 12px;
    color: #d8dee1;
    font-size: 55px;
    line-height: 1;
    font-weight: 700;
}

.oc-location-region {
    display: block;
    margin-bottom: 8px;
    color: #0c58b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.oc-location-panel h3 {
    margin: 0 0 15px;
    color: #222;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.oc-location-description {
    max-width: 450px;
    margin: 0 0 28px;
    color: #70777a;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   LOCATION LIST
========================================= */

.oc-location-list {
    display: flex;
    /* flex-direction: column; */
    gap: 18px;
}

.oc-location-item {
    position: relative;
    padding: 10px 15px;
    border-left: 4px solid #0c58b4;
    border-radius: 9px;
    background: #f4fafd;
}

.oc-location-city {
    display: block;
    margin-bottom: 6px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
}

.oc-location-item p {
    position: relative;
    margin: 9px 0;
    padding-left: 14px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.oc-location-item p::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0c58b4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .oc-global-footprint {
        padding: 70px 20px;
    }

    .oc-global-heading h2 {
        font-size: 36px;
    }

    .oc-global-layout {
        grid-template-columns: 1fr;
    }

    .oc-map-area {
        min-height: 450px;
    }

    .oc-location-content {
        padding: 45px 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .oc-global-footprint {
        padding: 55px 15px;
    }

    .oc-global-heading {
        margin-bottom: 25px;
    }

    .oc-global-heading h2 {
        font-size: 30px;
    }

    .oc-global-heading p {
        font-size: 14px;
    }


    .oc-location-tabs {
        gap: 6px;
        margin-bottom: 25px;
    }

    .oc-location-tab {
        padding: 9px 15px;
        font-size: 12px;
    }


    .oc-global-layout {
        border-radius: 14px;
    }


    .oc-map-area {
        min-height: 300px;
        padding: 20px 10px;
    }

    .oc-map-wrapper {
        width: 100%;
    }


    .oc-map-location {
        width: 14px;
        height: 14px;
    }

    .oc-map-label {
        bottom: 18px;
        padding: 4px 8px;
        font-size: 9px;
    }


    .oc-location-content {
        padding: 35px 25px;
    }

    .oc-location-number {
        font-size: 42px;
    }

    .oc-location-panel h3 {
        font-size: 30px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .oc-location-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .oc-location-tabs::-webkit-scrollbar {
        display: none;
    }

    .oc-location-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .oc-map-area {
        min-height: 250px;
    }

    .oc-location-content {
        padding: 30px 20px;
    }

}