/* -------------------------------------------------------------------------- */
/* 1. ROOT VARIABLES & THEME CONFIGURATION
/* -------------------------------------------------------------------------- */
:root {
    --primary-pink: #ff4d94;
    --dark-pink: #d11d5d;
    --soft-pink: #fff0f6;
    --deep-purple: #7015f5;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --gradient-pink: linear-gradient(135deg, #ff4d94 0%, #7015f5 100%);
    --dark-bg: #1a0b16;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* -------------------------------------------------------------------------- */
/* 2. CORE LAYOUT & SCROLLBAR
/* -------------------------------------------------------------------------- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fcf8fa;
    color: #2d3436;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

/* -------------------------------------------------------------------------- */
/* 3. ANIMATED BUBBLE BACKGROUND
/* -------------------------------------------------------------------------- */
#bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatUp 20s infinite linear;
}

@keyframes floatUp {
    0% { transform: translateY(110vh) scale(0.3); opacity: 0; }
    20% { opacity: 0.15; }
    80% { opacity: 0.15; }
    100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* -------------------------------------------------------------------------- */
/* 4. NAVIGATION
/* -------------------------------------------------------------------------- */
.navbar {
    transition: var(--transition-smooth);
    padding: 25px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-pink);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 5. HERO & COMPONENTS
/* -------------------------------------------------------------------------- */
.gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-section{
    margin-top: 150px;
}
.hero-img {
    animation: floating 5s ease-in-out infinite;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(255, 77, 148, 0.25);
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

/* -------------------------------------------------------------------------- */
/* 6. GLASSMORPHISM CARDS
/* -------------------------------------------------------------------------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 77, 148, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.stat-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-pink) border-box;
}

/* -------------------------------------------------------------------------- */
/* 7. SERVICES SECTION
/* -------------------------------------------------------------------------- */

.btn-apply {
    background: var(--gradient-pink);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(255, 77, 148, 0.2);
}

.btn-apply:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(255, 77, 148, 0.35);
    color: white;
}

/* -------------------------------------------------------------------------- */
/* 8. FAQ & ACCORDION
/* -------------------------------------------------------------------------- */
.accordion-item {
    border: none !important;
    background: transparent !important;
    margin-bottom: 15px;
}

.accordion-button {
    border-radius: 15px !important;
    font-weight: 600;
    color: #444;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--soft-pink);
    color: var(--dark-pink);
}

/* -------------------------------------------------------------------------- */
/* 9. FOOTER & MODALS
/* -------------------------------------------------------------------------- */
footer {
    background: var(--dark-bg);
    color: #eee;
    padding-top: 80px;
}

.footer-link {
    color: #fffafa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.modal-content.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
}
/* ===== SERVICES SECTION ===== */
#services {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.service-card {
    border-radius: 18px;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

/* Icon box */
.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.6rem;
}

/* Titles */
.service-title {
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* List styling */
.service-list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.8;
}

.service-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ec4899;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem !important;
    }
}
