/* -------------------------------- */
/* BREADCRUMB */
/* -------------------------------- */

.breadcrumb-bar {
    background: #f5f7fa;
    padding: 12px 0;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-bar span b,
.breadcrumb-bar span strong {
    color: #1a3d7c;
}

/* -------------------------------- */
/* CONTACT SECTION */
/* -------------------------------- */

.contact-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 16px;
    color: #6b7280;
}

/* -------------------------------- */
/* SOCIAL BAR */
/* -------------------------------- */

.social-bar {
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e5cb8;
    padding: 30px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-bar a:hover {
    background: #ffffff;
    color: #1e5cb8;
}

/* -------------------------------- */
/* CONTACT FORM */
/* -------------------------------- */

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e40af;
}

.contact-form input,
.contact-form textarea {
    font-size: 14px;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
}

.contact-form textarea {
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 1px #1e40af;
}

.btn-send {
    background: #1e5cb8;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    transition: .3s;
    width: 100%;
}

.btn-send:hover {
    background: #1e40af;
}

/* -------------------------------- */
/* MAP */
/* -------------------------------- */

.map-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* -------------------------------- */
/* CONTACT INFO CARDS */
/* -------------------------------- */

.contact-info {
    padding: 90px 0;
    background: #f6f7fb;
}

.info-card {
    position: relative;
    background: #ffffff;
    padding: 60px 35px;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .4s ease;
    height: 100%;
}

/* ICON */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 30px;
    z-index: 5;
    position: relative;
}

/* TITLE */
.info-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
    text-decoration: underline;
    z-index: 5;
    position: relative;
}

/* TEXT */
.info-card p,
.info-card li {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    z-index: 5;
    position: relative;
}

.info-card ul {
    padding-left: 18px;
    text-align: left;
    margin-top: 15px;
}

/* -------------------------------- */
/* WATER FILL ANIMATION */
/* -------------------------------- */

.wave,
.wave.wave2 {
    position: absolute;
    left: -25%;
    width: 150%;
    height: 200%;
    bottom: -140%;
    border-radius: 40%;
    background: #0284c7;
    opacity: 0.85;
    transition: bottom 1.2s ease;
    animation: waveMove 4s linear infinite;
    z-index: 1;
}

.wave.wave2 {
    background: #0ea5e9;
    opacity: 0.65;
    animation: waveMoveReverse 5s linear infinite;
}

/* Wave motion */
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes waveMoveReverse {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* HOVER = WATER FILLS UP */
.info-card:hover .wave { bottom: -20%; }
.info-card:hover .wave.wave2 { bottom: -30%; }

.info-card:hover h5,
.info-card:hover p,
.info-card:hover li {
    color: #fff;
}

.info-card:hover .icon-circle {
    background: #fff;
    color: #0284c7;
}

/* -------------------------------- */
/* CTA SECTION */
/* -------------------------------- */

.cta-about {
    background: url("../images/footer_image.jpg") center/cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.cta-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.cta-about .container {
    position: relative;
    z-index: 2;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    padding: 14px 38px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-cta:hover {
    background: #1e40af;
    color: #fff;
}

/* -------------------------------- */
/* RESPONSIVE */
/* -------------------------------- */

@media (max-width: 991px) {

    .contact-section {
        padding: 70px 0;
    }

    .social-bar {
        position: relative;
        flex-direction: row;
        left: auto;
        top: auto;
        transform: none;
        gap: 15px;
        padding: 15px;
        margin-bottom: 20px;
        justify-content: center;
    }

    .map-box iframe {
        height: 320px;
    }
}

@media (max-width: 576px) {

    .section-title {
        font-size: 28px;
    }

    .cta-about h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}