/* =====================================================
   CONTACT PAGE ONLY
===================================================== */


/* =====================================================
   HERO
===================================================== */

.contact-hero {

    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f4f8ff
        );

    overflow: hidden;

}


.contact-hero-content {

    max-width: 650px;

}


.contact-badge {

    display: inline-block;

    padding: 7px 18px;

    border: 1px solid #0d6efd;

    border-radius: 50px;

    color: #0d6efd;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;

}


.contact-hero h1 {

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.08;

    color: #101c3c;

    margin-bottom: 25px;

}


.contact-hero h1 span {

    color: #0d6efd;

}


.contact-hero p {

    font-size: 18px;

    line-height: 1.8;

    color: #667085;

    max-width: 600px;

}


/* =====================================================
   HERO HIGHLIGHTS
===================================================== */

.hero-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 35px;

}


.hero-highlight {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #344054;

    font-size: 14px;

}


.highlight-icon {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #0d6efd;

    border: 1px solid #b9d5ff;

    background: #ffffff;

}


/* =====================================================
   HERO VISUAL
===================================================== */

.contact-hero-visual {

    height: 390px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-paper {

    width: 170px;

    height: 130px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #0d6efd,
        #1450c8
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 65px;

    box-shadow:
        0 25px 60px rgba(13, 110, 253, 0.25);

    transform: rotate(-5deg);

    animation: floatingPaper 4s ease-in-out infinite;

}


.hero-phone-icon,
.hero-message-icon {

    position: absolute;

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0d6efd;

    font-size: 28px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);

}


.hero-phone-icon {

    left: 17%;

    top: 25%;

    animation: floatingIcon 3s ease-in-out infinite;

}


.hero-message-icon {

    right: 18%;

    top: 34%;

    animation: floatingIcon 3.5s ease-in-out infinite;

}


.hero-mail-icon {

    position: absolute;

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background: #dcecff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0d6efd;

    font-size: 32px;

    right: 15%;

    bottom: 20%;

}


.floating-circle {

    position: absolute;

    border-radius: 50%;

    background: rgba(13, 110, 253, 0.05);

}


.circle-one {

    width: 260px;

    height: 260px;

}


.circle-two {

    width: 390px;

    height: 390px;

    background: rgba(13, 110, 253, 0.025);

}


@keyframes floatingPaper {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-5deg);

    }

    50% {

        transform:
            translateY(-15px)
            rotate(-2deg);

    }

}


@keyframes floatingIcon {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-information {

    padding: 80px 0;

    background: #ffffff;

}


.contact-info-card {

    height: 100%;

    padding: 32px 28px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #e8eef7;

    box-shadow:
        0 15px 40px rgba(18, 52, 86, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


.contact-info-card:hover {

    transform: translateY(-10px);

    border-color: #b9d5ff;

    box-shadow:
        0 25px 55px rgba(13, 110, 253, 0.12);

}


.contact-card-icon {

    width: 58px;

    height: 58px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #247cff
        );

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 22px;

    box-shadow:
        0 10px 25px rgba(13, 110, 253, 0.20);

}


.contact-info-card h4 {

    font-size: 19px;

    color: #101c3c;

    margin-bottom: 12px;

}


.contact-info-card p {

    color: #667085;

    line-height: 1.7;

    min-height: 55px;

}


.contact-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: none;

    background: transparent;

    padding: 0;

    color: #0d6efd;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

}


.contact-card-link i {

    transition: transform 0.3s ease;

}


.contact-card-link:hover i {

    transform: translateX(6px);

}


/* =====================================================
   FORM SECTION
===================================================== */

.contact-form-section {

    padding: 100px 0;

    background: #f6f9ff;

}


.contact-section-tag {

    display: inline-block;

    color: #0d6efd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 15px;

}


.contact-form-section h2 {

    font-size: 42px;

    font-weight: 800;

    color: #101c3c;

    margin-bottom: 20px;

}


.contact-form-section > .container > .row
> .col-lg-5 p {

    color: #667085;

    line-height: 1.8;

    font-size: 16px;

}


.contact-form-points {

    margin-top: 30px;

}


.contact-form-points div {

    margin-bottom: 16px;

    color: #344054;

}


.contact-form-points i {

    color: #0d6efd;

    margin-right: 10px;

}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {

    background: #ffffff;

    border-radius: 25px;

    padding: 40px;

    box-shadow:
        0 25px 70px rgba(18, 52, 86, 0.08);

    border: 1px solid #edf2f8;

}


.contact-form-card h3 {

    color: #101c3c;

    font-weight: 700;

    margin-bottom: 8px;

}


.contact-form-card > p {

    color: #667085;

    margin-bottom: 25px;

}


.form-group {

    position: relative;

    margin-bottom: 17px;

}


.form-group > i {

    position: absolute;

    left: 17px;

    top: 50%;

    transform: translateY(-50%);

    color: #0d6efd;

    z-index: 2;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #d9e2ef;

    border-radius: 10px;

    padding: 14px 16px 14px 46px;

    outline: none;

    background: #ffffff;

    color: #344054;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.textarea-group > i {

    top: 22px;

    transform: none;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 4px rgba(13, 110, 253, 0.08);

}


.send-message-btn {

    width: 100%;

    border: none;

    border-radius: 10px;

    padding: 15px;

    color: white;

    font-weight: 700;

    font-size: 16px;

    background:
        linear-gradient(
            90deg,
            #123b91,
            #1683f8
        );

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.send-message-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(13, 110, 253, 0.25);

}


.send-message-btn i {

    margin-left: 8px;

}


.form-success {

    display: none;

    margin-top: 18px;

    padding: 13px;

    border-radius: 10px;

    text-align: center;

    background: #ecfdf3;

    color: #027a48;

    font-weight: 600;

}


/* =====================================================
   MAP
===================================================== */
/* =====================================================
   DURION TECHNOLOGIES
   INTERACTIVE OFFICE MAP
===================================================== */

.office-map-section {

    padding: 70px 20px;

    background: #f7faff;

}


/* =====================================================
   MAP CONTAINER
===================================================== */

.office-map-container {

    max-width: 1400px;

    margin: auto;

}


.office-map {

    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 24px;

    background: #e9f2fa;

    box-shadow:
        0 20px 60px rgba(15, 50, 100, 0.12);

}


/* =====================================================
   GOOGLE MAP
===================================================== */

.office-map iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;

    filter:
        saturate(0.9)
        brightness(1.04);

}


