/* ==========================================================================
   BOOK APPOINTMENT PAGE STYLES (No Shadows, Clean Modern Design)
   ========================================================================== */

/* ---------- PAGE BANNER ---------- */
.apt-banner {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A1E3D 0%, #003399 50%, #0055FF 100%);
    overflow: hidden;
}

.apt-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.apt-banner__badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.apt-banner__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.apt-banner__desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
}

.apt-banner__breadcrumb {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.apt-banner__breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.apt-banner__breadcrumb a:hover {
    opacity: 0.8;
}

.apt-banner__breadcrumb .sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.apt-banner__breadcrumb .current {
    color: #60A5FA;
    font-weight: 600;
}

/* ---------- MAIN BOOKING SECTION ---------- */
.apt-section {
    padding: 5rem 0;
    background-color: #F8FAFC;
}

.apt-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* ---------- LEFT: INFO COLUMN ---------- */
.apt-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Lawyer Profile Card (Clean Border, No Shadow) */
.apt-lawyer-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #FFFFFF;
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: none;
}

.apt-lawyer-card__avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #EFF6FF;
    border: 2px solid #0055FF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
}

.apt-lawyer-card__avatar img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.apt-lawyer-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0055FF;
    background: rgba(0, 85, 255, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.35rem;
}

.apt-lawyer-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A1E3D;
    margin: 0 0 0.25rem;
}

.apt-lawyer-card__role {
    font-size: 0.9375rem;
    color: #64748B;
    margin: 0;
}

/* Highlights List (Clean Border, No Shadow) */
.apt-highlights {
    background: #FFFFFF;
    padding: 2.25rem;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: none;
}

.apt-highlights__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0A1E3D;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F1F5F9;
}

.apt-highlight-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.apt-highlight-item:last-child {
    margin-bottom: 0;
}

.apt-highlight-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 85, 255, 0.08);
    color: #0055FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apt-highlight-item__content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A1E3D;
    margin: 0 0 0.35rem;
}

.apt-highlight-item__content p {
    font-size: 0.925rem;
    color: #556987;
    line-height: 1.55;
    margin: 0;
}

/* Chamber Contact Box (Clean Dark Card, No Shadow) */
.apt-contact-box {
    background: linear-gradient(135deg, #0A1E3D 0%, #11284E 100%);
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.apt-contact-box__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.apt-contact-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.apt-contact-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.apt-contact-box__list li svg {
    color: #38BDF8;
    flex-shrink: 0;
    margin-top: 3px;
}

.apt-contact-box__list li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.apt-contact-box__list li a:hover {
    color: #38BDF8;
}

/* ---------- RIGHT: FORM CARD (No Shadow) ---------- */
.apt-form-card {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: none;
}

.apt-form-card__header {
    margin-bottom: 2rem;
}

.apt-form-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0055FF;
    background: rgba(0, 85, 255, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.apt-form-card__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0A1E3D;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

.apt-form-card__subtitle {
    font-size: 0.95rem;
    color: #556987;
    margin: 0;
    line-height: 1.6;
}

/* Calendly Mode Embed Container */
.apt-form-card--calendly {
    padding: 2.25rem 2rem;
}

.apt-calendly-embed-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    min-height: 720px;
    box-shadow: none;
}

.apt-calendly-embed-wrapper .calendly-inline-widget {
    min-width: 320px;
    height: 720px;
    width: 100%;
}

.apt-calendly-direct-btn .apt-btn-submit {
    text-decoration: none;
}

/* Form Elements */
.custom-appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.apt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.apt-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.apt-form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A1E3D;
}

.apt-form-group label .req {
    color: #EF4444;
}

.custom-appointment-form input[type="text"],
.custom-appointment-form input[type="email"],
.custom-appointment-form input[type="tel"],
.custom-appointment-form input[type="date"],
.custom-appointment-form select,
.custom-appointment-form textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    color: #0A1E3D;
    background-color: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.custom-appointment-form input:focus,
.custom-appointment-form select:focus,
.custom-appointment-form textarea:focus {
    background-color: #FFFFFF;
    border-color: #0055FF;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.custom-appointment-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit Button */
.apt-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    background: #0055FF;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.25s ease;
}

.apt-btn-submit:hover {
    background: #0042CC;
    transform: translateY(-1px);
    box-shadow: none;
}

.apt-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.apt-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0.85rem 0 0;
    text-align: center;
}

.apt-form-note svg {
    flex-shrink: 0;
    color: #10B981;
}

/* ---------- 3-STEP PROCESS SECTION ---------- */
.apt-steps-section {
    padding: 5.5rem 0;
    background-color: #FFFFFF;
}

.apt-steps-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.apt-steps-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0055FF;
    background: rgba(0, 85, 255, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.apt-steps-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #0A1E3D;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

.apt-steps-subtitle {
    font-size: 1.05rem;
    color: #556987;
    margin: 0;
    line-height: 1.6;
}

.apt-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.apt-step-card {
    position: relative;
    background: #F8FAFC;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: none;
    transition: border-color 0.25s ease;
}

.apt-step-card:hover {
    border-color: #CBD5E1;
}

.apt-step-card__num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 85, 255, 0.12);
    line-height: 1;
}

.apt-step-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #0055FF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.apt-step-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A1E3D;
    margin: 0 0 0.5rem;
}

.apt-step-card__desc {
    font-size: 0.95rem;
    color: #556987;
    line-height: 1.6;
    margin: 0;
}

/* ---------- MAP SECTION ---------- */
.apt-map-section {
    padding: 0 0 5.5rem;
    background-color: #FFFFFF;
}

.apt-map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.apt-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #E2E8F0;
}

.apt-map-wrapper iframe {
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
    .apt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .apt-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .apt-banner {
        padding: 4.5rem 0 3.5rem;
    }

    .apt-section {
        padding: 3.5rem 0;
    }

    .apt-form-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .apt-form-row {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .apt-highlights {
        padding: 1.75rem 1.25rem;
    }

    .apt-contact-box {
        padding: 1.5rem;
    }

    .apt-steps-section {
        padding: 4rem 0;
    }

    .apt-map-section {
        padding: 0 0 3.5rem;
    }
}
