/* ============================================================
   contact-enhance.css
   Visual redesign for the CONTACT US page (Contact-Us.aspx) only.
   Purely additive / self-contained -- this file is linked only
   on Contact-Us.aspx, so it cannot affect other pages.
   Palette kept identical to theme.css / about-enhance.css:
     primary blue  #2491d0
     teal/green    #00dba5 / #00bf99 / #00acdb
     dark text     #233a46 / #455f68
     light bg      #f1f8f9 / #f7fbfc
   All custom classes are prefixed .ct- to avoid collisions.
   ============================================================ */

html { scroll-behavior: smooth; }

.ct-wrap * { box-sizing: border-box; }
.ct-wrap { background: #fff; }

/* ============================================================
   PAGE HERO  -  title band with breadcrumb over a photo
   ============================================================ */
.ct-hero {
    position: relative;
    padding: 90px 0 80px;
    background: url('../images/title_img_bg_contact.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}
.ct-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(20, 45, 60, .93) 0%,
        rgba(20, 60, 80, .88) 45%,
        rgba(0, 90, 110, .82) 100%);
    z-index: 0;
}
.ct-hero .container { position: relative; z-index: 1; }
.ct-hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 219, 165, .14);
    border: 1px solid rgba(0, 219, 165, .55);
    color: #00dba5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ct-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
}
.ct-hero p {
    color: #cfe6ef;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 0 20px;
}
.ct-crumb {
    font-size: 14px;
    color: #9fc4d2;
    letter-spacing: .3px;
}
.ct-crumb a { color: #00dba5; }
.ct-crumb a:hover { color: #fff; }
.ct-crumb span { margin: 0 8px; opacity: .6; }

/* ============================================================
   SHARED SECTION HEADINGS
   ============================================================ */
.ct-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00bf99;
    margin-bottom: 12px;
}
.ct-eyebrow.is-center { text-align: center; }
.ct-h2 {
    color: #233a46;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 18px;
}
.ct-h2.is-center { text-align: center; }
.ct-h2 b { color: #2491d0; font-weight: 800; }
.ct-section-sub {
    text-align: center;
    color: #6b818c;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* shared gradient button (file is standalone) */
.ct-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff !important;
    background: linear-gradient(90deg, #00acdb, #00dba5);
    box-shadow: 0 6px 16px rgba(0, 172, 219, .28);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
}
.ct-btn:hover,
.ct-btn:focus {
    background: linear-gradient(90deg, #00dba5, #00acdb);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 219, 165, .35);
    color: #fff !important;
    text-decoration: none;
}
.ct-btn.is-ghost {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, .65);
    box-shadow: none;
}
.ct-btn.is-ghost:hover { background: #fff; color: #2491d0 !important; border-color: #fff; }

/* ============================================================
   QUICK INFO STRIP  -  call / email / visit / hours cards
   ============================================================ */
.ct-quick { padding: 70px 0 30px; background: #fff; }
.ct-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.ct-info-card {
    text-align: center;
    padding: 34px 24px;
    border-radius: 16px;
    background: #f7fbfc;
    border: 1px solid #eef3f5;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ct-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(35, 58, 70, .12);
    border-color: rgba(0, 219, 165, .5);
}
.ct-info-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #2491d0, #00dba5);
    box-shadow: 0 10px 22px rgba(0, 172, 219, .28);
}
.ct-info-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #233a46;
}
.ct-info-card p,
.ct-info-card a {
    margin: 2px 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #5b7682;
    display: block;
    word-break: break-word;
}
.ct-info-card a:hover { color: #2491d0; }

/* ============================================================
   MAIN  -  clinic location cards + Get in Touch form
   ============================================================ */
.ct-main { padding: 50px 0 80px; background: #fff; }
.ct-main .row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.ct-col-info,
.ct-col-form { padding: 0 15px; }
.ct-col-info { flex: 0 0 50%; max-width: 50%; }
.ct-col-form { flex: 0 0 50%; max-width: 50%; }

/* location cards */
.ct-loc-card {
    position: relative;
    padding: 28px 28px 28px 32px;
    border-radius: 16px;
    background: #f7fbfc;
    border: 1px solid #eef3f5;
    box-shadow: 0 8px 24px rgba(35, 58, 70, .06);
    margin-bottom: 26px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ct-loc-card:before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #2491d0, #00dba5);
}
.ct-loc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(35, 58, 70, .13);
}
.ct-loc-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #2491d0;
    margin: 0 0 18px;
    line-height: 1.35;
}
.ct-loc-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #455f68;
}
.ct-loc-row:last-child { margin-bottom: 0; }
.ct-loc-row i {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #00bf99;
    background: rgba(0, 219, 165, .12);
    margin-top: 2px;
}
.ct-loc-row a { color: #455f68; }
.ct-loc-row a:hover { color: #2491d0; }

/* socials under the location cards */
.ct-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.ct-socials span {
    font-size: 14px;
    font-weight: 600;
    color: #233a46;
    margin-right: 4px;
}
.ct-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #2491d0;
    background: #eef6fb;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.ct-socials a:hover {
    background: linear-gradient(135deg, #2491d0, #00dba5);
    color: #fff;
    transform: translateY(-3px);
}

/* form card */
.ct-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 38px;
    box-shadow: 0 18px 50px rgba(35, 58, 70, .12);
    border: 1px solid #eef3f5;
}
.ct-form-card .ct-eyebrow { margin-top: 0; }
.ct-form-note {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b818c;
    margin: 0 0 26px;
}
.ct-field { margin-bottom: 18px; position: relative; }
.ct-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #233a46;
    margin-bottom: 8px;
    letter-spacing: .2px;
}
.ct-field input[type="text"],
.ct-field textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    color: #233a46;
    background: #f7fbfc;
    border: 1px solid #e1ebef;
    border-radius: 10px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    font-family: inherit;
}
.ct-field textarea { min-height: 130px; resize: vertical; }
.ct-field input[type="text"]:focus,
.ct-field textarea:focus {
    border-color: #00bf99;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 219, 165, .14);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #9bb0b9; }

/* the asp:Button gets .ct-btn but stretches full width here */
.ct-form-card .ct-btn { width: 100%; border: none; padding: 15px 34px; font-size: 14px; }

.ct-form-msg {
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

/* the inline help "!" bubbles from the original validator markup */
.ct-form-card .help { display: none; }

/* ============================================================
   MAP
   ============================================================ */
.ct-map { position: relative; line-height: 0; }
.ct-map iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
    filter: grayscale(15%);
}

/* ============================================================
   CTA BAND  -  make an appointment
   ============================================================ */
.ct-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #233a46 0%, #0c5c66 100%);
    text-align: center;
}
.ct-cta h2 { color: #fff; font-size: 30px; font-weight: 800; margin: 0 0 14px; }
.ct-cta p { color: #cfe6ef; font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto 28px; }
.ct-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ct-cta .ct-phone-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #cfe6ef;
}
.ct-cta .ct-phone-lg a { color: #00dba5; font-weight: 700; }
.ct-cta .ct-phone-lg a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .ct-hero { padding: 70px 0 60px; }
    .ct-hero h1 { font-size: 34px; }
    .ct-quick-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .ct-main { padding: 40px 0 60px; }
    .ct-col-info, .ct-col-form { flex: 0 0 100%; max-width: 100%; }
    .ct-col-form { margin-top: 34px; }
    .ct-map iframe { height: 380px; }
}
@media (max-width: 767px) {
    .ct-hero { padding: 55px 0 50px; }
    .ct-hero h1 { font-size: 27px; }
    .ct-hero p { font-size: 15px; }
    .ct-h2 { font-size: 23px; }
    .ct-quick { padding: 48px 0 20px; }
    .ct-quick-grid { grid-template-columns: 1fr; gap: 18px; }
    .ct-form-card { padding: 30px 22px; }
    .ct-cta { padding: 52px 0; }
    .ct-cta h2 { font-size: 24px; }
    .ct-map iframe { height: 300px; }
}