/* =====================================================
   MAP OVERLAY
===================================================== */

.map-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.18),
            transparent 45%,
            rgba(255,255,255,0.08)
        );

}


/* =====================================================
   FIND OFFICE CARD
===================================================== */

.find-office-card {

    position: absolute;

    top: 28px;

    left: 28px;

    width: 300px;

    padding: 24px;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(20,50,100,0.18);

    z-index: 10;

    animation:
        cardEntrance 0.9s ease forwards;

}


.find-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf3ff;

    color: #1268dc;

    border-radius: 50%;

    font-size: 21px;

    margin-bottom: 12px;

}


.find-office-card h3 {

    margin: 0 0 8px;

    color: #10265c;

    font-size: 20px;

}


.find-office-card p {

    margin: 0;

    color: #5f6f85;

    line-height: 1.6;

    font-size: 14px;

}


/* =====================================================
   CLICK ANIMATION
===================================================== */

.map-click-animation {

    position: relative;

    height: 90px;

    margin-top: 12px;

}


.mouse-pointer {

    position: absolute;

    left: 45px;

    top: 12px;

    color: #132d70;

    font-size: 35px;

    animation:
        pointerMove 2s infinite ease-in-out;

}


.dotted-path {

    position: absolute;

    width: 100px;

    height: 50px;

    left: 70px;

    top: 22px;

    border-bottom: 2px dashed #2775e8;

    border-radius: 50%;

    transform: rotate(-10deg);

}


.small-location {

    position: absolute;

    right: 55px;

    bottom: 15px;

    color: #1b70e0;

    font-size: 20px;

    animation:
        locationBounce 1.4s infinite;

}


.arrow-animation {

    position: absolute;

    right: 20px;

    top: 5px;

    color: #2775e8;

    font-size: 20px;

}


.click-map-text {

    text-align: center;

    color: #1371e8;

    margin: 0;

    font-size: 17px;

}


.find-office-card > span {

    display: block;

    text-align: center;

    margin-top: 5px;

    color: #68778b;

    font-size: 13px;

}


/* =====================================================
   OFFICE MARKER
===================================================== */

