/* ========================================================
   Metro IVF Darbhanga - Sections & Carousel Styling
   ======================================================== */

/* --- GENERAL SECTIONS --- */
section {
    padding: 5.5rem 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-bg);
    color: var(--champagne-gold);
    border: 1px solid rgba(200, 155, 83, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

/* ================== HERO SECTION ================== */
.hero {
    min-height: calc(100vh - 120px);
    padding-top: 3rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5EFE6 50%, #FDFBF7 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: var(--primary-slate);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 95%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--champagne-gold) 100%);
    color: var(--primary-slate);
    border: none;
    box-shadow: 0 10px 25px rgba(200, 155, 83, 0.25);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 155, 83, 0.4);
}

.btn-secondary {
    background: var(--surface-white);
    color: var(--primary-slate);
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--surface-gray);
    transform: translateY(-3px);
    border-color: var(--champagne-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-slate);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(11, 30, 51, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.trust-badge-item i {
    color: var(--champagne-gold);
}

/* Hero Auto-Sliding Visual */
.hero-visual {
    position: relative;
    height: 520px;
    width: 100%;
}

.hero-photo-slider {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-elevated);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.hero-photo-slider .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
    transform: scale(1);
}

.hero-photo-slider .slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.04);
}

.hero-photo-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 20px;
    background: linear-gradient(0deg, rgba(11, 30, 51, 0.85) 0%, rgba(11, 30, 51, 0) 100%);
    color: #fff;
    z-index: 5;
}

.hero-slide-overlay h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.hero-slide-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin: 0;
}

/* Floating Badges */
.floating-card-1, .floating-card-2 {
    position: absolute;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(11, 30, 51, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
    transition: transform 0.3s ease;
}

.floating-card-1:hover, .floating-card-2:hover {
    transform: translateY(-4px);
}

.floating-card-1 {
    top: 6%;
    right: -4%;
}

.floating-card-2 {
    bottom: 8%;
    left: -6%;
}

.floating-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow-bg);
    color: var(--champagne-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card-1 h4, .floating-card-2 h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-slate);
}

.floating-card-1 p, .floating-card-2 p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================== AUTO-SLIDING FACILITY CAROUSEL ================== */
.facility-section {
    background: var(--surface-offwhite);
    overflow: hidden;
    padding: 5.5rem 0;
}

.carousel-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.carousel-nav-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--border-light);
    background: var(--surface-white);
    color: var(--primary-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
}

.slider-btn:hover {
    background: var(--brand-yellow);
    color: var(--primary-slate);
    border-color: var(--brand-yellow);
    transform: scale(1.05);
}

.facility-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.facility-card {
    padding: 0 12px;
    box-sizing: border-box;
}

.facility-inner {
    background: var(--surface-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.facility-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(200, 155, 83, 0.4);
}

.facility-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.facility-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-inner:hover .facility-img-wrap img {
    transform: scale(1.08);
}

.facility-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 30, 51, 0.85);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.facility-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facility-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-slate);
}

.facility-body p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--champagne-gold);
}

/* ================== SERVICES / TREATMENTS ================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--surface-white);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--champagne-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(200, 155, 83, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--yellow-bg);
    color: var(--champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--brand-yellow);
    color: var(--primary-slate);
    transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--champagne-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-slate);
}

/* ================== DOCTORS SHOWCASE ================== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: var(--surface-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(200, 155, 83, 0.3);
}

.doc-image-wrapper {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #eef2f6;
}

.doc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doc-photo {
    transform: scale(1.05);
}

.doc-badge-pill {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(11, 30, 51, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.doc-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doc-top-meta {
    margin-bottom: 0.5rem;
}

.doc-curated-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e6f7ef;
    color: #0d9488;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.doc-info h3 {
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}

.doc-qual {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.doc-spec {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--champagne-gold);
    display: block;
    margin-bottom: 1rem;
}

.doc-highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: var(--surface-offwhite);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1rem;
}

.doc-stat-pill strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-slate);
}

.doc-stat-pill span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.doc-exp-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

.doc-exp-details li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-exp-details li i {
    color: var(--champagne-gold);
}

.doc-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ================== APPOINTMENT BOOKING FORM ================== */
.booking-section {
    background: linear-gradient(135deg, #FAF8F5 0%, #F5EDE0 100%);
    padding: 5.5rem 0;
    position: relative;
}

.booking-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--surface-white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(200, 155, 83, 0.2);
}

.booking-info-pane {
    background: var(--primary-slate);
    color: #fff;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.booking-info-pane::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.15) 0%, rgba(244, 197, 66, 0) 70%);
    border-radius: 50%;
}

.booking-info-pane h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.booking-info-pane p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.booking-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.booking-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.booking-features-list li i {
    color: var(--brand-yellow);
    font-size: 1.1rem;
}

.booking-helpline-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 16px;
}

.booking-helpline-card h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.booking-helpline-card a {
    color: var(--brand-yellow);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Booking Form Pane */
.booking-form-pane {
    padding: 3.5rem 3rem;
}

.booking-form-pane h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.booking-form-pane p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-slate);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: var(--surface-offwhite);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--champagne-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 155, 83, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================== IVF JOURNEY TIMELINE ================== */
.ivf-journey {
    background: var(--surface-white);
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #E2E8F0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-progress {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--brand-yellow), var(--champagne-gold));
    border-radius: 2px;
}

.journey-step {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 3.5rem;
}

.journey-step.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
}

.step-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--surface-white);
    border: 4px solid var(--champagne-gold);
    z-index: 5;
}

.step-content {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    border-radius: 20px;
    padding: 2rem;
    width: 380px;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(200, 155, 83, 0.3);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(200, 155, 83, 0.2);
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
}

/* ================== FAQ ACCORDION ================== */
.faq-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--surface-white);
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--champagne-gold);
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    width: 100%;
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-slate);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.accordion-icon {
    font-size: 0.95rem;
    color: var(--champagne-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
    padding: 0 1.75rem 1.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ================== GOOGLE MAPS & LOCATION CARD ================== */
.location-section {
    background: var(--surface-offwhite);
    padding: 5rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--surface-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border-light);
}

.map-embed-wrapper {
    width: 100%;
    height: 420px;
    position: relative;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-content {
    padding: 2.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.location-item i {
    font-size: 1.25rem;
    color: var(--champagne-gold);
    margin-top: 3px;
}

.location-item h4 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
}

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

/* ================== FOOTER ================== */
.footer {
    background: var(--primary-slate);
    color: #fff;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand .navbar-logo {
    background: #fff;
    padding: 4px;
    border-radius: 8px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 1.2rem 0 1.5rem 0;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--brand-yellow);
    color: var(--primary-slate);
    transform: translateY(-3px);
}

.footer-social-btn.wa:hover {
    background: #25D366;
    color: #fff;
}

.footer-social-btn.fb:hover {
    background: #1877F2;
    color: #fff;
}

.footer-social-btn.insta:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-yellow);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--brand-yellow);
    transform: translateX(4px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--brand-yellow);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ================== FLOATING WHATSAPP DOCTOR WIDGET ================== */
.floating-whatsapp-doctor {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ffffff;
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(11, 30, 51, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    text-decoration: none;
    border: 2px solid #25D366;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp-doctor:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.wa-doctor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25D366;
}

.wa-doctor-text {
    display: flex;
    flex-direction: column;
}

.wa-doctor-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-slate);
}

.wa-doctor-status {
    font-size: 0.72rem;
    color: #25D366;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}
