/* ==========================================================================
   assets/css/style_publik.css
   Desain Utama Tampilan Publik Zona Dental
   ========================================================================== */

:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --accent: #FF4081;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #FFF0F5;
    --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background-color: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 700; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(233, 30, 99, 0); } 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(5deg); } }

.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--primary)); width: 0%; z-index: 1000; transition: width 0.1s ease; }

.section-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 10px; animation: fadeInDown 0.8s ease; }
.section-title { font-size: 2.4rem; margin-bottom: 40px; animation: fadeInUp 0.8s ease; }
.section-title span { color: var(--primary); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none; font-size: 0.95rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: var(--white); box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: rgba(233, 30, 99, 0.05); transform: translateY(-3px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); z-index: 999; padding: 15px 0; transition: all 0.3s ease; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { max-width: 170px; height: auto; display: block; transition: transform 0.3s ease; }
.nav-logo:hover { transform: scale(1.03); }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 25px; }
.nav-link { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.3s ease; font-size: 0.95rem; position: relative; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--primary); transition: width 0.3s ease; }
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); border-radius: 12px; list-style: none; padding: 10px 0; min-width: 140px; opacity: 0; visibility: hidden; transition: all 0.3s ease; text-align: center; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 8px 20px; color: var(--text-dark); text-decoration: none; transition: background 0.2s, color 0.2s; }
.nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: transparent; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { width: 100%; height: 3px; background-color: var(--text-dark); border-radius: 2px; transition: all 0.3s ease; }
.mobile-cta-wrapper { display: none; }

/* HERO SECTION */
.hero { position: relative; padding: 190px 0 130px 0; background: radial-gradient(circle at top right, rgba(248, 187, 208, 0.3), transparent 50%), radial-gradient(circle at bottom left, rgba(233, 30, 99, 0.08), transparent 40%), var(--white); overflow: hidden; }
.hero-background { position: absolute; inset: 0; pointer-events: none; }
.floating-element { position: absolute; color: var(--primary-light); opacity: 0.4; font-size: 1.8rem; animation: float 6s ease-in-out infinite; }
.hero-glow-blob { position: absolute; top: 20%; right: -5%; width: 450px; height: 450px; background: linear-gradient(135deg, rgba(233, 30, 99, 0.18), rgba(255, 64, 129, 0.06)); filter: blur(80px); border-radius: 50%; z-index: 1; pointer-events: none; }
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 50px; position: relative; z-index: 2; }
.hero-badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-light); color: var(--primary); padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; border: 1px solid rgba(233, 30, 99, 0.15); box-shadow: 0 4px 15px rgba(233, 30, 99, 0.06); animation: fadeInDown 0.8s ease; }
.hero-title { font-size: 3.5rem; line-height: 1.15; color: var(--text-dark); margin-bottom: 20px; animation: fadeInDown 0.9s ease; }
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; line-height: 1.7; animation: fadeInUp 0.9s ease 0.2s both; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 35px; animation: fadeInUp 0.9s ease 0.4s both; }
.feature-badge { display: flex; align-items: center; gap: 8px; background: var(--white); padding: 10px 18px; border-radius: 35px; font-size: 0.85rem; font-weight: 600; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04); border: 1px solid rgba(233, 30, 99, 0.08); transition: all 0.3s ease; }
.feature-badge:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.12); }
.hero-cta { display: flex; gap: 15px; animation: fadeInUp 0.9s ease 0.6s both; }

