/* Chemical Peels Page Styles */
.chemical-peels-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.chemical-peels-content {
    width: 100%;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.service-script {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: #8b5a3c;
    display: block;
    margin-bottom: -0.5rem;
}

.service-caps {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b5a3c;
    display: block;
    line-height: 0.9;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(139, 90, 60, 0.3);
    border-radius: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.info-content {
    color: #8b5a3c;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.subsection-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b5a3c;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.procedure-list,
.benefits-list {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
}

.procedure-list li,
.benefits-list li {
    margin-bottom: 0.8rem;
}

.procedure-list li strong {
    color: #daa520;
    font-weight: 600;
}

.important-note {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #daa520;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0;
}

.important-note h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5a3c;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.important-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Booking Section */
.booking-section {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(139, 90, 60, 0.3);
    border-radius: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.booking-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-container {
    width: 100%;
    flex: 1;
    min-height: auto;
    overflow: visible;
    border: 2px solid rgba(139, 90, 60, 0.2);
    border-radius: 0;
    background: #fff;
    position: relative;
}

/* Cal.com embed specific styling */
.form-container #my-cal-inline-energy-devices {
    width: 100% !important;
    height: auto !important;
    min-height: 600px;
    overflow: visible !important;
    position: relative;
    padding-bottom: 2rem;
}

/* Ensure Cal.com container doesn't clip content */
.form-container {
    overflow: visible !important;
}

/* Ensure Cal.com dropdowns are visible and properly z-indexed */
.form-container [data-cal-namespace],
.form-container .cal-inline {
    position: relative;
    z-index: 1000;
    overflow: visible !important;
}

/* Fix dropdown visibility */
.form-container [data-cal-namespace] [role="listbox"],
.form-container [data-cal-namespace] [role="menu"],
.form-container [data-cal-namespace] .cal-dropdown,
.form-container [data-cal-namespace] select,
.form-container [data-cal-namespace] [data-testid],
.form-container [data-cal-namespace] [class*="dropdown"],
.form-container [data-cal-namespace] [class*="select"] {
    z-index: 1001 !important;
    position: relative;
    overflow: visible !important;
}

/* Ensure parent containers don't clip */
.form-container .info-content {
    overflow: visible !important;
}

.form-container .info-section {
    overflow: visible !important;
}

.form-container iframe {
    width: 100%;
    height: 2000px;
    min-height: 2000px;
    border: none;
    display: block;
}

/* Action Buttons */
.action-buttons-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chemical-peels-container {
        padding: 1.5rem;
    }
    
    .content-grid {
        gap: 2rem;
    }
    
    .info-section,
    .booking-section {
        padding: 2rem;
    }
    
    .service-script {
        font-size: 4rem;
    }
    
    .service-caps {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .chemical-peels-container {
        padding: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .page-title {
        margin-bottom: 2rem;
    }
    
    .service-script {
        font-size: 3.5rem;
    }
    
    .service-caps {
        font-size: 2.5rem;
    }
    
    .info-section,
    .booking-section {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .subsection-heading {
        font-size: 1.2rem;
    }
    
    .form-container {
        min-height: auto;
        flex: none;
    }
    
    .form-container iframe {
        height: 1800px;
        min-height: 1800px;
    }
    
    .form-container #my-cal-inline-energy-devices {
        min-height: 500px;
    }
    
    .action-buttons-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .chemical-peels-container {
        padding: 0.5rem;
    }
    
    .service-script {
        font-size: 3rem;
    }
    
    .service-caps {
        font-size: 2rem;
    }
    
    .info-section,
    .booking-section {
        padding: 1rem;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .subsection-heading {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .procedure-list,
    .benefits-list {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
    
    .form-container {
        min-height: auto;
        flex: none;
    }
    
    .form-container iframe {
        height: 1600px;
        min-height: 1600px;
    }
    
    .form-container #my-cal-inline-energy-devices {
        min-height: 400px;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons-container .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animations */
.page-title {
    animation: fadeIn 1s ease-out;
}

.content-grid {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.action-buttons-container {
    animation: fadeInUp 0.6s ease-out 1s both;
}

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

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

/* Service List Styling */
.service-list {
    margin-top: 2rem;
}

.service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 90, 60, 0.2);
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #8b5a3c;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5a3c;
    background: rgba(139, 90, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

/* Pricing Details for Laser Treatments */
.pricing-details {
    margin-top: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(139, 90, 60, 0.05);
    border-radius: 4px;
}

.pricing-row .area {
    flex: 1;
    font-size: 0.95rem;
    color: #8b5a3c;
    margin-right: 1rem;
}

.pricing-row .price {
    font-weight: 600;
    color: #8b5a3c;
    margin-right: 1rem;
    min-width: 120px;
}

.pricing-row .package {
    font-weight: 600;
    color: #8b5a3c;
    background: rgba(139, 90, 60, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    min-width: 150px;
    text-align: center;
} 