.office-marker {

    position: absolute;

     left: 58%;
    top: 43%;

    transform: translate(-50%, -50%);

    z-index: 8;

    opacity: 0;

    pointer-events: none;

} 
.office-marker.show {

    opacity: 1;

    animation:
        markerReveal 1s ease forwards;

}
.marker-pin {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1674ed;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,80,200,.35);
    position: relative;
    z-index: 3;
}
.marker-pin img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}
.marker-pulse {
    position: absolute;
    width: 110px;
    height: 110px;
    left: 58%;
    top: 43%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(25,115,235,.18);
    animation:
        markerPulse 2s infinite;

}
.marker-label {
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 10px 18px;
    background: #1674ed;
    color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow:
        0 8px 25px rgba(0,70,160,.25);
}
.marker-label strong {
    display: block;
    font-size: 13px;
}
.marker-label small {
    font-size: 11px;
    opacity: .9;
}
/* =====================================================
   WELCOME CARD
===================================================== */
.welcome-map-card {

    position: absolute;

    top: 28px;

    right: 80px;

    width: 300px;

    padding: 20px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(20,50,100,.18);

    z-index: 10;

    opacity: 0;

    transform:
        translateY(-20px)
        scale(.95);

    pointer-events: none;

}

.welcome-map-card.show {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
    pointer-events: auto;
    transition:
        all .6s cubic-bezier(.2,.8,.2,1);
}
.welcome-title {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.welcome-hand {
    font-size: 25px;
    animation:handWave 1.5s infinite;
}
.welcome-map-card h3 {
     margin: 0; 
    color: #10265c; 
    font-size: 18px; 
    line-height: 1.35; 
} 
.welcome-map-card p { 
    margin: 12px 0; 
    color: #5f6f85; 
    font-size: 14px;

} 
/* =====================================================
   MAP BUTTONS
===================================================== */
.map-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    transition: .25s;
}
.directions-btn {
    background: #176fe5;
    color: white;
}
.call-btn {
    border: 1px solid #20a860;
    color: #15954f;
    background: white;
}
.whatsapp-map-btn {
    border: 1px solid #ddd;
    color: #333;
    background: white;
    width: 100%;
}
.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,.12);
}
/* =====================================================
   TRAFFIC CARD
===================================================== */

.traffic-card {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 170px;
    padding: 14px;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    z-index: 10;
}
.traffic-title {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #27364b;
    margin-bottom: 12px;
}


.traffic-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #59677a;
    margin-top: 7px;
}


.traffic-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}


.traffic-dot.light {
    background: #ff4444;

}


.traffic-dot.smooth {
    background: #286ff0;

}


/* =====================================================
   MOVING TRAFFIC
===================================================== */

.traffic-road {
    position: absolute;
    height: 25px;
    z-index: 5;
    pointer-events: none;
}


.road-one {
    top: 35%;
    left: 10%;
    width: 40%;
}


.road-two {
    top: 62%;
    left: 30%;
    width: 45%;
}


.road-three {
    top: 75%;
    left: 5%;
    width: 35%;
}


.traffic-car {

    position: absolute;

    font-size: 20px;

    animation:
        trafficMove 7s linear infinite;

}


.red-car {

    animation-delay: 0s;

}


.yellow-car {

    animation-delay: 2s;

}


.blue-car {

    animation-delay: 4s;

}


.traffic-arrow {

    position: absolute;

    left: 55px;

    color: #6d7d92;

    font-size: 12px;

}


/* =====================================================
   MAP CLICK RIPPLE
===================================================== */

.map-click-ripple {

    position: absolute;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    border: 3px solid #1474eb;

    transform: translate(-50%, -50%) scale(0);

    opacity: 0;

    pointer-events: none;

    z-index: 20;

}


