/* ======================================================
   CONTACT US PAGE
====================================================== */

:root {
    --contact-primary: #204b75;
    --contact-secondary: #486b93;
    --contact-heading: #172a3a;
    --contact-text: #64717b;
    --contact-background: #f6f9fc;
    --contact-soft: #edf4fa;
    --contact-white: #ffffff;
    --contact-border: #dce6ef;
    --contact-success: #1b8f5a;
    --contact-shadow: 0 18px 50px rgba(32, 75, 117, 0.10);
    --contact-shadow-hover: 0 24px 60px rgba(32, 75, 117, 0.17);
    --contact-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--contact-text);
    background: var(--contact-white);
}

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* ======================================================
   PAGE BANNER
====================================================== */

.contact-page-banner {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(14, 40, 65, 0.92),
            rgba(32, 75, 117, 0.68)
        ),
        url("../images/contact-banner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 35, 58, 0.90) 0%,
            rgba(32, 75, 117, 0.65) 55%,
            rgba(72, 107, 147, 0.35) 100%
        );
}

.contact-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.contact-banner-content h1 {
    margin: 0 0 15px;
    color: var(--contact-white);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.contact-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--contact-white);
}

.contact-breadcrumb > span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.contact-breadcrumb .current-page {
    color: var(--contact-white);
    font-size: 14px;
    font-weight: 600;
}

.contact-banner-shape {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.contact-shape-one {
    width: 180px;
    height: 180px;
    top: -70px;
    right: 7%;
    animation: contactFloat 6s ease-in-out infinite;
}

.contact-shape-two {
    width: 90px;
    height: 90px;
    bottom: -25px;
    right: 19%;
    background: rgba(255, 255, 255, 0.07);
    animation: contactFloat 5s ease-in-out infinite reverse;
}

@keyframes contactFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(16px);
    }
}


/* ======================================================
   COMMON HEADINGS
====================================================== */

.contact-small-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--contact-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-small-label::after {
    content: "";
    width: 35px;
    height: 1px;
    background: var(--contact-secondary);
}

.contact-map-header h2,
.contact-form-heading h2,
.company-contact-heading h2 {
    margin: 0;
    color: var(--contact-heading);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: 0.4px;
    font-weight: 400;
}


/* ======================================================
   MAP AND FORM SECTION
====================================================== */

.contact-main-section {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(72, 107, 147, 0.08),
            transparent 32%
        ),
        var(--contact-white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.contact-map-wrapper,
.contact-form-wrapper {
    min-width: 0;
}

.contact-map-wrapper {
    padding: 26px;
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius);
    background: var(--contact-background);
}

.contact-map-header {
    margin-bottom: 22px;
}

.contact-map {
    position: relative;
    height: 510px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--contact-shadow);
    background: #dfe8ef;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: saturate(0.85) contrast(1.02);
}

.map-floating-card {
    position: absolute;
    left: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    max-width: calc(100% - 36px);
    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 35px rgba(22, 42, 58, 0.18);
    backdrop-filter: blur(8px);
}

.map-floating-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    color: var(--contact-white);
    background: var(--contact-primary);
}

.map-floating-card div:last-child {
    min-width: 0;
}

.map-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: var(--contact-heading);
    font-size: 13px;
}

.map-floating-card span {
    display: block;
    color: var(--contact-text);
    font-size: 11px;
}


/* ======================================================
   CONTACT FORM
====================================================== */

.contact-form-wrapper {
    padding: 32px;
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius);
    background: var(--contact-white);
    box-shadow: var(--contact-shadow);
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading p {
    max-width: 520px;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.75;
}

.contact-enquiry-form {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form-group {
    margin-bottom: 18px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--contact-heading);
    font-size: 12px;
    font-weight: 700;
}

.contact-form-group label span {
    color: #d24141;
}

.contact-input-box {
    position: relative;
}

.contact-input-box > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--contact-secondary);
    font-size: 14px;
    pointer-events: none;
}

