:root {
    --primary: #ec5b13;
    --background-light: #f8f6f6;
    --background-dark: #221610;
    --sage: #9db4a0;
    --nude: #f2d5c4;
    --clay: #4a3728;
    --bs-primary: #ec5b13;
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--background-light);
    color: #333;
}

/* ===== HEADING FONTS ===== */
/* Hero h1: Public Sans body + system serif for the italic accent span */
h1 {
    font-family: 'Public Sans', sans-serif;
}

h1 .fst-italic {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.font-serif {
    font-family: ui-serif,
        Georgia,
        Cambria,
        "Times New Roman",
        Times,
        serif;
}


/* All other headings: Public Sans only */
h2,
h3,
h4,
h5,
h6,
.display-heading {
    font-family: 'Public Sans', sans-serif;
}

.text-clay {
    color: var(--clay);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-cloud {
    background-color: var(--background-light);
}

.bg-sage-light {
    background-color: rgba(157, 180, 160, 0.1);
}

.bg-nude-light {
    background-color: rgba(242, 213, 196, 0.2);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px -5px rgba(236, 91, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d44d0f;
    border-color: #d44d0f;
    transform: translateY(-2px);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clay);
}

.nav-link:hover {
    color: var(--primary);
}

/* Custom Cards for Organic Luxury theme */
.luxury-card {
    border-radius: 2rem;
    border: 1px solid rgba(236, 91, 19, 0.1);
    background: #fff;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 55, 40, 0.08);
}

/* Journey Timeline Styles - Responsive Fix */
.journey-item {
    position: relative;
    padding-bottom: 4rem;
}

.journey-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: rgba(236, 91, 19, 0.2);
}

.journey-item:last-child::before {
    display: none;
}

.journey-marker {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 6px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

.font-black {
    font-weight: 900;
}

.italic {
    font-style: italic;
}

/* .hover\:bg-primary\/5:hover {
    background-color: rgb(236 91 19 / 0.05);
} */

.know-more-btn:hover {
    background-color: rgb(236 91 19 / 0.05) !important;
    color: #000 !important;
}

.font-bold {
    font-weight: 700;
}

.text-clay {
    color: #4a3728;
}

.border-primary-by-20 {
    border-color: rgb(236 91 19 / 0.2) !important;
}

.bg-primary-by-5 {
    background-color: rgb(236 91 19 / 0.05);
}

@media (min-width: 768px) {
    .journey-item::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .journey-marker {
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 767px) {
    .journey-marker {
        width: 30px !important;
        height: 30px !important;
    }
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.doctor-img {
    border-radius: 2rem;
    object-fit: cover;
    width: 100%;
    height: 350px;
}

.testimonial-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    border: none;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.06);
}

/* ===== Quiz Section Styles ===== */
.quiz-option {
    border: 2px solid rgba(236, 91, 19, 0.15);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--primary);
}

.quiz-option.active {
    border-color: var(--primary);
    background: rgba(236, 91, 19, 0.05);
}

.quiz-option .option-label {
    font-weight: 700;
    color: var(--clay);
    display: block;
}

.quiz-option .option-sub {
    font-size: 0.85rem;
    color: #aaa;
    display: block;
}

.quiz-step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    position: relative;
}

.quiz-step-circle.active {
    background: var(--primary);
    color: #fff;
}

.quiz-step-circle.inactive {
    background: #fff;
    border: 2px solid rgba(236, 91, 19, 0.2);
    color: var(--primary);
}

.quiz-step-line {
    flex: 1;
    height: 2px;
    background: rgba(236, 91, 19, 0.1);
}

/* ===== FAQ Styles ===== */
.faq-item {
    border-bottom: 1px solid rgba(236, 91, 19, 0.12);
}

.faq-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--clay);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Public Sans', sans-serif;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: #bbb;
    transition: transform 0.3s ease;
}

