:root {
    --primary-blue: #4F46E5;
    --primary-green: #0F766E;
    --accent-blue: #F97316;
    --accent-green: #14B8A6;
    --light-blue: #EEF2FF;
    --light-green: #ECFEFF;
    --text-dark: #0B1220;
    --text-light: #334155;
    --white: #ffffff;
    --light-gray: #F5F7FF;
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow: 0 10px 30px rgba(11, 18, 32, 0.10);
    --shadow-hover: 0 18px 50px rgba(11, 18, 32, 0.16);

    --bs-primary: var(--primary-blue);
    --bs-success: var(--primary-green);
    --bs-info: var(--accent-green);
    --bs-warning: var(--accent-blue);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(1200px 700px at 15% -10%, rgba(79, 70, 229, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 85% 0%, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0) 55%),
        var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), rgba(79, 70, 229, 0.75), var(--accent-green));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--accent-green), rgba(79, 70, 229, 0.85), var(--primary-blue));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-green), rgba(15, 118, 110, 0.78), var(--accent-blue));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--accent-blue), rgba(15, 118, 110, 0.88), var(--primary-green));
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(79, 70, 229, 0.28);
    color: var(--primary-blue);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.12);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.12);
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-hover);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(79, 70, 229, 0.10);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(20, 184, 166, 0.95));
}

/* Hero Section */
.hero-section {
    background: radial-gradient(900px 520px at 15% 10%, rgba(79, 70, 229, 0.20), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 540px at 85% 25%, rgba(20, 184, 166, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(700px 420px at 80% 80%, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(238, 242, 255, 0.86) 0%, rgba(255, 255, 255, 1) 70%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/wellness-background.jpg') center/cover;
    opacity: 0.06;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    color: rgba(11, 18, 32, 0.78);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 16px;
}

.hero-kicker .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 1), rgba(20, 184, 166, 1));
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid var(--border-color);
    color: rgba(11, 18, 32, 0.78);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -14px -14px -14px -14px;
    border-radius: 22px;
    background: radial-gradient(420px 260px at 20% 20%, rgba(79, 70, 229, 0.22), rgba(255, 255, 255, 0) 70%),
        radial-gradient(420px 260px at 85% 65%, rgba(20, 184, 166, 0.22), rgba(255, 255, 255, 0) 70%);
    filter: blur(2px);
    z-index: -1;
}

.hero-section.service-hero {
    padding: 140px 0 80px;
    background: radial-gradient(900px 520px at 20% 10%, rgba(79, 70, 229, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 540px at 82% 35%, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0) 58%),
        linear-gradient(180deg, rgba(245, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 70%);
}

.hero-section.service-hero::before {
    opacity: 0.04;
}

/* Card Styles */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(20, 184, 166, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.service-card p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(180deg, rgba(245, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(249, 115, 22, 0.85));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

/* Testimonial Styles */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer Styles */
.footer {
    background: radial-gradient(900px 520px at 20% 10%, rgba(79, 70, 229, 0.35), rgba(11, 18, 32, 0) 55%),
        radial-gradient(900px 520px at 85% 30%, rgba(20, 184, 166, 0.30), rgba(11, 18, 32, 0) 55%),
        linear-gradient(180deg, #0B1220 0%, #0A0F1C 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.70);
}

/* Form Styles */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.22rem rgba(79, 70, 229, 0.18);
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid rgba(249, 115, 22, 0.8);
    outline-offset: 2px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 10px rgba(0,0,0,0.3);
        --shadow-hover: 0 4px 20px rgba(0,0,0,0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

