/* ═══════════════════════════════════
   APPOINTMENT PAGE
═══════════════════════════════════ */

/* Banner */
.appt-banner {
    padding: 130px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.appt-banner-content { position: relative; z-index: 1; }
.appt-banner-title {
    font-size: 52px;
    color: #fff;
    font-family: 'Bodoni Moda', serif;
    margin: 12px 0 16px;
    line-height: 1.15;
}
.appt-banner-desc {
    color: rgba(255,255,255,.82);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.appt-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a96e;
}
.appt-breadcrumb a { color: #c8a96e; text-decoration: none; }
.appt-breadcrumb a:hover { color: #fff; }
.appt-breadcrumb .bc-sep { color: rgba(200,169,110,.5); font-size: 9px; }

/* Why Cards */
.appt-why-intro {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.appt-why-card {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: border-color .3s, box-shadow .3s;
}
.appt-why-card:hover {
    border-color: #c8a96e;
    box-shadow: 0 8px 28px rgba(0,0,0,.07);
}
.appt-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(200,169,110,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.appt-why-icon i {
    font-size: 22px;
    color: #c8a96e;
}
.appt-why-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px;
    color: #14100c;
    margin-bottom: 10px;
}
.appt-why-text { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }

/* Form */
.appt-form-wrap {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 10px;
    padding: 42px 40px;
}
.appt-form-intro {
    color: #666;
    font-size: 14px;
    line-height: 1.65;
    margin-top: -8px;
}
.appt-form-intro a { color: #c8a96e; text-decoration: none; }
.appt-form-intro a:hover { text-decoration: underline; }

.appt-field { margin-bottom: 20px; }
.appt-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #14100c;
    font-weight: 600;
    margin-bottom: 7px;
    font-family: 'Outfit', sans-serif;
}
.appt-field label span { color: #c8a96e; }
.appt-field input,
.appt-field select,
.appt-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color .25s;
    -webkit-appearance: none;
}
.appt-field input:focus,
.appt-field select:focus,
.appt-field textarea:focus {
    border-color: #c8a96e;
    background: #fff;
}
.appt-field textarea { resize: vertical; min-height: 100px; }

.appt-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #14100c;
    color: #c8a96e;
    border: 1px solid #c8a96e;
    padding: 15px 34px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .25s, color .25s;
    width: 100%;
    justify-content: center;
}
.appt-submit-btn:hover { background: #c8a96e; color: #14100c; }

.appt-form-note {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    text-align: center;
}
.appt-form-note i { margin-right: 4px; }

.appt-success-msg {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0faf4;
    border: 1px solid #7ec99a;
    border-radius: 6px;
    padding: 22px 24px;
    color: #1a6e3c;
}
.appt-success-msg i { font-size: 26px; margin-top: 2px; flex-shrink: 0; }
.appt-success-msg strong { display: block; font-size: 16px; margin-bottom: 4px; }
.appt-success-msg p { margin: 0; font-size: 14px; }

.appt-error-msg {
    background: #fff4f4;
    border: 1px solid #f5a0a0;
    border-radius: 6px;
    padding: 14px 20px;
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Sidebar */
.appt-sidebar-card {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 10px;
    padding: 30px 28px;
}
.appt-sidebar-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 19px;
    color: #14100c;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.appt-sidebar-title i { font-size: 17px; color: #c8a96e; }
.appt-sidebar-text { color: #666; font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.appt-sidebar-note { color: #91765a; font-size: 13px; margin: 8px 0 0; }

.appt-contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border: 1px solid #e8e0d5;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    margin-bottom: 10px;
    transition: border-color .25s, background .25s;
}
.appt-contact-link:hover {
    border-color: #c8a96e;
    background: #fdf8f2;
    text-decoration: none;
    color: #333;
}
.appt-contact-link i,
.appt-contact-link svg {
    font-size: 20px;
    color: #c8a96e;
    flex-shrink: 0;
}
.appt-contact-link span {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}
.appt-contact-link strong { font-size: 14px; color: #14100c; }
.appt-contact-wa i,
.appt-contact-wa svg { color: #25D366; }

.appt-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.appt-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f0ebe3;
    font-size: 14px;
    color: #555;
}
.appt-hours-list li:last-child { border-bottom: none; }
.appt-hours-list li.closed { color: #aaa; }

/* Services Grid */
.appt-service-card {
    display: block;
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    padding: 28px 24px;
    text-decoration: none;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    height: 100%;
}
.appt-service-card:hover {
    border-color: #c8a96e;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-4px);
    text-decoration: none;
}
.appt-service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,169,110,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.appt-service-icon i { font-size: 20px; color: #c8a96e; }
.appt-service-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px;
    color: #14100c;
    margin-bottom: 8px;
}
.appt-service-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 14px; }
.appt-service-link {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c8a96e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.appt-service-link i { font-size: 10px; transition: transform .25s; }
.appt-service-card:hover .appt-service-link i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 767px) {
    .appt-banner { padding: 100px 0 60px; }
    .appt-banner-title { font-size: 36px; }
    .appt-form-wrap { padding: 28px 20px; }
}
