/* =========================================================
   WAVE — CONTACT PAGE
========================================================= */


/* =========================================================
   1. CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(54, 189, 232, 0.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #eaf9fd,
            #ffffff
        );
}


.contact-hero::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -180px;
    bottom: -330px;

    border-radius: 50%;

    background:
        rgba(20, 170, 215, 0.08);

    border:
        1px solid rgba(8, 126, 164, 0.08);
}


.contact-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 70px;
}


.contact-hero h1 {
    max-width: 800px;

    margin-top: 12px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 78px);

    line-height: 0.98;

    letter-spacing: -4px;

    color: var(--blue-dark);
}


.contact-hero h1 span {
    display: block;

    color: var(--blue);
}


.contact-hero p {
    max-width: 580px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   2. BUBBLES
========================================================= */

.water-bubble {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(8,126,164,0.08);

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

    backdrop-filter: blur(5px);

    animation:
        bubbleFloat 7s ease-in-out infinite;
}


.bubble-one {
    width: 90px;
    height: 90px;

    right: 18%;

    top: 22%;
}


.bubble-two {
    width: 35px;
    height: 35px;

    right: 10%;

    top: 55%;

    animation-delay: 1s;
}


.bubble-three {
    width: 55px;
    height: 55px;

    right: 35%;

    bottom: 15%;

    animation-delay: 2s;
}


@keyframes bubbleFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-18px);
    }

}


/* =========================================================
   3. CONTACT SECTION
========================================================= */

.contact-section {
    padding: 100px 0;

    background: var(--background);
}


.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 70px;

    align-items: start;
}


/* =========================================================
   4. CONTACT INFORMATION
========================================================= */

.contact-information h2 {
    max-width: 500px;

    margin-top: 10px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--blue-dark);
}


.contact-information h2 span {
    color: var(--blue);
}


.contact-intro {
    max-width: 480px;

    margin:
        18px
        0
        28px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   5. CONTACT CARDS
========================================================= */

.contact-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    margin-bottom: 12px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: white;

    color: inherit;

    transition:
        transform 0.25s ease,
        border 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-card:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(8,126,164,0.25);

    box-shadow:
        0 12px 30px
        rgba(6,44,73,0.06);
}


.contact-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--blue-pale);

    color: var(--blue);

    font-size: 16px;
}


.contact-icon.whatsapp {
    background: #e9f9f1;

    color: #15965b;
}


.contact-card-text {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.contact-card-text span {
    color: #8ca0ad;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.contact-card-text strong {
    color: var(--blue-dark);

    font-size: 12px;
}


.contact-card-text small {
    color: var(--muted);

    font-size: 9px;
}


.contact-arrow {
    margin-left: auto;

    color: #a5b5bf;

    font-size: 11px;
}


/* =========================================================
   6. SOCIALS
========================================================= */

.contact-socials {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 25px;
}


.contact-socials > span {
    color: #8ca0ad;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.social-links {
    display: flex;

    gap: 8px;
}


.social-links a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: white;

    border:
        1px solid var(--border);

    color: var(--blue-dark);

    font-size: 12px;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.social-links a:hover {
    transform:
        translateY(-3px);

    background: var(--blue);

    color: white;
}


/* =========================================================
   7. CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 32px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 27px;

    box-shadow:
        0 20px 60px
        rgba(6,44,73,0.07);
}


.form-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}


.form-top h2 {
    margin-top: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    color: var(--blue-dark);
}


.form-water-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: var(--blue-pale);

    color: var(--blue);

    font-size: 19px;

    transform:
        rotate(8deg);
}


/* =========================================================
   8. FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;
}


.contact-form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 17px;
}


.contact-form-group label {
    color: var(--blue-dark);

    font-size: 10px;

    font-weight: 700;
}


.contact-input {
    position: relative;

    display: flex;

    align-items: center;
}


.contact-input > i {
    position: absolute;

    left: 15px;

    z-index: 2;

    color: #8da4b2;

    font-size: 12px;

    pointer-events: none;

    transition:
        color 0.2s ease;
}


.contact-input input,
.contact-input select,
.contact-input textarea {
    width: 100%;

    border:
        1px solid var(--border);

    outline: none;

    border-radius: 13px;

    background: #fbfdfe;

    color: var(--blue-dark);

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.contact-input input,
.contact-input select {
    height: 48px;

    padding:
        0
        15px
        0
        41px;
}


.contact-input textarea {
    min-height: 140px;

    resize: vertical;

    padding:
        14px
        15px
        14px
        41px;
}


.contact-input select {
    appearance: none;

    cursor: pointer;
}


.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
    border-color: var(--blue);

    background: white;

    box-shadow:
        0 0 0 4px
        rgba(8,126,164,0.08);
}


.contact-input:focus-within > i {
    color: var(--blue);
}


/* =========================================================
   9. SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 15px 30px
        rgba(8,126,164,0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


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

    box-shadow:
        0 20px 40px
        rgba(8,126,164,0.27);
}


.contact-submit i {
    transition:
        transform 0.25s ease;
}


.contact-submit:hover i {
    transform:
        translateX(5px);
}


.form-security {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 13px;

    color: #94a6b1;

    font-size: 9px;
}


.form-security i {
    color: var(--blue);
}


/* =========================================================
   10. HOURS
========================================================= */

.hours-section {
    padding:
        0
        0
        100px;

    background: var(--background);
}


.hours-card {
    display: grid;

    grid-template-columns:
        auto
        1fr
        1.2fr;

    align-items: center;

    gap: 25px;

    padding: 32px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #063652,
            #087ea4
        );

    color: white;

    box-shadow:
        0 25px 55px
        rgba(6,44,73,0.16);
}


