/* =========================================================
   ELIS DENTAL CLINIC
   CONTACT US PAGE
   PREMIUM CONTACT PAGE DESIGN
========================================================= */


/* =========================================================
   CONTACT PAGE VARIABLES
========================================================= */

:root {

    --contact-primary: #0b74b8;
    --contact-primary-dark: #075985;
    --contact-primary-light: #eaf7ff;

    --contact-accent: #14b8a6;

    --contact-dark: #0b1f33;
    --contact-text: #334155;
    --contact-muted: #64748b;

    --contact-white: #ffffff;
    --contact-bg: #f7fbfe;
    --contact-soft: #eef7fb;

    --contact-border: #dbe8ef;

    --contact-shadow:
        0 20px 60px rgba(11, 31, 51, 0.08);

    --contact-shadow-hover:
        0 28px 70px rgba(11, 31, 51, 0.14);

    --contact-radius: 20px;

}


/* =========================================================
   GENERAL CONTACT PAGE
========================================================= */

.contact-page-hero,
.contact-introduction,
.contact-information,
.contact-main,
.clinic-location,
.contact-appointment-cta,
.final-cta {

    position: relative;

}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-page-hero {

    min-height: 560px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            120deg,
            rgba(4, 30, 52, 0.96),
            rgba(6, 82, 124, 0.88)
        ),

        url("../images/contact-hero.jpg")
        center / cover
        no-repeat;

}


/* Decorative background */

.contact-page-hero::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.10);

    right: -150px;

    top: -180px;

}


.contact-page-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    left: -120px;

    bottom: -130px;

}


.contact-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(20,184,166,0.18),
            transparent 30%
        );

    pointer-events: none;

}


.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding-top: 70px;

    padding-bottom: 70px;

}


.contact-page-hero .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

}


.contact-page-hero h1 {

    max-width: 800px;

    margin: 0 0 24px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 6vw, 72px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}


.contact-page-hero h1 span {

    display: block;

    color: #65d9ff;

}


.contact-page-hero p {

    max-width: 690px;

    margin: 0 0 32px;

    color: rgba(255,255,255,0.82);

    font-family: "DM Sans", sans-serif;

    font-size: 18px;

    line-height: 1.8;

}


.contact-breadcrumb {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 11px 18px;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    color: rgba(255,255,255,0.75);

    font-size: 14px;

}


.contact-breadcrumb a {

    color: #ffffff;

    font-weight: 600;

    text-decoration: none;

}


.contact-breadcrumb i {

    font-size: 10px;

    opacity: 0.7;

}


/* =========================================================
   CONTACT INTRODUCTION
========================================================= */

.contact-introduction {

    padding-bottom: 35px;

}


.contact-introduction .section-heading {

    max-width: 850px;

    margin-left: auto;

    margin-right: auto;

}


.contact-introduction .section-heading h2 {

    max-width: 760px;

    margin-left: auto;

    margin-right: auto;

}


.contact-introduction .section-heading p {

    max-width: 720px;

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   CONTACT INFORMATION SECTION
========================================================= */

.contact-information {

    padding-top: 30px;

    padding-bottom: 90px;

    background: var(--contact-bg);

}


.contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-info-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 285px;

    padding: 30px 27px;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    border-radius: var(--contact-radius);

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(11,31,51,0.05);

    text-decoration: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


.contact-info-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--contact-primary),
            var(--contact-accent)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;

}


.contact-info-card:hover {

    transform: translateY(-8px);

    border-color: rgba(11,116,184,0.25);

    box-shadow: var(--contact-shadow-hover);

}


.contact-info-card:hover::before {

    transform: scaleX(1);

}


/* =========================================================
   CONTACT INFO ICON
========================================================= */

.contact-info-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    background: var(--contact-primary-light);

    color: var(--contact-primary);

    font-size: 22px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.contact-info-card:hover
.contact-info-icon {

    background: var(--contact-primary);

    color: #ffffff;

    transform: scale(1.06);

}


/* =========================================================
   CONTACT INFO CONTENT
========================================================= */

.contact-info-content {

    flex: 1;

}


.contact-info-content > span {

    display: block;

    margin-bottom: 8px;

    color: var(--contact-primary);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-info-content h3 {

    margin: 0 0 12px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.3;

}


.contact-info-content p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   CONTACT CARD ARROW
========================================================= */

.contact-card-arrow {

    position: absolute;

    right: 25px;

    bottom: 26px;

    color: var(--contact-primary);

    font-size: 14px;

    transition:
        transform 0.3s ease;

}


.contact-info-card:hover
.contact-card-arrow {

    transform: translateX(6px);

}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    padding-top: 100px;

    padding-bottom: 110px;

    background: #ffffff;

}