.contact-input-box input,
.contact-input-box select,
.contact-input-box textarea {
    width: 100%;
    min-width: 0;

    border: 1px solid var(--contact-border);
    border-radius: 10px;
    outline: none;

    color: var(--contact-heading);
    background: var(--contact-background);

    font-family: "Inter", sans-serif;
    font-size: 13px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-input-box input,
.contact-input-box select {
    height: 50px;
    padding: 0 42px 0 44px;
}

.contact-input-box textarea {
    min-height: 130px;
    padding: 15px 16px 15px 44px;
    line-height: 1.6;
    resize: vertical;
}

.contact-textarea-box > i {
    top: 18px;
    transform: none;
}

.contact-input-box input::placeholder,
.contact-input-box textarea::placeholder {
    color: #9aa8b4;
}

.contact-input-box input:focus,
.contact-input-box select:focus,
.contact-input-box textarea:focus {
    border-color: var(--contact-secondary);
    background: var(--contact-white);
    box-shadow: 0 0 0 4px rgba(72, 107, 147, 0.10);
}

.contact-input-box:focus-within > i {
    color: var(--contact-primary);
}

.contact-select-box::after {
    content: "\f078";

    position: absolute;
    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    color: var(--contact-primary);
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;

    pointer-events: none;
}

.contact-select-box select {
    appearance: none;
    cursor: pointer;
}

.contact-form-footer {
    margin-top: 5px;
}

.contact-submit-btn {
    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 0;
    border-radius: 9px;

    color: var(--contact-white);
    background: var(--contact-primary);

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    overflow: hidden;

    box-shadow: 0 12px 25px rgba(32, 75, 117, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    background: var(--contact-secondary);
    box-shadow: 0 16px 32px rgba(32, 75, 117, 0.28);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

.contact-privacy-text {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 13px 0 0;
    color: #8a98a4;
    font-size: 10px;
    line-height: 1.5;
}

.contact-privacy-text i {
    color: var(--contact-success);
}


/* ======================================================
   COMPANY INFORMATION CARDS
====================================================== */

.company-contact-section {
    padding: 80px 0 95px;
    background: var(--contact-background);
}

.company-contact-heading {
    margin-bottom: 32px;
}

.company-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.company-contact-card {
    position: relative;
    min-height: 210px;
    padding: 25px 22px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--contact-border);
    border-radius: 14px;

    background: var(--contact-white);
    box-shadow: 0 10px 30px rgba(32, 75, 117, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.company-contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    transform: scaleX(0);
    transform-origin: left;

    background: linear-gradient(
        90deg,
        var(--contact-primary),
        var(--contact-secondary)
    );

    transition: transform 0.35s ease;
}

.company-contact-card::after {
    content: "";

    position: absolute;
    right: -35px;
    bottom: -35px;

    width: 105px;
    height: 105px;

    border-radius: 50%;
    background: rgba(72, 107, 147, 0.06);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.company-contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(32, 75, 117, 0.25);
    box-shadow: var(--contact-shadow-hover);
}

.company-contact-card:hover::before {
    transform: scaleX(1);
}

.company-contact-card:hover::after {
    transform: scale(1.25);
    background: rgba(72, 107, 147, 0.10);
}

.company-card-icon {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 12px;

    color: var(--contact-primary);
    background: var(--contact-soft);

    font-size: 18px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.company-contact-card:hover .company-card-icon {
    color: var(--contact-white);
    background: var(--contact-primary);
    transform: rotate(-5deg);
}

.company-card-content {
    position: relative;
    z-index: 2;
}

.company-card-content h3 {
    margin: 0 0 10px;
    color: var(--contact-heading);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.company-card-content p {
    margin: 0 0 7px;
    color: var(--contact-text);
    font-size: 12px;
    line-height: 1.7;
}

.company-card-content span {
    display: block;
    color: var(--contact-primary);
    font-size: 12px;
    font-weight: 700;
}

.company-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    max-width: 100%;
    margin-top: 2px;

    color: var(--contact-primary);
    text-decoration: none;
    word-break: break-word;

    font-size: 12px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.company-card-content a:hover {
    color: var(--contact-secondary);
}


/* ======================================================
   FORM MESSAGE
====================================================== */

.contact-form-message {
    margin-top: 15px;
    padding: 12px 15px;

    border-radius: 8px;

    font-size: 12px;
    line-height: 1.5;
}

.contact-form-message.success {
    border: 1px solid #bfe6d1;
    color: #176840;
    background: #eaf8f1;
}

.contact-form-message.error {
    border: 1px solid #f0c6c6;
    color: #a42d2d;
    background: #fff0f0;
}


/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

@media (max-width: 991px) {

    .contact-page-banner {
        min-height: 270px;
    }

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 430px;
    }

    .company-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 767px) {

    .contact-container {
        width: min(100% - 30px, 1180px);
    }

    .contact-page-banner {
        min-height: 235px;
        background-position: center;
    }

    .contact-main-section {
        padding: 55px 0;
    }

    .contact-map-wrapper,
    .contact-form-wrapper {
        padding: 20px;
        border-radius: 14px;
    }

    .contact-map {
        height: 370px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-contact-section {
        padding: 60px 0 70px;
    }

}


@media (max-width: 575px) {

    .contact-container {
        width: min(100% - 24px, 1180px);
    }

    .contact-page-banner {
        min-height: 210px;
    }

    .contact-banner-content h1 {
        font-size: 44px;
    }

    .contact-breadcrumb {
        font-size: 12px;
    }

    .contact-map-wrapper,
    .contact-form-wrapper {
        padding: 16px;
    }

    .contact-map {
        height: 320px;
    }

    .map-floating-card {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .company-contact-grid {
        grid-template-columns: 1fr;
    }

    .company-contact-card {
        min-height: auto;
    }

    .contact-submit-btn {
        width: 100%;
    }

}
/* li.nav-item.ds-menu-item {
    font-size: 12px;
    color: #132b40;
    font-weight: 600;
}
li.nav-item.ds-menu-item a{
   
    color: #132b40;
   
} */
