@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #4F98CF;
    /* SoulClinic Blue */
    --primary-hover: #3b7dae;
    --secondary-color: #555555;
    /* Standard Grey */
    --tertiary-color: #fba732;
    /* SoulClinic Yellow/Orange */
    --dark-color: #1F2937;
    /* Deep Indigo/Black */
    --bg-light: #f0f7ff;
    /* Soft Blue Background */
    --accent-color: #10B981;
    /* WhatsApp Green */
    --font-family-base: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --soft-shadow: 0 10px 30px rgba(79, 152, 207, 0.12);
}

body {
    font-family: var(--font-family-base);
    color: var(--secondary-color);
    background-color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}

.bg-soft-blue {
    background-color: var(--bg-light) !important;
}

/* Navbar Premium */
/* Navbar Premium */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 1.2rem 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem !important;
    margin: 0 2px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
    background: rgba(79, 152, 207, 0.06);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(79, 152, 207, 0.08);
    font-weight: 700;
}

/* Premium Dropdown */
.dropdown-menu {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
    padding: 10px !important;
    margin-top: 15px !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 240px;
    animation: slideUpFade 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-item {
    border-radius: 12px;
    padding: 12px 16px !important;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: var(--bg-light) !important;
    color: var(--primary-color) !important;
    padding-left: 20px !important;
    /* Subtle slide effect */
}

.dropdown-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(79, 152, 207, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Buttons */
.btn-soul-primary {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(79, 152, 207, 0.2);
}

.btn-soul-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 152, 207, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Cards & Sections */
.card-premium {
    border: none;
    border-radius: 24px;
    background: white;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 152, 207, 0.15);
}

/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* WhatsApp Floating */