/* ============================================
   ARTISAN DENTAL - EMERGENCY LANDING PAGE
   Pure CSS3 - No Frameworks
   ============================================ */

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #666666;
    line-height: 1.7;
}

a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #A01830;
}

.urgent-section {
    margin: 4rem 0;
}

.cta-container {
    min-height: 643.47px;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: #C41E3A;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #A01830;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #D4AF8A;
    border: 2px solid #D4AF8A;
}

.btn-secondary:hover {
    background-color: #E8D4C4;
    border-color: #D4AF8A;
}

.btn-map {
    background-color: #D4AF8A;
    color: #FFFFFF;
    width: 100%;
    margin-top: 2rem;
}

.btn-map:hover {
    background-color: #C9A075;
}

/* ============================================
   6. HEADER
   ============================================ */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0D5CC;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C2C2C;
}

.logo-subtitle {
    font-family: inherit;
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C41E3A;
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-icon {
    font-size: 1.2rem;
}

@media (max-width: 640px) {
    .phone-number {
        display: none;
    }

    .phone-link-container {
        gap: 10px !important;
        justify-content: flex-end !important;
    }
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #F5F1ED 0%, #FFFFFF 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E0D5CC;
    border-bottom: 1px solid #E0D5CC;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #E8D4C4 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(196, 30, 58, 0.1);
    color: #C41E3A;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #C41E3A;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    color: #2C2C2C;
}

.hero-description {
    font-size: 1.25rem;
    color: #A11830;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-photo-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    background-color: #FFFFFF;
    border-radius: 1.5rem;
    /* padding: 1.5rem; */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(1.5rem - 1.5rem);
}

.decorative-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #D4AF8A;
    border-radius: 50%;
    opacity: 0.3;
    bottom: -30px;
    right: -30px;
}

/* ============================================
   8. WHAT WE TREAT SECTION
   ============================================ */
.what-we-treat {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.what-we-treat h2 {
    text-align: center;
    color: #2C2C2C;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.treatment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #F5F1ED;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.treatment-icon {
    font-size: 2.5rem;
}

.treatment-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   9. QUICK STATS SECTION
   ============================================ */
.quick-stats {
    background-color: #F5F1ED;
    padding: 3rem 0;
    border-top: 1px solid #E0D5CC;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 0.95rem;
    color: #666666;
}

/* ============================================
   10. DOCTOR PROFILE SECTION
   ============================================ */
.doctor-profile {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
    /* --fluid-section */
    width: 100%;
    padding-block: clamp(1rem, 4vw, 4rem);
    padding-inline: clamp(1rem, 5vw, 3rem);    
}

.doctor-profile .section-inner {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 2rem);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.profile-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.doctor-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doctor-title {
    font-size: 0.9rem;
    color: #D4AF8A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.doctor-name {
    font-size: 2.5rem;
    color: #2C2C2C;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.credential-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #C41E3A;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item p {
    margin: 0;
    font-size: 0.95rem;
}

.expertise-section {
    border-top: 1px solid #E0D5CC;
    padding-top: 2rem;
}

.expertise-label {
    font-size: 1rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.expertise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid #CCC;
    margin-top: 5px;
}

.expertise-pills .pill {
    margin-top: 1rem;
}

.pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #FFF;
    color: #2C2C2C;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #CCC;
}

.profile-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-placeholder {
    width: 100%;
    background: #FFFFFF;
    border: 2px dashed #E0D5CC;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: 350px;
}

.booking-icon {
    font-size: 3rem;
}

.booking-placeholder h3 {
    color: #2C2C2C;
    margin: 0;
}

.booking-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

.booking-divider {
    width: 100%;
    height: 1px;
    background-color: #E0D5CC;
}

.booking-note {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* ============================================
   11. HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background-color: #F5F1ED;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.how-it-works h2 {
    text-align: center;
    color: #2C2C2C;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #C41E3A;
    color: #FFFFFF;
    border-radius: 50%;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin: 0;
    color: #2C2C2C;
}

.process-step p {
    margin: 0;
    font-size: 0.95rem;
}

.process-note {
    background-color: #FFFFFF;
    padding: 2rem;
    border-left: 4px solid #D4AF8A;
    border-radius: 1rem;
    margin-top: 2rem;
}

