/* ===== BOOKING PAGE STYLES ===== */
:root {
    --coral-glow: #FF6B9D;
    --sunset-gradient: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    --rose-gold-gradient: linear-gradient(135deg, #FFB6C1 0%, #FFA07A 50%, #FF8A65 100%);
    --deep-coffee-brown: #4A2C2A;
    --text-light: #666666;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== BOOKING HERO ===== */
.booking-hero {
    background: linear-gradient(135deg, #FFF8F3 0%, #FCF2EA 50%, #F8EDE3 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.booking-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 243, 0.9));
    backdrop-filter: blur(25px);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: var(--coral-glow);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
}

.booking-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--deep-coffee-brown);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.booking-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BOOKING FORM SECTION ===== */
.booking-form-section {
    padding: 6rem 0;
    background: #FAFAFA;
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== FORM CARD ===== */
.form-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 202, 176, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== FORM SECTIONS ===== */
.form-section {
    margin-bottom: 3rem;
}

.form-section .section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 202, 176, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section .section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--sunset-gradient);
    border-radius: 2px;
}

/* ===== FORM GROUPS ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--coral-glow);
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-glow);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== CHECKBOX STYLING ===== */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.5;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    position: relative;
    transition: var(--transition-normal);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--sunset-gradient);
    border-color: var(--coral-glow);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link,
.privacy-link {
    color: var(--coral-glow);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover,
.privacy-link:hover {
    text-decoration: underline;
}

/* ===== SUBMIT BUTTON ===== */
.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    background: var(--sunset-gradient);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.5);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== INFO SIDEBAR ===== */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 202, 176, 0.2);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    width: 40px;
    height: 40px;
    background: var(--sunset-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--coral-glow);
    width: 16px;
}

/* ===== BENEFITS LIST ===== */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--coral-glow);
    font-size: 0.9rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--sunset-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.success-content i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 2rem;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.close-success {
    background: var(--sunset-gradient);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 6rem 0 3rem;
    }

    .booking-form-section {
        padding: 4rem 0; /* Increased from 2rem */
        margin-top: 4rem; /* Additional top margin */

    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .booking-hero h1 {
        font-size: 2rem;
    }

    .form-card {
        padding: 1rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Success and Error Messages */
.success-message,
.error-message {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.success-icon i,
.error-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3,
.error-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* Mobile Scroll Fix */
html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    position: relative;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    body {
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
    }

    /* Fix for mobile form scrolling */
    .booking-form-section {
        padding: 4rem 0;
        margin-top: 3rem;

        min-height: auto;
    }

    .form-card {
        margin: 1rem;
        max-height: none;
        overflow: visible;
    }

    .booking-form {
        max-height: none;
        overflow: visible;
    }

    /* Ensure proper scrolling on mobile */
    .container {
        padding: 0 1rem;
        overflow-x: hidden;
    }

    /* Fix for iOS Safari bottom bar issues */
    .booking-hero {
        min-height: calc(100vh - 60px);
        padding-top: 100px;
    }

    /* Mobile form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px; /* Touch target size */
    }

    /* Fix mobile keyboard issues */
    input:focus,
    select:focus,
    textarea:focus {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .submit-btn:hover {
        transform: none;
    }

    .submit-btn:active {
        transform: scale(0.98);
    }
}

/* Fix for mobile Safari viewport units */
@supports (-webkit-touch-callout: none) {
    .booking-hero {
        min-height: -webkit-fill-available;
    }
}

/* Landscape mobile fix */
@media (max-width: 768px) and (orientation: landscape) {
    .booking-hero {
        min-height: auto;
        padding: 80px 0 2rem;
    }
}