:root {
    --primary-color: #6c63ff;
    --secondary-color: #ff6584;
    --accent-color: #4ecdc4;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    max-height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5753d9;
    border-color: #5753d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hero-section h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-section h2 {
    color: var(--text-dark);
}

.about-section p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Podcast Section */
.podcast-section {
    padding: 6rem 0;
}

.podcast-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.podcast-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.podcast-card .card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.podcast-card .card-text {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    text-align: center;
}

.quote-image {
    max-width: 50px;
    opacity: 0.7;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
}

.testimonial-author {
    color: white;
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-section h3 {
    font-size: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

/* Footer */
.footer {
    background-color: #2d3436;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .about-section,
    .podcast-section,
    .testimonials-section,
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand .logo {
        max-height: 45px;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.rounded-4 {
    border-radius: 20px !important;
}

.shadow-lg {
    box-shadow: var(--shadow) !important;
}




/* Program Checklist */
.program-checklist li {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-left: 1rem;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
    border-radius: 15px 15px 0 0;
}

.pricing-card ul li {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fafafa;
}

/* Gallery Section */
.gallery-section img {
    height: 300px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .gallery-section img {
        height: 250px;
    }
}




/* Somatic Coaching Page Styles */
.somatic-testimonial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.somatic-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.testimonial-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.benefit-card {
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.benefit-card h3 {
    color: var(--primary-color);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Sticky positioning for survival mode chart */
@media (min-width: 992px) {
    .sticky-top {
        position: sticky;
    }
}