.process-note p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   12. URGENT APPOINTMENTS SECTION
   ============================================ */
.urgent-appointments {
    background-color: #F5F1ED;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.urgent-appointments h2 {
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 2rem;
}

.urgent-appointments .section-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
}

/* ============================================
   12b. ABOUT TEXT SECTION
   ============================================ */
.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   12c. EMERGENCIES SECTION
   ============================================ */
.emergencies {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.emergencies h2 {
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 2rem;
}

.emergencies .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.emergencies-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.emergency-closing {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border-left: 4px solid #C41E3A;
    border-right: 4px solid #C41E3A;
}

.emergency-closing p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   12d. WHAT TO EXPECT SECTION
   ============================================ */
.what-to-expect {
    /* background-color: #F5F1ED; */
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.what-to-expect h2 {
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.expectation-content {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expectation-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   12e. BOOKING INFO SECTION
   ============================================ */
.booking-info {
    background-color: #F5F1ED;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.booking-info h2 {
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.booking-content {
    background-color: #F5F1ED;
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.booking-content p {
    font-size: 1rem;
    line-height: 1.8;
}

.booking-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   13. BENEFITS SECTION
   ============================================ */
.benefits {
    background-color: #FFFFFF;
    padding: 3rem 0;
    border-top: 1px solid #E0D5CC;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-accent {
    width: 40px;
    height: 4px;
    background-color: #D4AF8A;
    border-radius: 2px;
}

.benefit-card h3 {
    color: #2C2C2C;
    margin: 0;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   13. CTA SECTION WITH IMAGES
   ============================================ */
.cta-section {
    background-color: #FFF;
    /* background: linear-gradient(135deg, #F5F1ED 0%, #FFFFFF 100%); */
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.clinical-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 3/4;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.cta-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    color: #2C2C2C;
}

.cta-text p {
    max-width: 600px;
    font-size: 1.05rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.95rem;
}

.cta-phone a {
    color: #C41E3A;
    font-weight: 600;
}

/* ============================================
   14. CLINIC INFO SECTION
   ============================================ */
.clinic-info {
    background-color: #FAF8F6;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
    border-bottom: 1px solid #E0D5CC;
}

.clinic-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clinic-header h2 {
    color: #2C2C2C;
}

.clinic-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.clinic-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: #FFFFFF;
    border: 1px solid #E0D5CC;
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (max-width: 640px) {
    .info-box {
        grid-template-columns: 1fr;
    }
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h3 {
    margin: 0;
    font-size: 1rem;
    color: #2C2C2C;
}

.info-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #F5F1ED;
    border-radius: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: #C41E3A;
    font-weight: 600;
    margin-left: auto;
}

.emergency-warning {
    background-color: rgba(196, 30, 58, 0.1);
    border-left: 4px solid #C41E3A;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.emergency-warning p {
    margin: 0;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* ============================================
   15. THANK YOU PAGE STYLES
   ============================================ */
.confirmation-hero {
    background: linear-gradient(135deg, #F5F1ED 0%, #FFFFFF 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.confirmation-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: #4CAF50;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-hero h1 {
    color: #2C2C2C;
    max-width: 600px;
}

.confirmation-subtitle {
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.confirmation-note {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #4CAF50;
    max-width: 600px;
}

.confirmation-note p {
    margin: 0;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.care-starts {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.care-content {
    max-width: 800px;
    margin: 0 auto;
}

.care-content h2 {
    text-align: center;
    color: #2C2C2C;
}

.care-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.care-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.care-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #F5F1ED;
    border-radius: 1rem;
    text-align: center;
}

.care-icon {
    font-size: 2rem;
}

.care-item p {
    margin: 0;
    font-weight: 500;
}

.care-closing {
    text-align: center;
    font-size: 1rem;
    margin-top: 3rem;
}

.before-appointment {
    background-color: #F5F1ED;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.before-appointment h2 {
    text-align: center;
    color: #2C2C2C;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.prep-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.prep-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.prep-card h3 {
    color: #2C2C2C;
    margin: 0 0 1rem 0;
}

.prep-card p {
    margin: 0;
    font-size: 0.95rem;
}

.warning-box {
    background-color: rgba(196, 30, 58, 0.1);
    border-left: 4px solid #C41E3A;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.warning-box p {
    margin: 0;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.faq-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.faq-section h2 {
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #F5F1ED;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #D4AF8A;
}

.faq-question {
    color: #2C2C2C;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.soft-cta {
    background-color: #F5F1ED;
    padding: 4rem 0;
    border-top: 1px solid #E0D5CC;
}

.cta-box {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.back-to-home {
    padding: 2rem 0;
    text-align: center;
}

/* ============================================
   16. FOOTER
   ============================================ */
/* .footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 0;
    color: #FFFFFF;
}
 */
/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */
/* @media (max-width: 640px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        padding: 1.5rem 1.5rem;
        width: 100%;
    }

    .clinical-images {
        grid-template-columns: 1fr;
    }

    .image-item {
        aspect-ratio: 16/9;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
} */

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 2rem;
}

.mb-lg {
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
}


/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-accordion-item {
    border: 1px solid #E0D5CC;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-header {
    width: 100%;
    padding: 2rem;
    background-color: #F5F1ED;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: inherit;
    font-size: 1.1rem;
    color: #2C2C2C;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-header:hover {
    background-color: #E8D4C4;
}

.faq-number {
    font-weight: 700;
    color: #C41E3A;
    min-width: 40px;
    font-size: 1.2rem;
}

.faq-title {
    flex: 1;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #C41E3A;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: right;
}

.faq-accordion-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #FFFFFF;
}

.faq-accordion-item.active .faq-content {
    max-height: 500px;
    padding: 2rem;
    border-top: 2px solid #D4AF8A;
}

.faq-content p {
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.phone-link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.clinic-close {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(196, 30, 58, 0.1);
    color: #C41E3A;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.clinic-close-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #C41E3A;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.clinic-open {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #9FDC8E;
    color: #2B6B19;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.clinic-open-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2B6B19;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-red-block:hover {
    color: #40C351;
}

/* ============================================
   19. BOOKING FORM STYLES
   ============================================ */
.booking-placeholder {
    width: 100%;
    background: #FFFFFF;
    border: 2px dashed #E0D5CC;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: 350px;
}

.booking-placeholder .form-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 9px;
}

.booking-placeholder form {
	width: 100%;
}

.booking-placeholder form .field-body {
	display: flex;
    flex-direction: row;
    text-align: start;
    justify-content: space-around;
	margin-bottom: 1rem;
    gap: 15px;
}

.booking-placeholder form em {
	color: red;
}

.booking-placeholder form .field-body .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.booking-placeholder form .field-body .field-group input[type="text"],
.booking-placeholder form .field-body .field-group input[type="email"],
.booking-placeholder form .field-body .field-group select {
	padding: .7rem;
	border: 1px solid #CCC;
	border-radius: 15px;
    font-family: inherit;
    font-size: 0.90rem;
}

.booking-placeholder form .field-group textarea {
	padding: .7rem;
	border: 1px solid #CCC;
	border-radius: 15px;
	height: 150px;
    font-family: inherit;
    font-size: 0.90rem;
}

.booking-placeholder form button {
	margin-top: .5rem;
	border: none;
	background-color: #C41E3A;
	color: #FFF;
	font-weight: bold;
}

.booking-icon {
    font-size: 3rem;
}

.booking-placeholder h3 {
    color: #2C2C2C;
    margin: 0;
}

.booking-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

.booking-divider {
    width: 100%;
    height: 1px;
    background-color: #E0D5CC;
}

.booking-note {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* ============================================
   SVG ICON STYLES
   ============================================ */
.accordion-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
@media(max-width:880px) {
	.booking-placeholder form .field-body {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .accordion-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    .faq-header {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .faq-number {
        min-width: 35px;
        font-size: 1rem;
    }
    .faq-toggle {
        font-size: 1.2rem;
    }
    .faq-accordion-item.active .faq-content {
        max-height: 600px;
        padding: 1.5rem;
    }
    #booking {
        margin-top: 2rem;
    }

}
@media (max-width: 600px) {
    .emergency-book-now-txt {
        font-size: 1rem;
    }
    .emergency-book-now-btn:before {
        top: 12px;
    }
    .pbmit-btn .pbmit-icon-hover:after {
        top: -6px;
    }
    .booking-placeholder {
        padding: 1.5rem;
    }
    .emergency-book-now-btn {
        margin-bottom: 2rem;
    }
}