.contact-main-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(320px, 0.8fr);

    gap: 55px;

    align-items: start;

}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {

    padding: 48px;

    border: 1px solid var(--contact-border);

    border-radius: 28px;

    background: #ffffff;

    box-shadow: var(--contact-shadow);

}


.contact-form-heading {

    max-width: 650px;

    margin-bottom: 38px;

}


.contact-form-heading .section-tag {

    margin-bottom: 15px;

}


.contact-form-heading h2 {

    margin: 0 0 14px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;

}


.contact-form-heading h2 span {

    color: var(--contact-primary);

}


.contact-form-heading p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   NETLIFY HONEYPOT
========================================================= */

.hidden-field {

    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    overflow: hidden !important;

}


/* =========================================================
   CONTACT FORM GRID
========================================================= */

.contact-form-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px 22px;

}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    min-width: 0;

}


.form-group-full {

    grid-column: 1 / -1;

}


.form-group label {

    display: block;

    margin-bottom: 9px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;

}


.form-group label span {

    color: #ef4444;

    margin-left: 2px;

}


/* =========================================================
   FORM INPUT WRAPPER
========================================================= */

.form-input-wrapper {

    position: relative;

}


.form-input-wrapper > i {

    position: absolute;

    top: 50%;

    left: 17px;

    z-index: 2;

    color: #8ba2b1;

    font-size: 15px;

    transform: translateY(-50%);

    pointer-events: none;

    transition: color 0.25s ease;

}


.form-input-wrapper textarea + i {

    top: 20px;

    transform: none;

}


/* =========================================================
   INPUTS
========================================================= */

.form-input-wrapper input,
.form-input-wrapper select,
.form-input-wrapper textarea {

    width: 100%;

    border: 1px solid #d8e4ea;

    border-radius: 13px;

    outline: none;

    background: #f9fcfd;

    color: var(--contact-dark);

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}


.form-input-wrapper input,
.form-input-wrapper select {

    height: 57px;

    padding:
        0 18px 0 47px;

}


.form-input-wrapper textarea {

    min-height: 165px;

    padding: 18px 18px 18px 47px;

    resize: vertical;

    line-height: 1.7;

}


.form-input-wrapper select {

    cursor: pointer;

    appearance: auto;

}


.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder {

    color: #9aaebb;

}


.form-input-wrapper input:hover,
.form-input-wrapper select:hover,
.form-input-wrapper textarea:hover {

    border-color: #b9d5e2;

    background: #ffffff;

}


.form-input-wrapper input:focus,
.form-input-wrapper select:focus,
.form-input-wrapper textarea:focus {

    border-color: var(--contact-primary);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(11,116,184,0.09);

}


.form-input-wrapper:focus-within > i {

    color: var(--contact-primary);

}


/* =========================================================
   TEXTAREA
========================================================= */

.textarea-wrapper {

    display: block;

}


.textarea-wrapper > i {

    top: 20px;

    transform: none;

}


/* =========================================================
   CONTACT FORM FOOTER
========================================================= */

.contact-form-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #e7eef2;

}


.contact-form-footer p {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    max-width: 400px;

    margin: 0;

    color: var(--contact-muted);

    font-size: 12px;

    line-height: 1.6;

}


.contact-form-footer p i {

    margin-top: 2px;

    color: var(--contact-primary);

}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit {

    min-width: 190px;

    justify-content: center;

    white-space: nowrap;

}


.contact-submit i {

    transition:
        transform 0.3s ease;

}


.contact-submit:hover i {

    transform: translateX(5px);

}


/* =========================================================
   CONTACT SIDEBAR
========================================================= */

.contact-sidebar {

    display: flex;

    flex-direction: column;

    gap: 25px;

    position: sticky;

    top: 110px;

}


/* =========================================================
   SIDEBAR CARD
========================================================= */

.contact-sidebar-card {

    padding: 32px;

    border-radius: 22px;

    border: 1px solid var(--contact-border);

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(11,31,51,0.06);

}


.sidebar-card-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: var(--contact-primary-light);

    color: var(--contact-primary);

    font-size: 21px;

}


.sidebar-card-label {

    display: block;

    margin-bottom: 8px;

    color: var(--contact-primary);

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-sidebar-card h3 {

    margin: 0 0 22px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    font-weight: 800;

}


/* =========================================================
   OPENING HOURS
========================================================= */

.opening-hours {

    display: flex;

    flex-direction: column;

}


.opening-hours-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 12px 0;

    border-bottom: 1px dashed #dbe7ed;

}


.opening-hours-row:last-child {

    border-bottom: 0;

}


.opening-hours-row span {

    color: var(--contact-text);

    font-size: 13px;

}


.opening-hours-row strong {

    color: var(--contact-dark);

    font-size: 12px;

    font-weight: 700;

    text-align: right;

}


