/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette */
    --primary-color: #8B7EC8;
    --secondary-color: #E8B4CB;
    --accent-color: #B8E6B8;
    --warm-color: #F4D1AE;
    --cool-color: #A8D8EA;
    
    /* Light & Dark Shades */
    --primary-light: #B8A9E8;
    --primary-dark: #6B5B9A;
    --secondary-light: #F2D1E3;
    --secondary-dark: #D18FA8;
    --accent-light: #D4F0D4;
    --accent-dark: #95D195;
    --warm-light: #F8E2C7;
    --warm-dark: #E8B88A;
    --cool-light: #C7E8F5;
    --cool-dark: #7BC4E0;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

.display-3 {
    font-size: 3rem;
    font-weight: 800;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--gray) !important;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 126, 200, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    padding: 2rem 0;
}

.breadcrumb-icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 50%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* ===== CARDS & COMPONENTS ===== */
.card, .service-card, .price-card, .feature-card, .wellness-card, .energy-card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    background: var(--white);
}

.card:hover, .service-card:hover, .price-card:hover, .feature-card:hover, .wellness-card:hover, .energy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border: 1px solid rgba(139, 126, 200, 0.1);
}

.wellness-card {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
}

.energy-card {
    border-left: 4px solid var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== FORMS ===== */
.form-control, .form-select {
    border: 2px solid rgba(139, 126, 200, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 126, 200, 0.25);
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
}

/* ===== TEAM SECTION ===== */
.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* ===== REVIEWS SLIDER ===== */
.reviews-swiper {
    padding: 2rem 0;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.stars i {
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== PRICE PLANS ===== */
.price-card.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    transform: scale(1.05);
    position: relative;
}

.price-card.bg-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
}

/* ===== GALLERY ===== */
.gallery-img {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.footer h5 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== UTILITY CLASSES ===== */
.rounded-4 {
    border-radius: var(--border-radius-lg) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .card, .service-card, .price-card, .feature-card, .wellness-card, .energy-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .hero-section h1 {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-section h2 {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    .hero-section p {
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SPECIAL COMPONENTS ===== */
.feature-icon, .info-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resilience-item, .stress-technique, .integration-step {
    background: rgba(139, 126, 200, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.resilience-item:hover, .stress-technique:hover, .integration-step:hover {
    background: rgba(139, 126, 200, 0.1);
    transform: translateX(5px);
}

.badge.bg-primary {
    background: var(--primary-color) !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
} 