:root {
    --primary: #08a5df;
    --primary-dark: #078fc2;
    --primary-light: #eaf8ff;
    --text: #15202b;
    --muted: #657180;
    --background: #f6fbfe;
    --card: #ffffff;
    --border: #dcecf5;
    --shadow: 0 16px 45px rgba(18, 68, 97, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 80% 10%,
            rgba(8, 165, 223, 0.16) 0,
            rgba(8, 165, 223, 0.05) 25%,
            transparent 50%),
        linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

a {
    color: inherit;
}

.appointment-page {
    min-height: 100vh;
}

.hero {
    padding: 64px 0;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.2;
}

.lead {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.9;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.booking-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.booking-card-primary {
    border: 2px solid rgba(8, 165, 223, 0.45);
}

.card-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.booking-card h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
}

.booking-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.availability {
    font-weight: 700;
    color: var(--primary-dark) !important;
}

.opening-hours {
    margin: 2px 0 22px;
    padding: 16px;
    border-radius: 14px;
    background: #f8fbfd;
    border: 1px solid var(--border);
}

.opening-hours > strong {
    display: block;
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}

.hours-row:first-of-type {
    border-top: 0;
}

.hours-row span:last-child {
    direction: ltr;
    text-align: left;
    white-space: nowrap;
}

.btn {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(8, 165, 223, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #f7fbfd;
}

.email-btn {
    direction: ltr;
}

.practice-info {
    display: grid;
    gap: 7px;
    max-width: 760px;
    margin: 34px auto 0;
    padding: 24px 20px;
    text-align: center;
    color: var(--muted);
    line-height: 1.6;
}

.practice-info strong {
    color: var(--text);
}

.practice-info a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    .booking-options {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 30px 0;
    }

    .container {
        width: min(100% - 22px, 1180px);
    }

    .intro {
        margin-bottom: 26px;
    }

    .booking-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .hours-row {
        align-items: flex-start;
        font-size: 0.92rem;
    }
}