.opening-hours-row.closed strong {

    color: #ef4444;

}


/* =========================================================
   QUICK CONTACT CARD
========================================================= */

.quick-contact-card {

    color: #ffffff;

    border: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #075985,
            #0b74b8
        );

    box-shadow:
        0 25px 60px rgba(7,89,133,0.20);

}


.quick-contact-card .sidebar-card-label {

    color: #7ee7ff;

}


.quick-contact-card h3 {

    color: #ffffff;

    margin-bottom: 12px;

}


.quick-contact-card p {

    margin: 0 0 24px;

    color: rgba(255,255,255,0.76);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   QUICK CONTACT LINKS
========================================================= */

.quick-contact-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.quick-contact-links a {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    color: #ffffff;

    background: rgba(255,255,255,0.07);

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.quick-contact-links a:hover {

    background: rgba(255,255,255,0.14);

    transform: translateX(4px);

}


.quick-contact-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(255,255,255,0.13);

}


.quick-contact-links a > span:last-child {

    display: flex;

    flex-direction: column;

    min-width: 0;

}


.quick-contact-links small {

    color: rgba(255,255,255,0.62);

    font-size: 10px;

    margin-bottom: 2px;

}


.quick-contact-links strong {

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    overflow-wrap: anywhere;

}


/* =========================================================
   CLINIC LOCATION
========================================================= */

.clinic-location {

    padding-top: 110px;

    padding-bottom: 110px;

    background: var(--contact-bg);

}


.clinic-location .section-heading {

    max-width: 760px;

    margin-left: auto;

    margin-right: auto;

}


.clinic-location-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 40px;

    align-items: stretch;

    margin-top: 55px;

}


/* =========================================================
   LOCATION DETAILS
========================================================= */

.clinic-location-details {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.location-detail-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border: 1px solid var(--contact-border);

    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(11,31,51,0.04);

}


.location-detail-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: var(--contact-primary-light);

    color: var(--contact-primary);

}


.location-detail-card span {

    display: block;

    margin-bottom: 5px;

    color: var(--contact-primary);

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.location-detail-card h3 {

    margin: 0 0 6px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 800;

}


.location-detail-card p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   LOCATION BUTTON
========================================================= */

.location-button {

    width: 100%;

    justify-content: center;

    margin-top: 5px;

}


/* =========================================================
   CLINIC MAP
========================================================= */

.clinic-map {

    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 25px;

    border: 5px solid #ffffff;

    background: #dceef5;

    box-shadow: var(--contact-shadow);

}


.clinic-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 510px;

    border: 0;

    filter:
        saturate(0.85)
        contrast(1.02);

}


/* =========================================================
   MAP OVERLAY CARD
========================================================= */

.map-overlay-card {

    position: absolute;

    left: 22px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: calc(100% - 44px);

    padding: 13px 17px;

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 14px;

    background: rgba(255,255,255,0.94);

    box-shadow:
        0 10px 30px rgba(11,31,51,0.15);

    backdrop-filter: blur(12px);

}


.map-overlay-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--contact-primary);

    color: #ffffff;

}


.map-overlay-card > div:last-child {

    display: flex;

    flex-direction: column;

}


.map-overlay-card strong {

    color: var(--contact-dark);

    font-size: 13px;

    font-weight: 800;

}


.map-overlay-card span {

    color: var(--contact-muted);

    font-size: 11px;

}


/* =========================================================
   APPOINTMENT CTA
========================================================= */

.contact-appointment-cta {

    padding: 80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #075985,
            #0b74b8
        );

}


.contact-appointment-cta::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    right: -170px;

    top: -170px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

}


.contact-appointment-cta::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    left: -140px;

    bottom: -150px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

}


.contact-appointment-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 30px;

}


.contact-appointment-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 20px;

    background: rgba(255,255,255,0.10);

    color: #ffffff;

    font-size: 28px;

}


.contact-appointment-text .section-tag {

    margin-bottom: 10px;

}


.contact-appointment-text h2 {

    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(27px, 3.5vw, 42px);

    font-weight: 800;

    line-height: 1.15;

}


.contact-appointment-text h2 span {

    color: #72e1ff;

}


.contact-appointment-text p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 14px;

    line-height: 1.7;

}


.contact-appointment-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


.contact-appointment-buttons .btn {

    white-space: nowrap;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #061827,
            #0b2d43
        );

}


.final-cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.final-cta h2 {

    margin: 8px 0 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(28px, 4vw, 45px);

    font-weight: 800;

    line-height: 1.15;

}


.final-cta h2 span {

    color: #68dcff;

}


.final-cta .btn {

    flex-shrink: 0;

}


/* =========================================================
   BUTTON ENHANCEMENTS
========================================================= */