/* VISUAL SHOWCASE KANAN */
.hero-image { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual-container { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.hero-main-card { position: absolute; inset: 20px; background: linear-gradient(145deg, #ffffff, var(--bg-light)); border-radius: 35px; box-shadow: 0 25px 60px rgba(233, 30, 99, 0.15); border: 2px solid rgba(233, 30, 99, 0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 35px; text-align: center; overflow: hidden; animation: float 6s ease-in-out infinite; }
.hero-card-inner-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: var(--primary-light); filter: blur(40px); border-radius: 50%; opacity: 0.6; }
.hero-icon-cluster { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; position: relative; z-index: 2; }
.cluster-icon { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2); }
.doctor-icon-box { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; }
.tooth-icon-box { background: #ffffff; color: var(--primary); border: 2px solid var(--primary-light); }
.cluster-connector { width: 30px; height: 3px; background: var(--primary-light); border-radius: 2px; }
.hero-card-heading { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 8px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.hero-card-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }
.hero-card-status-badge { display: inline-flex; align-items: center; gap: 8px; background: #ecfdf5; color: #059669; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid #a7f3d0; }
.pulsing-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 rgba(16, 185, 129, 0.4); animation: pulseGlow 2s infinite; }
.hero-floating-badge { position: absolute; background: var(--white); padding: 12px 20px; border-radius: 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); border: 1px solid rgba(233, 30, 99, 0.1); z-index: 3; }
.badge-doctor-float { top: 10px; left: -20px; animation: float 5s ease-in-out infinite alternate; }
.badge-rating-float { bottom: 15px; right: -15px; animation: float 4.5s ease-in-out infinite alternate-reverse; }
.badge-icon-wrap { width: 40px; height: 40px; background: var(--bg-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); }
.badge-subtext { display: block; font-size: 0.72rem; color: var(--text-light); }
.badge-maintext { font-size: 0.82rem; color: var(--text-dark); font-weight: 700; }
.floating-star-box { width: 45px; height: 45px; background: #FFF9C4; color: #FBC02D; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(251, 192, 45, 0.2); }

/* JAM OPERASIONAL */
.insurance-partners-modern { margin-top: -55px; padding-bottom: 40px; position: relative; z-index: 10; }
.insurance-modern-wrapper { background: var(--white); border-radius: 32px; padding: 40px; box-shadow: 0 25px 50px -12px rgba(233, 30, 99, 0.12); text-align: center; border: 1px solid rgba(233, 30, 99, 0.05); transition: transform 0.4s ease; }
.insurance-modern-wrapper:hover { transform: translateY(-5px); }
.insurance-badge { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 10px 30px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; display: inline-block; margin-bottom: 25px; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3); animation: pulseGlow 2.5s infinite; }
.insurance-placeholder { background: var(--bg-light); border: 2px dashed var(--primary-light); padding: 35px; border-radius: 22px; color: var(--primary); font-weight: 600; font-size: 1.1rem; }

/* PROMO, LAYANAN & TEKNOLOGI GRID STYLING */
.promo-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } /* 4 Kolom untuk Layanan & Teknologi */
.promo-card, .tech-grid-card { background: var(--white); border-radius: 26px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.03); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.promo-card:hover, .tech-grid-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(233, 30, 99, 0.15); }
.promo-img-container, .tech-grid-img-container { position: relative; background: var(--primary-light); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; color: var(--primary); overflow: hidden; }
.promo-card img, .tech-grid-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-card:hover img, .tech-grid-card:hover img { transform: scale(1.08); }
.promo-badge-floating, .tech-badge-floating { position: absolute; top: 15px; left: 15px; background: rgba(233, 30, 99, 0.9); backdrop-filter: blur(4px); color: var(--white); padding: 6px 14px; border-radius: 30px; font-size: 0.75rem; font-weight: 600; }
.promo-discount-floating { position: absolute; top: 15px; right: 15px; background: linear-gradient(135deg, #EF4444, #DC2626); color: var(--white); padding: 6px 12px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); }
.promo-card-content, .tech-grid-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.promo-card-tag, .tech-grid-tag { color: var(--primary); font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.promo-card-title, .tech-grid-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-dark); line-height: 1.3;}
.promo-card-sub, .tech-grid-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.promo-card-footer, .tech-grid-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #F0F0F0; padding-top: 15px; }
.promo-card-price-value { font-weight: 700; color: var(--text-dark); font-size: 1.1rem; }
.promo-card-price-original { text-decoration: line-through; color: var(--text-light); font-size: 0.85rem; margin-left: 5px; }
.promo-card-cta, .tech-grid-cta { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; transition: transform 0.3s ease; }
.promo-card:hover .promo-card-cta, .tech-grid-card:hover .tech-grid-cta { transform: translateX(4px); }

/* DOCTORS SECTION */
.doctors-section { background: linear-gradient(180deg, #f8fafc 0%, #fff1f5 100%); position: relative; padding: 100px 0; }
.doctor-swiper { width: 100%; padding: 15px 10px 60px 10px !important; overflow: hidden; position: relative; }
.doctor-swiper .swiper-wrapper { display: flex !important; flex-direction: row !important; box-sizing: content-box; }
.doctor-swiper .swiper-slide { height: auto !important; flex-shrink: 0; }
.doctor-card-premium { background: #ffffff; border-radius: 26px; box-shadow: 0 12px 35px rgba(233, 30, 99, 0.06); border: 1px solid rgba(233, 30, 99, 0.08); overflow: hidden; display: flex; flex-direction: column; width: 100%; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.doctor-card-premium:hover { transform: translateY(-12px); box-shadow: 0 22px 45px rgba(233, 30, 99, 0.16); border-color: var(--primary-light); }
.doctor-img-container { background: linear-gradient(135deg, var(--bg-light), #e2e8f0); height: 260px; position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.doctor-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.doctor-card-premium:hover .doctor-img { transform: scale(1.06); }
.doctor-img-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; color: #94a3b8; width: 100%; }
.doctor-badge { position: absolute; top: 15px; left: 15px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(4px); color: #ffffff; font-size: 0.75rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; z-index: 2; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }
.doctor-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.doctor-name { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 2px; line-height: 1.3; }
.specialty-pill { background: var(--bg-light); color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; width: fit-content; }
.info-pill { background: #f8fafc; border: 1px solid #f1f5f9; color: #64748b; font-size: 0.8rem; padding: 6px 12px; border-radius: 10px; display: flex; align-items: center; }
.doctor-footer { padding: 15px 24px 24px 24px; display: flex; gap: 10px; border-top: 1px solid #f8fafc; }
.btn-reservasi { flex: 1; background: linear-gradient(135deg, #10b981, #059669); color: #ffffff !important; text-align: center; padding: 11px 12px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); }
.btn-reservasi:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4); }
.btn-profil { flex: 1; background: #ffffff; color: var(--primary) !important; border: 1.5px solid var(--primary-light); text-align: center; padding: 11px 12px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.btn-profil:hover { background: var(--bg-light); border-color: var(--primary); transform: translateY(-2px); }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; background: #ffffff; width: 48px !important; height: 48px !important; border-radius: 50%; box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15); transition: all 0.3s ease; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary); color: #ffffff !important; transform: scale(1.08); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.1rem !important; font-weight: bold; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 26px; border-radius: 4px; transition: width 0.3s ease; }

/* MODAL PROFIL DOKTER */
.custom-modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.65); backdrop-filter: blur(10px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); padding: 20px; }
.custom-modal-overlay.active { opacity: 1; visibility: visible; }
.custom-modal-dialog { background: #ffffff; width: 100%; max-width: 520px; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25); transform: translateY(25px) scale(0.93); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(233, 30, 99, 0.12); }
.custom-modal-overlay.active .custom-modal-dialog { transform: translateY(0) scale(1); }
.custom-modal-header { padding: 20px 25px; background: linear-gradient(135deg, var(--bg-light), #ffffff); border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.custom-modal-header h5 { margin: 0; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text-dark); font-size: 1.15rem; }
.custom-modal-close { background: #ffffff; border: 1px solid #e2e8f0; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer; color: var(--text-light); transition: all 0.25s ease; }
.custom-modal-close:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); transform: rotate(90deg); }
.custom-modal-body { padding: 30px 25px; max-height: 75vh; overflow-y: auto; }
.custom-modal-body::-webkit-scrollbar { width: 6px; }
.custom-modal-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

/* LAIN-LAIN */
.video-container { position: relative; width: 100%; max-width: 850px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 26px; overflow: hidden; box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.faq-section { background: var(--bg-light); }
.faq-max-width { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 18px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); border: 1px solid rgba(233, 30, 99, 0.05); transition: all 0.3s ease; }
.faq-item:hover { box-shadow: 0 8px 25px rgba(233, 30, 99, 0.08); }
.faq-question { padding: 20px 25px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; color: var(--text-dark); }
.faq-question i { color: var(--primary); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.35s ease; color: var(--text-light); font-size: 0.95rem; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 250px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.contact-content { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--bg-light); border-radius: 26px; padding: 40px; border: 1px solid rgba(233, 30, 99, 0.1); }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.info-item i { font-size: 1.3rem; color: var(--primary); margin-top: 5px; }
.info-text h4 { font-size: 1rem; margin-bottom: 5px; }
.info-text p { color: var(--text-light); font-size: 0.9rem; }
.map-box { width: 100%; height: 400px; border-radius: 26px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.05); }
.map-box iframe { width: 100%; height: 100%; border: none; }

/* FOOTER MODERN */
.footer-modern { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #ffffff; padding: 70px 0 30px 0; position: relative; overflow: hidden; }
.footer-modern::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), #38bdf8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; margin-bottom: 40px; }
.footer-logo-text { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: #ffffff; letter-spacing: 0.5px; margin-bottom: 10px; }
.footer-logo-text span { color: var(--primary); }
.footer-desc { color: #94a3b8; font-size: 0.95rem; max-width: 450px; line-height: 1.6; }
.footer-heading { font-size: 1.1rem; font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 15px; color: #f8fafc; }
.footer-socials { display: flex; gap: 12px; }
.social-icon { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.social-icon:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); transform: translateY(-5px) scale(1.08); box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3); }
.footer-divider { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.1); margin-bottom: 30px; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copyright { color: #94a3b8; font-size: 0.9rem; margin: 0; }

.founder-premium-badge { display: inline-flex; align-items: center; background: linear-gradient(145deg, rgba(233, 30, 99, 0.08), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(233, 30, 99, 0.25); border-radius: 50px; padding: 6px 18px 6px 6px; text-decoration: none; transition: all 0.4s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; }
.founder-premium-badge::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--primary), var(--accent)); opacity: 0; transition: opacity 0.4s ease; z-index: 0; }
.founder-premium-badge:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35); border-color: transparent; }
.founder-premium-badge:hover::before { opacity: 1; }
.founder-icon-wrapper { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-right: 12px; z-index: 1; box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3); transition: all 0.4s ease; }
.founder-premium-badge:hover .founder-icon-wrapper { transform: scale(1.08) rotate(5deg); background: #ffffff; color: var(--primary); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
.founder-text-wrapper { display: flex; flex-direction: column; justify-content: center; z-index: 1; text-align: left; }
.founder-role { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; line-height: 1; margin-bottom: 4px; transition: color 0.4s ease; }
.founder-name { font-size: 1rem; color: var(--primary); font-weight: 800; font-family: 'Outfit', sans-serif; line-height: 1; transition: color 0.4s ease; }
.founder-premium-badge:hover .founder-role, .founder-premium-badge:hover .founder-name { color: #ffffff; }
.founder-action-icon { margin-left: 20px; color: var(--primary); font-size: 0.85rem; z-index: 1; transition: all 0.4s ease; opacity: 0.6; }
.founder-premium-badge:hover .founder-action-icon { color: #ffffff; opacity: 1; transform: translateX(5px); }

/* MEDIA QUERIES RESPONSIVE */
@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .mobile-cta-wrapper { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff; flex-direction: column; align-items: center; text-align: center; padding: 25px 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); display: none; gap: 15px; }
    .nav-menu.active { display: flex; }
    .nav-dropdown-menu { position: static; transform: none; box-shadow: none; padding: 5px 0; background: #f9fafb; border-radius: 8px; margin-top: 5px; opacity: 1; visibility: visible; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-features, .hero-cta { justify-content: center; }
    .hero-visual-container { margin: 40px auto 0 auto; }
    .badge-doctor-float { left: 5px; }
    .badge-rating-float { right: 5px; }
    .promo-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .promo-grid, .tech-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-social-col { display: flex; flex-direction: column; align-items: center; }
    .footer-bottom-row { flex-direction: column; text-align: center; }
}