.hours-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 18px;

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

    font-size: 21px;
}


.hours-card .section-label {
    color:
        rgba(255,255,255,0.6);
}


.hours-content h2 {
    margin-top: 5px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
}


.hours-list {
    display: flex;

    justify-content: flex-end;

    gap: 25px;
}


.hours-list div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hours-list span {
    color:
        rgba(255,255,255,0.55);

    font-size: 8px;
}


.hours-list strong {
    font-size: 10px;
}


/* =========================================================
   11. FAQ
========================================================= */

.faq-section {
    padding:
        90px
        0
        110px;

    background: white;
}


.faq-heading {
    text-align: center;

    margin-bottom: 45px;
}


.faq-heading h2 {
    margin-top: 8px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 5vw, 48px);

    letter-spacing: -2px;

    color: var(--blue-dark);
}


.faq-heading h2 span {
    color: var(--blue);
}


.faq-list {
    max-width: 850px;

    margin: auto;
}


.faq-item {
    border-bottom:
        1px solid var(--border);
}


.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 5px;

    background: transparent;

    color: var(--blue-dark);

    text-align: left;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;
}


.faq-question i {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: var(--blue-pale);

    color: var(--blue);

    font-size: 10px;

    transition:
        transform 0.3s ease;
}


.faq-item.active
.faq-question i {
    transform:
        rotate(45deg);
}


.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.3s ease;
}


.faq-answer p {
    overflow: hidden;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}


.faq-item.active
.faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active
.faq-answer p {
    padding:
        0
        5px
        22px;
}


/* =========================================================
   12. FOOTER
========================================================= */

.footer {
    padding: 35px 0;

    background: #03283d;

    color: white;
}


.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-brand p {
    margin-top: 8px;

    color:
        rgba(255,255,255,0.55);

    font-size: 9px;
}


.footer .logo {
    color: white;
}


.footer-links {
    display: flex;

    gap: 25px;
}


.footer-links a {
    color:
        rgba(255,255,255,0.65);

    font-size: 10px;

    transition:
        color 0.2s ease;
}


.footer-links a:hover {
    color: white;
}


.footer-copy {
    color:
        rgba(255,255,255,0.4);

    font-size: 9px;
}


/* =========================================================
   13. RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .contact-information {
        max-width: 700px;
    }


    .hours-card {
        grid-template-columns:
            auto
            1fr;
    }


    .hours-list {
        grid-column: 1 / -1;

        justify-content: flex-start;
    }

}


@media (max-width: 650px) {

    .contact-hero {
        min-height: 420px;
    }


    .contact-hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }


    .contact-section {
        padding: 65px 0;
    }


    .contact-form-wrapper {
        padding: 22px;

        border-radius: 21px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .hours-card {
        grid-template-columns: 1fr;

        padding: 25px;
    }


    .hours-list {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 18px;
    }


    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-links {
        order: 3;
    }

}


@media (max-width: 420px) {

    .contact-hero h1 {
        font-size: 42px;
    }


    .contact-card {
        padding: 13px;
    }


    .contact-icon {
        width: 42px;
        height: 42px;
    }


    .hours-list {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   PREMIUM CONTACT HERO IMAGE
========================================================= */

.contact-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 50px;
    width: min(1180px, 92%);
    margin: 0 auto;
}

.contact-hero-content {
    padding-top: 70px;
}

.contact-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 52px;
}

.contact-hero-visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54, 189, 232, .19),
            rgba(54, 189, 232, 0) 68%
        );
}

.contact-hero-visual img {
    position: relative;
    width: min(100%, 540px);
    filter:
        drop-shadow(
            0 30px 55px
            rgba(6, 44, 73, .12)
        );
    animation:
        contactFloat 6.5s ease-in-out infinite;
}

@keyframes contactFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.contact-hero-content p {
    position: relative;
}

@media (max-width: 900px) {

    .contact-hero-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-hero-visual {
        padding-top: 10px;
    }

    .contact-hero-visual img {
        width: min(100%, 460px);
    }
}

@media (max-width: 650px) {

    .contact-hero-layout {
        width: min(1180px, 90%);
    }

    .contact-hero-content {
        padding-top: 40px;
    }
}