.contactus-page .btn {

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.contactus-page .btn:hover {

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE NAVIGATION SUPPORT
========================================================= */

@media (max-width: 1100px) {

    .contact-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-main-grid {

        grid-template-columns:
            1fr;

    }


    .contact-sidebar {

        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

    }


    .clinic-location-grid {

        grid-template-columns:
            1fr;

    }


    .clinic-location-details {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

    }


    .location-button {

        grid-column: 1 / -1;

    }


    .clinic-map {

        min-height: 450px;

    }


    .clinic-map iframe {

        min-height: 450px;

    }


    .contact-appointment-content {

        grid-template-columns:
            auto 1fr;

    }


    .contact-appointment-buttons {

        grid-column: 1 / -1;

        margin-left: 105px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .contact-page-hero {

        min-height: 510px;

    }


    .contact-hero-content {

        padding-top: 55px;

        padding-bottom: 55px;

    }


    .contact-page-hero h1 {

        letter-spacing: -1.5px;

    }


    .contact-form-wrapper {

        padding: 35px 28px;

        border-radius: 22px;

    }


    .contact-sidebar {

        grid-template-columns:
            1fr;

    }


    .clinic-location-details {

        grid-template-columns:
            1fr;

    }


    .location-button {

        grid-column: auto;

    }


    .contact-appointment-content {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .contact-appointment-icon {

        margin: 0 auto;

    }


    .contact-appointment-text p {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-appointment-buttons {

        grid-column: auto;

        margin-left: 0;

        justify-content: center;

    }


    .final-cta-content {

        flex-direction: column;

        text-align: center;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-page-hero {

        min-height: 490px;

    }


    .contact-page-hero h1 {

        font-size: 40px;

        line-height: 1.08;

    }


    .contact-page-hero p {

        font-size: 15px;

        line-height: 1.7;

    }


    .contact-breadcrumb {

        font-size: 12px;

    }


    .contact-information {

        padding-top: 15px;

        padding-bottom: 65px;

    }


    .contact-info-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .contact-info-card {

        min-height: auto;

        padding: 25px;

    }


    .contact-info-icon {

        width: 52px;

        height: 52px;

        margin-bottom: 18px;

    }


    .contact-main {

        padding-top: 70px;

        padding-bottom: 75px;

    }


    .contact-form-wrapper {

        padding: 27px 20px;

        border-radius: 20px;

    }


    .contact-form-grid {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .form-group-full {

        grid-column: auto;

    }


    .contact-form-heading {

        margin-bottom: 30px;

    }


    .contact-form-heading h2 {

        font-size: 31px;

    }


    .contact-form-footer {

        flex-direction: column;

        align-items: stretch;

    }


    .contact-form-footer p {

        max-width: none;

    }


    .contact-submit {

        width: 100%;

    }


    .contact-sidebar-card {

        padding: 25px 21px;

    }


    .opening-hours-row {

        gap: 10px;

    }


    .opening-hours-row span {

        font-size: 12px;

    }


    .opening-hours-row strong {

        font-size: 11px;

    }


    .clinic-location {

        padding-top: 75px;

        padding-bottom: 75px;

    }


    .clinic-location-grid {

        margin-top: 35px;

        gap: 25px;

    }


    .location-detail-card {

        padding: 19px;

    }


    .clinic-map {

        min-height: 380px;

        border-radius: 18px;

    }


    .clinic-map iframe {

        min-height: 380px;

    }


    .map-overlay-card {

        left: 13px;

        bottom: 13px;

        max-width: calc(100% - 26px);

    }


    .contact-appointment-cta {

        padding: 65px 0;

    }


    .contact-appointment-text h2 {

        font-size: 30px;

    }


    .contact-appointment-buttons {

        width: 100%;

        flex-direction: column;

    }


    .contact-appointment-buttons .btn {

        width: 100%;

        justify-content: center;

    }


    .final-cta {

        padding: 60px 0;

    }


    .final-cta h2 {

        font-size: 30px;

    }


    .final-cta .btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .contact-page-hero h1 {

        font-size: 35px;

    }


    .contact-form-wrapper {

        padding: 23px 16px;

    }


    .contact-sidebar-card {

        padding: 22px 17px;

    }


    .contact-info-card {

        padding: 22px;

    }


    .contact-info-content h3 {

        font-size: 18px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.contact-info-card:focus-visible,
.quick-contact-links a:focus-visible,
.contact-breadcrumb a:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.location-button:focus-visible {

    outline: 3px solid rgba(11,116,184,0.25);

    outline-offset: 3px;

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-info-card,
    .contact-info-card::before,
    .contact-info-icon,
    .contact-card-arrow,
    .quick-contact-links a,
    .contact-submit i {

        transition: none;

    }

}