/* ===== Custom Booking Page Styles ===== */

/* Custom Hero Section */
.custom-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--text-dark) 100%);
    color: var(--text-light);
}

.custom-hero-content {
    max-width: 900px;
    text-align: center;
}

.custom-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.custom-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e5e5e5;
}

/* Pricing Info */
.pricing-info {
    background: rgba(197, 157, 137, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.pricing-info h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.silver-note {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.pricing-info ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-info li {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.timeline {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(197, 157, 137, 0.3);
    font-style: italic;
    color: #ccc;
}

/* Booking Options Section */
.booking-options {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.booking-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cormorant Garamond', serif;
}

.tab-button:hover {
    background: rgba(197, 157, 137, 0.1);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Tab Content */
.tab-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Description */
.tab-description {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tab-description h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tab-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.tab-description ul {
    list-style: none;
    margin-top: 1.5rem;
}

.tab-description li {
    font-size: 1.1rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.tab-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Calendly Container */
.calendly-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.calendly-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(197, 157, 137, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.calendly-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.calendly-note a:hover {
    color: var(--accent-color);
}

.calendly-placeholder {
    padding: 3rem;
    background: rgba(197, 157, 137, 0.05);
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.calendly-placeholder strong {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.calendly-placeholder a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Custom Form */
.custom-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.custom-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.2rem;
}

/* File Upload Styling */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.file-upload-label:hover {
    background: transparent;
    color: var(--primary-color);
}

.file-upload-name {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.file-remove-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #d9534f;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #d9534f;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cormorant Garamond', serif;
}

.file-remove-btn:hover {
    background: #d9534f;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-hero h1 {
        font-size: 2.5rem;
    }

    .custom-intro {
        font-size: 1.1rem;
    }

    .pricing-info {
        padding: 1.5rem;
    }

    .booking-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }

    .tab-description,
    .calendly-container,
    .custom-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .custom-hero {
        padding: 6rem 5% 3rem;
    }

    .custom-hero h1 {
        font-size: 2rem;
    }

    .booking-options {
        padding: 4rem 5%;
    }
}
