/* ===========================
   Booking Section Styles
   =========================== */

/* ===========================
   Booking Section
   =========================== */

.booking-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(252, 195, 0, 0.02) 0%, rgba(0, 146, 68, 0.02) 50%, rgba(235, 28, 36, 0.02) 100%);
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.booking-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   Booking Card
   =========================== */

.booking-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(252, 195, 0, 0.12),
        0 8px 24px rgba(252, 195, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(252, 195, 0, 0.15),
        0 12px 32px rgba(252, 195, 0, 0.1);
}

/* ===========================
   Header
   =========================== */

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Trust Badges
   =========================== */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(252, 195, 0, 0.05) 0%, rgba(252, 195, 0, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(252, 195, 0, 0.2);
}

.booking-badge {
    animation: fadeInUp 0.6s ease-out;
}

.booking-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.booking-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.booking-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(252, 195, 0, 0.2);
}

.badge-icon svg {
    filter: brightness(0) invert(1);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
}

.badge-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.2;
}

/* ===========================
   Appointment Form
   =========================== */

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 4px rgba(252, 195, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.appointment-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.appointment-form .form-group p span {
    display: block;
}

.appointment-form .form-group p span input,
.appointment-form .form-group p span textarea {
    width: 100%;
}

.appointment-form .form-group p {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.appointment-form .form-group p br {
    display: none;
}

.appointment-form .cta-button {
    width: 100%;
}

.booking-section .form-note {
    margin-top: 32px;
}

/* ===========================
   CTA Button
   =========================== */

.cta-button {
    margin-top: 16px;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(252, 195, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(252, 195, 0, 0.4);
    background: var(--gradient-cta);
    color: #ffffff;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* ===========================
   Form Note
   =========================== */

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(252, 195, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(252, 195, 0, 0.2);
    font-size: 0.9375rem;
    color: var(--yellow-dark);
    line-height: 1.5;
    margin-top: 8px;
}

.form-note svg {
    flex-shrink: 0;
}

.form-note svg path {
    stroke: var(--yellow-dark);
}

.booking-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 195, 0, 0.2);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .booking-card {
        padding: 32px 24px;
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .booking-section {
        padding: 4rem 2rem;
    }

    .booking-badge {
        padding: 12px;
    }
}

@media (max-width: 640px) {
    .booking-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .booking-title {
        font-size: 1.75rem;
    }

    .booking-subtitle {
        font-size: 0.9375rem;
    }

    .trust-badges {
        padding: 20px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .badge-title {
        font-size: 0.9375rem;
    }

    .badge-desc {
        font-size: 0.8125rem;
    }
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-card {
    animation: fadeInUp 0.6s ease-out;
}