.faq-body {
    padding: 0 0 1.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Expert Care / Doctors Section ===== */
.doctors-section .center-img-wrap {
    border-radius: 2.5rem;
    overflow: hidden;
    height: 480px;
}

.doctors-section .side-img-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 220px;
    margin-bottom: 1rem;
}

.doctors-section .side-img-wrap img,
.doctors-section .center-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Testimonial Carousel ===== */
.testimonials-carousel .carousel-inner {
    padding-bottom: 1rem;
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(236, 91, 19, 0.3);
}

.testimonials-carousel .carousel-control-prev {
    left: -22px;
}

.testimonials-carousel .carousel-control-next {
    right: -22px;
}

.testimonials-carousel .carousel-indicators button {
    background: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
}

/* ===== CTA Section Styles ===== */
.journey-cta-section {
    background: rgba(157, 180, 160, 0.12);
    position: relative;
    overflow: hidden;
}

.journey-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: rgba(242, 213, 196, 0.4);
    border-radius: 50%;
    filter: blur(60px);
}

.journey-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(157, 180, 160, 0.3);
    border-radius: 50%;
    filter: blur(70px);
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #2d1f16 0%, #3a2718 60%, #1e1007 100%);
    color: #e8d5c8;
}

.site-footer h5 {
    color: #fff;
}

.site-footer .footer-link {
    color: rgba(232, 213, 200, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-link:hover {
    color: var(--primary);
}

.site-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.site-footer .footer-bottom {
    color: rgba(232, 213, 200, 0.4);
}

/* ===== Modal Popup ===== */
.modal-content {
    border-radius: 1.5rem;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

.form-control,
.form-select {
    border-radius: 0.75rem;
    border: 1.5px solid rgba(236, 91, 19, 0.2);
    padding: 0.75rem 1rem;
    font-family: 'Public Sans', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(236, 91, 19, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--clay);
    font-family: 'Public Sans', sans-serif;
}

.doctor-img {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.custom-bullets {
    padding-left: 20px;
}

.custom-bullets li {
    position: relative;
    padding-left: 18px;
}

.custom-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ec5b13;
    font-size: 30px;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 90px;
    height: 50px;
    width: 50px;
    color: white;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    z-index: 10;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    transition: 300ms ease-in-out;
}

.whatsapp-float a {
    color: white !important;
}

.call-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    color: white;
    text-align: center;
    font-size: 26px;
    line-height: 50px;
    z-index: 100;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    background: rgb(0, 123, 255);
    border-radius: 50%;
    transition: 300ms ease-in-out;
}

.call-float a {
    color: white !important;
}

.connect-btn {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    z-index: 999;
}

.connect-btn button {
    border-radius: 12px 12px 0 0 !important;
}

#consultModal .modal-body {
    padding: 15px 20px;
}

#consultModal .mb-3 {
    margin-bottom: 10px !important;
}

#consultModal .mb-4 {
    margin-bottom: 12px !important;
}

#consultModal .form-control,
#consultModal .form-select {
    padding: 6px 10px;
    font-size: 14px;
}

#consultModal textarea {
    height: 80px;
}

#consultModal .btn {
    padding: 10px;
}

.egg-banner-img {
    border-radius: 50% !important;
    box-shadow: inset 0 0 51px 87px #f8f6f6;

}

/* Section background */
.benefits-section {
    background: #ec5b130d;
    border-radius: 20px;
    margin-top: -50px;
    /* optional for overlap with banner */
    position: relative;
    z-index: 2;
}

/* Title */
.section-title {
    color: #ec5b13;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ec5b13;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Card */
.benefit-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Icon */
.benefit-card i {
    font-size: 18px;
    color: #ec5b13;
    flex-shrink: 0;
}

/* Text */
.benefit-card p {
    margin: 0;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    font-size: 14px;
}

/* Hover */
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(236, 91, 19, 0.12);
    border-color: #ec5b13;
}