:root {
    --purple-900: #3d1566;
    --purple-800: #4a1a7a;
    --purple-700: #5c2196;
    --purple-600: #6b2d9e;
    --purple-500: #7b3aad;
    --purple-400: #9b5fc9;
    --purple-100: #f3e8ff;
    --purple-50:  #faf5ff;
    --gold-600:   #b8860b;
    --gold-500:   #c9a227;
    --gold-400:   #d4af37;
    --gold-300:   #e8c547;
    --gold-100:   #fef9e7;
    --white:      #ffffff;
    --gray-50:    #f9fafb;
    --gray-100:   #f3f4f6;
    --gray-200:   #e5e7eb;
    --gray-400:   #9ca3af;
    --gray-600:   #4b5563;
    --gray-800:   #1f2937;
    --gray-900:   #111827;
    --whatsapp:   #25d366;
    --shadow-sm:  0 1px 3px rgba(61, 21, 102, 0.08);
    --shadow-md:  0 4px 20px rgba(61, 21, 102, 0.12);
    --shadow-lg:  0 10px 40px rgba(61, 21, 102, 0.15);
    --radius:     12px;
    --radius-lg:  20px;
    --transition: 0.3s ease;
    --font-body:  'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--purple-900);
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: color var(--transition); }

.text-gold { color: var(--gold-500) !important; }
.text-purple { color: var(--purple-600) !important; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--purple-900);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
}

.top-bar a:hover { color: var(--gold-400); }

.top-bar i { color: var(--gold-400); margin-right: 6px; }

/* ===== Header / Nav ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar { padding: 12px 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--purple-800);
}

.brand-text small {
    font-size: 0.7rem;
    color: var(--gold-600);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--purple-600); }

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236b2d9e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-purple {
    border: 2px solid var(--purple-600);
    color: var(--purple-600);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
}

.btn-outline-purple:hover {
    background: var(--purple-600);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    border: none;
    color: var(--white);
    border-radius: 50px;
}

.btn-whatsapp:hover { background: #1da851; color: var(--white); }

.btn-appointment { white-space: nowrap; }

/* ===== Hero ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 50%, var(--purple-600) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-pattern.svg') repeat;
    opacity: 0.05;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(61,21,102,0.95) 0%, rgba(61,21,102,0.7) 50%, rgba(61,21,102,0.3) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/hero-couple.svg') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.2);
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--gold-300);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--gold-400);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-300);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-lead {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-400);
}

.hero-stat span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== Section Styles ===== */
.section { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.section-alt { background: var(--purple-50); }

/* ===== About Preview / Doctor ===== */
.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.doctor-image-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    padding: 40px;
    text-align: center;
}

.doctor-image-wrap img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gold-400);
    box-shadow: var(--shadow-md);
}

.doctor-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.doctor-info { padding: 40px; }

.doctor-info h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.doctor-title {
    color: var(--gold-600);
    font-weight: 500;
    margin-bottom: 20px;
}

.qualification-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.qualification-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.qualification-list li i {
    color: var(--purple-600);
    width: 20px;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--purple-600);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-link {
    color: var(--purple-600);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i { transition: transform var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ===== Why Choose Us ===== */
.why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-600);
}

.why-card h5 { margin-bottom: 12px; }
.why-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--purple-100);
    position: absolute;
    top: 10px;
    right: 24px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold-500);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author strong { display: block; color: var(--purple-900); }
.testimonial-author small { color: var(--gray-400); }

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.breadcrumb-nav a { color: var(--gold-300); }
.breadcrumb-nav a:hover { color: var(--white); }

/* ===== Contact ===== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--purple-100);
}

.contact-info-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--purple-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--purple-600);
    margin-bottom: 16px;
}

.contact-info-card h5 { margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { color: var(--gray-600); margin: 0; }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Forms ===== */
.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--purple-400);
    box-shadow: 0 0 0 3px rgba(107,45,158,0.15);
}

.required::after {
    content: ' *';
    color: #dc3545;
}

.is-invalid { border-color: #dc3545 !important; }

.invalid-feedback { font-size: 0.85rem; }

/* ===== Mission Vision ===== */
.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    height: 100%;
    border-left: 4px solid var(--purple-600);
    box-shadow: var(--shadow-sm);
}

.mission-card.gold-border { border-left-color: var(--gold-500); }

.mission-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mission-card h4 i { color: var(--purple-600); }
.mission-card.gold-border h4 i { color: var(--gold-600); }

/* ===== Footer ===== */
.site-footer { background: var(--purple-900); color: rgba(255,255,255,0.8); }

.footer-top { padding: 60px 0 40px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
}

.footer-brand span {
    font-size: 0.75rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-family: var(--font-display);
    color: var(--gold-400);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-desc { font-size: 0.9rem; margin-bottom: 20px; }

.footer-heading {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-500);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold-400);
    margin-top: 4px;
    width: 16px;
}

.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-400); }

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold-500);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom p { margin: 0; color: rgba(255,255,255,0.6); }

/* ===== FAB & Back to Top ===== */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    position: relative;
}

.fab-call { background: var(--gold-500); }
.fab-call:hover { background: var(--gold-600); color: var(--white); transform: scale(1.1); }

.fab-whatsapp { background: var(--whatsapp); }
.fab-whatsapp:hover { background: #1da851; color: var(--white); transform: scale(1.1); }

.fab-label {
    position: absolute;
    right: 64px;
    background: var(--gray-900);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.fab:hover .fab-label { opacity: 1; }

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--purple-600);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1020;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--purple-800); transform: translateY(-3px); }

/* ===== Admin Styles ===== */
.admin-body {
    background: var(--gray-50);
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--purple-900);
    min-height: 100vh;
    padding: 24px 0;
    position: fixed;
    width: 260px;
    left: 0;
    top: 0;
    z-index: 100;
}

.admin-sidebar .brand {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    color: var(--white);
}

.admin-sidebar .brand strong {
    font-family: var(--font-display);
    display: block;
}

.admin-sidebar .brand small { color: var(--gold-400); font-size: 0.75rem; }

.admin-nav { list-style: none; padding: 0; margin: 0; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.admin-nav a i { width: 20px; }

.admin-main {
    margin-left: 260px;
    padding: 24px;
}

.admin-header {
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-900);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; }
    .hero-content { padding: 60px 0; }
    .hero-stats { gap: 24px; }
    .section { padding: 60px 0; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

@media (max-width: 767.98px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .form-section { padding: 24px; }
    .cta-banner { padding: 40px 24px; }
    .fab-label { display: none; }
    .doctor-image-wrap img { width: 200px; height: 200px; }
}

@media (max-width: 575.98px) {
    .hero-actions .btn { width: 100%; text-align: center; }
    .top-bar-hours { font-size: 0.75rem; }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.alert-success-custom {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: var(--radius);
    padding: 16px 20px;
}

.alert-error-custom {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    border-radius: var(--radius);
    padding: 16px 20px;
}

.process-steps {
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 16px;
}

.working-hours-table td { padding: 10px 0; }
.working-hours-table td:first-child { font-weight: 500; color: var(--purple-900); }