.map-click-ripple.active {

    animation:
        clickRipple .8s ease-out;

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes cardEntrance {

    from {

        opacity: 0;

        transform:
            translateX(-30px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes pointerMove {

    0%,100% {

        transform:
            translate(0,0);

    }

    50% {

        transform:
            translate(35px,20px);

    }

}


@keyframes locationBounce {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


@keyframes markerPulse {

    0% {

        transform:
            translate(-50%,-50%)
            scale(.6);

        opacity: .8;

    }

    100% {

        transform:
            translate(-50%,-50%)
            scale(1.5);

        opacity: 0;

    }

}


@keyframes markerReveal {

    0% {

        opacity: 0;

        transform:
            translate(-50%,-50%)
            scale(.3);

    }

    70% {

        transform:
            translate(-50%,-50%)
            scale(1.15);

    }

    100% {

        opacity: 1;

        transform:
            translate(-50%,-50%)
            scale(1);

    }

}


@keyframes handWave {

    0%,100% {

        transform:
            rotate(0);

    }

    25% {

        transform:
            rotate(20deg);

    }

    50% {

        transform:
            rotate(-10deg);

    }

}


@keyframes trafficMove {

    0% {

        left: 0;

        transform:
            scaleX(1);

    }

    100% {

        left: 95%;

        transform:
            scaleX(1);

    }

}


@keyframes clickRipple {

    0% {

        transform:
            translate(-50%,-50%)
            scale(.3);

        opacity: 1;

    }

    100% {

        transform:
            translate(-50%,-50%)
            scale(8);

        opacity: 0;

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 992px) {

    .office-map {

        height: 600px;

    }


    .find-office-card {

        width: 270px;

        left: 20px;

    }


    .welcome-map-card {

        right: 20px;

        width: 270px;

    }

}


@media(max-width: 768px) {

    .office-map {

        height: 650px;

    }


    .find-office-card {

        top: 15px;

        left: 15px;

        right: 15px;

        width: auto;

    }


    .welcome-map-card {

        top: auto;

        bottom: 20px;

        left: 15px;

        right: 15px;

        width: auto;

    }


    .traffic-card {

        display: none;

    }


    .office-marker {

        left: 50%;

        top: 50%;

    }


    .road-one {

        top: 45%;

    }


    .road-two {

        top: 55%;

    }


    .road-three {

        top: 65%;

    }

}


@media(max-width: 480px) {

    .office-map-section {

        padding:
            40px 12px;

    }


    .office-map {

        height: 680px;

        border-radius: 18px;

    }


    .find-office-card {

        padding: 18px;

    }


    .find-office-card h3 {

        font-size: 18px;

    }


    .welcome-map-card h3 {

        font-size: 16px;

    } .marker-label {

        font-size: 10px;

    }

}
/* =====================================================
   WHY CONTACT
===================================================== */

.why-contact-section {

    padding: 100px 0;

    background: #f6f9ff;

}


.why-contact-section h2 {

    color: #101c3c;

    font-size: 42px;

    font-weight: 800;

}


.why-card {

    height: 100%;

    padding: 35px 25px;

    text-align: center;

    border-radius: 20px;

    background: white;

    border: 1px solid #e7edf5;

    transition: 0.35s;

}


.why-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(13, 110, 253, 0.10);

}


.why-card > i {

    font-size: 42px;

    color: #0d6efd;

    margin-bottom: 20px;

}


.why-card h4 {

    color: #101c3c;

    font-size: 19px;

}


.why-card p {

    color: #667085;

    line-height: 1.7;

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal-contact {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal-contact.show {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contact-hero {

        padding: 70px 0;

    }

    .contact-hero-content {

        text-align: center;

        margin: auto;

    }

    .contact-hero p {

        margin-left: auto;
        margin-right: auto;

    }

    .hero-highlights {

        justify-content: center;

    }

    .contact-hero-visual {

        height: 320px;

        margin-top: 30px;

    }

}


@media (max-width: 767px) {

    .contact-hero h1 {

        font-size: 42px;

    }

    .contact-form-section h2,
    .map-heading h2,
    .why-contact-section h2 {

        font-size: 32px;

    }

    .contact-form-card {

        padding: 25px;

    }

    .map-container {

        height: 400px;

    }

    .map-welcome-card {

        left: 15px;

        right: 15px;

        top: 15px;

        max-width: none;

    }

    .marker-label {

        display: none;

    }

    .map-bottom-bar {

        flex-direction: column;

        align-items: flex-start;

    }

    .direction-btn {

        width: 100%;

        justify-content: center;

    }

}


@media (max-width: 480px) {

    .hero-highlights {

        flex-direction: column;

        align-items: center;

    }

    .contact-hero-visual {

        transform: scale(0.85);

    }

}
/* =====================================================
   MAP MARKER CLICK ANIMATION
===================================================== */

.map-marker-active .marker-pin {

    animation:
        markerBounce 0.8s ease;

}


.map-marker-active .marker-pulse {

    animation:
        markerPulseStrong 1s ease 2;

}


@keyframes markerBounce {

    0%,
    100% {

        transform:
            rotate(-45deg)
            translateY(0);

    }

    30% {

        transform:
            rotate(-45deg)
            translateY(-25px);

    }

    60% {

        transform:
            rotate(-45deg)
            translateY(0);

    }

    80% {

        transform:
            rotate(-45deg)
            translateY(-10px);

    }

}


@keyframes markerPulseStrong {

    0% {

        transform:
            translate(-50%, -50%)
            scale(0.7);

        opacity: 0.8;

    }

    100% {

        transform:
            translate(-50%, -50%)
            scale(2);

        opacity: 0;

    }

}


/* Business hours click */

.hours-highlight {

    animation:
        hoursGlow 1.2s ease;

}


@keyframes hoursGlow {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

        box-shadow:
            0 0 0 8px rgba(13, 110, 253, 0.08),
            0 25px 55px rgba(13, 110, 253, 0.18);

    }

}