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

html { scroll-behavior: smooth; }

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

/* ============================================================
   PAGE HERO  -  title band with breadcrumb over a photo
   ============================================================ */
.ap-hero {
    position: relative;
    padding: 90px 0 80px;
    background: url('../images/book_bg.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}
.ap-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;
}
.ap-hero .container { position: relative; z-index: 1; }
.ap-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;
}
.ap-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
}
.ap-hero p {
    color: #cfe6ef;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 0 20px;
}
.ap-crumb {
    font-size: 14px;
    color: #9fc4d2;
    letter-spacing: .3px;
}
.ap-crumb a { color: #00dba5; }
.ap-crumb a:hover { color: #fff; }
.ap-crumb span { margin: 0 8px; opacity: .6; }

/* ============================================================
   SHARED HEADINGS + BUTTON
   ============================================================ */
.ap-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00bf99;
    margin-bottom: 12px;
}
.ap-h2 {
    color: #233a46;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 18px;
}
.ap-h2 b { color: #2491d0; font-weight: 800; }

.ap-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;
    border: none;
}
.ap-btn:hover,
.ap-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;
}

/* ============================================================
   TRUST STRIP  -  quick reassurance cards
   ============================================================ */
.ap-trust { padding: 64px 0 24px; background: #fff; }
.ap-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.ap-trust-card {
    text-align: center;
    padding: 32px 22px;
    border-radius: 16px;
    background: #f7fbfc;
    border: 1px solid #eef3f5;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ap-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(35, 58, 70, .12);
    border-color: rgba(0, 219, 165, .5);
}
.ap-trust-icon {
    width: 62px; height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    background: linear-gradient(135deg, #2491d0, #00dba5);
    box-shadow: 0 10px 22px rgba(0, 172, 219, .28);
}
.ap-trust-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #233a46;
}
.ap-trust-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #5b7682;
}

/* ============================================================
   MAIN  -  steps / info column + booking form card
   ============================================================ */
.ap-main { padding: 56px 0 80px; background: #fff; }
.ap-main .row { display: flex; flex-wrap: wrap; margin: 0 -15px; align-items: flex-start; }
.ap-col-info,
.ap-col-form { padding: 0 15px; }
.ap-col-info { flex: 0 0 45%; max-width: 45%; }
.ap-col-form { flex: 0 0 55%; max-width: 55%; }

/* how-it-works steps */
.ap-steps { margin: 0 0 34px; padding: 0; list-style: none; }
.ap-step {
    position: relative;
    display: flex;
    gap: 18px;
    padding-bottom: 26px;
}
.ap-step:last-child { padding-bottom: 0; }
.ap-step:not(:last-child):before {
    content: "";
    position: absolute;
    left: 22px; top: 48px; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00dba5, #d7eef5);
}
.ap-step-num {
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2491d0, #00dba5);
    box-shadow: 0 8px 18px rgba(0, 172, 219, .25);
    z-index: 1;
}
.ap-step-body h4 {
    margin: 6px 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #233a46;
}
.ap-step-body p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #5b7682;
}

/* contact mini card under the steps */
.ap-help-card {
    position: relative;
    padding: 26px 28px 26px 32px;
    border-radius: 16px;
    background: #f7fbfc;
    border: 1px solid #eef3f5;
    box-shadow: 0 8px 24px rgba(35, 58, 70, .06);
    overflow: hidden;
}
.ap-help-card:before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #2491d0, #00dba5);
}
.ap-help-card h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #2491d0;
}
.ap-help-card p {
    margin: 0 0 16px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #5b7682;
}
.ap-help-row {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #455f68;
}
.ap-help-row:last-child { margin-bottom: 0; }
.ap-help-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);
}
.ap-help-row a { color: #455f68; font-weight: 600; }
.ap-help-row a:hover { color: #2491d0; }

/* ============================================================
   BOOKING FORM CARD
   ============================================================ */
.ap-form-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px 38px;
    box-shadow: 0 18px 50px rgba(35, 58, 70, .12);
    border: 1px solid #eef3f5;
}
.ap-form-card .ap-eyebrow { margin-top: 0; }
.ap-form-note {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b818c;
    margin: 0 0 24px;
}
.ap-form-msg {
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.ap-field { margin-bottom: 18px; position: relative; }
.ap-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #233a46;
    margin-bottom: 8px;
    letter-spacing: .2px;
}
.ap-field label .ap-req { color: #e0586b; }
.ap-field input[type="text"],
.ap-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;
}
.ap-field textarea { min-height: 120px; resize: vertical; }
.ap-field input[type="text"]:focus,
.ap-field textarea:focus {
    border-color: #00bf99;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 219, 165, .14);
}
.ap-field input::placeholder,
.ap-field textarea::placeholder { color: #9bb0b9; }

/* icon sits inside the input on date/time fields */
.ap-field.has-icon input[type="text"] { padding-right: 42px; }
.ap-field.has-icon:after {
    content: "\f073"; /* calendar */
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    bottom: 13px;
    font-size: 16px;
    color: #00bf99;
    pointer-events: none;
}
.ap-field.has-icon.is-time:after { content: "\f017"; } /* clock */

/* two-up row for date + time */
.ap-field-row { display: flex; flex-wrap: wrap; gap: 18px; }
.ap-field-row .ap-field { flex: 1 1 0; min-width: 0; margin-bottom: 18px; }

/* submit button stretches full width */
.ap-form-card .ap-btn { width: 100%; padding: 15px 34px; font-size: 14px; }

.ap-form-foot {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #8aa0aa;
    text-align: center;
}
.ap-form-foot i { color: #00bf99; margin-right: 6px; }

/* hide the legacy inline "!" validator bubbles */
.ap-form-card .help { display: none; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .ap-hero { padding: 70px 0 60px; }
    .ap-hero h1 { font-size: 34px; }
    .ap-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .ap-main { padding: 44px 0 60px; }
    .ap-col-info, .ap-col-form { flex: 0 0 100%; max-width: 100%; }
    .ap-col-form { margin-top: 36px; }
}
@media (max-width: 767px) {
    .ap-hero { padding: 55px 0 50px; }
    .ap-hero h1 { font-size: 27px; }
    .ap-hero p { font-size: 15px; }
    .ap-h2 { font-size: 23px; }
    .ap-trust { padding: 46px 0 16px; }
    .ap-trust-grid { grid-template-columns: 1fr; gap: 18px; }
    .ap-form-card { padding: 30px 22px; }
    .ap-field-row { gap: 0; }
    .ap-field-row .ap-field { flex: 0 0 100%; }
    .ap-cta { padding: 52px 0; }
    .ap-cta h2 { font-size: 24px; }
}
