/* ===== PULSETILA – Eye-catching UI (same color code) ===== */
:root {
    --primary: #8a2e7e;
    --accent: #d43f8d;
    --primary-light: #fdf2fe;
    --primary-dark: #6d2264;
    --footer-bg: #0a0f1d;
    --gradient-primary: linear-gradient(135deg, #8a2e7e 0%, #d43f8d 100%);
    --gradient-soft: linear-gradient(180deg, #fdf2fe 0%, #fff 100%);
    --shadow-primary: 0 10px 40px rgba(138, 46, 126, 0.15);
    --shadow-glow: 0 0 30px rgba(212, 63, 141, 0.2);
}

/* ===== NAVBAR – Premium & eye-catching ===== */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 46, 126, 0.06);
    padding: 14px 0 !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0 !important;
    box-shadow: 0 8px 32px rgba(138, 46, 126, 0.08);
    border-bottom-color: rgba(138, 46, 126, 0.1);
}
.navbar-brand {
    font-weight: 800 !important;
    color: var(--primary) !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar-brand:hover {
    transform: scale(1.02);
    color: var(--accent) !important;
}
.navbar-logo {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}
.nav-link {
    font-weight: 700 !important;
    color: var(--dark, #0f172a) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 14px !important;
    border-radius: 12px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
    box-shadow: 0 4px 12px rgba(138, 46, 126, 0.12);
}
.navbar .btn-primary,
.navbar .btn[style*="primary"] {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 800 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.navbar .btn-primary:hover,
.navbar .btn[style*="primary"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(138, 46, 126, 0.25);
    color: #fff !important;
}
.dropdown-menu {
    border: none !important;
    border-radius: 20px !important;
    padding: 10px !important;
    box-shadow: 0 20px 50px rgba(138, 46, 126, 0.12), 0 0 0 1px rgba(138, 46, 126, 0.05) !important;
}
.dropdown-item {
    border-radius: 14px !important;
    padding: 12px 18px !important;
    transition: all 0.2s ease !important;
}
.dropdown-item:hover {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    transform: translateX(4px);
}

/* ===== FOOTER – With logo & premium look ===== */
.footer-premium {
    background: linear-gradient(180deg, #0a0f1d 0%, #0d1321 50%, #0a0f1d 100%) !important;
    color: #94a3b8;
    padding: 4rem 0 1.5rem !important;
    position: relative;
    overflow: hidden;
}
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 46, 126, 0.4), transparent);
    opacity: 0.6;
}
.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}
.footer-brand-wrap:hover .footer-logo {
    transform: scale(1.05);
}
.footer-brand {
    color: #fff !important;
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.02em;
}
.footer-premium .footer-brand-wrap + p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-heading {
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    margin-bottom: 1.25rem !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer-link {
    color: #94a3b8 !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}
.footer-link:hover {
    color: var(--accent) !important;
    transform: translateX(6px);
    padding-left: 4px;
}
.footer-premium .d-flex.gap-3 a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(138, 46, 126, 0.15);
    color: #e2e8f0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer-premium .d-flex.gap-3 a:hover {
    background: var(--accent);
    color: #fff !important;
    transform: translateY(-4px);
}
.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
    margin-top: 3rem !important;
    padding-top: 1.5rem !important;
}
.footer-bottom .small {
    color: #64748b !important;
    font-size: 0.8rem;
}
.footer-premium .text-primary,
.footer-premium [class*="text-primary"] {
    color: var(--accent) !important;
}

/* ===== GLOBAL – Buttons & cards (same palette) ===== */
.btn-primary,
[style*="var(--primary)"].btn {
    background: var(--gradient-primary) !important;
    border: none !important;
    box-shadow: var(--shadow-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover,
[style*="var(--primary)"].btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(138, 46, 126, 0.25);
}
.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
    transition: all 0.25s ease !important;
}
.btn-outline-primary:hover {
    background: var(--primary-light) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-2px);
}
.hero {
    background: radial-gradient(ellipse 100% 80% at 70% 0%, #fdf2fe 0%, #fff 50%, #fafbff 100%) !important;
}
.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section backgrounds & cards */
section.py-5[style*="background: #fcfaff"],
section[style*="background: #fcfaff"] {
    background: linear-gradient(180deg, #fdf2fe 0%, #fff 40%, #fafbff 100%) !important;
}
.speciality-card,
[style*="primary-light"][style*="box-shadow"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.speciality-card:hover,
.p-4.rounded-4.h-100:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(138, 46, 126, 0.12) !important;
}
.testi-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.testi-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 45px rgba(138, 46, 126, 0.12) !important;
}
.glass-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.glass-card:hover {
    box-shadow: 0 16px 40px rgba(138, 46, 126, 0.1) !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff !important;
        padding: 1.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 20px 50px rgba(138, 46, 126, 0.1) !important;
        border: 1px solid rgba(138, 46, 126, 0.06);
    }
    .footer-logo { height: 42px; }
    .footer-brand { font-size: 1.45rem !important; }
}
