/* ===== YOGA ON PURPOSE - CUSTOM STYLES ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #2E7D32;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --secondary-color: #FF8F00;
    --secondary-light: #FFC107;
    --accent-color: #8BC34A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-muted: #999999;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --border-light: #E0E0E0;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 15px;
    
    /* Borders */
    --border-radius: 10px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ===== UTILITY CLASSES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(46, 125, 50, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(139, 195, 74, 0.8)),
                url('../images/5VoXpyZt2xsD.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
	color: #fff;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
	color: #fff;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background-color: var(--background-light);
    padding: 100px 0 20px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* ===== CARDS ===== */
.yogasana-card,
.feature-card,
.benefit-card,
.instructor-card,
.facility-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.yogasana-card:hover,
.feature-card:hover,
.benefit-card:hover,
.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.yogasana-card .card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.yogasana-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.yogasana-card:hover .card-image img {
    transform: scale(1.05);
}

.yogasana-card .card-content {
    padding: 1.5rem;
}

.yogasana-card h3,
.yogasana-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sanskrit-name {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pose-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ===== DIFFICULTY BADGES ===== */
.difficulty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-badge.beginner {
    background-color: var(--accent-color);
    color: var(--white);
}

.difficulty-badge.intermediate {
    background-color: var(--secondary-color);
    color: var(--white);
}

.difficulty-badge.advanced {
    background-color: #F44336;
    color: var(--white);
}

/* ===== POSE BENEFITS & TAGS ===== */
.pose-benefits {
    margin-bottom: 1.5rem;
}

.benefit-tag,
.pose-tag {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card,
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon,
.benefit-icon,
.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h4,
.benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ===== INSTRUCTOR CARDS ===== */
.instructor-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.instructor-image {
    margin-bottom: 1.5rem;
}

.instructor-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.instructor-title {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.instructor-specialties {
    margin-top: 1rem;
}

/* ===== FACILITY ITEMS ===== */
.facility-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.facility-image {
    flex: 0 0 200px;
}

.facility-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.facility-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ===== FORMS ===== */
.form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ===== CONTACT INFO ===== */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.savings {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin: 2rem 0;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== SCHEDULE TABLE ===== */
.schedule-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.schedule-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 1rem;
    text-align: center;
    border: none;
}

.schedule-table td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--border-light);
    vertical-align: middle;
}

.time-slot {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.class-item {
    border-radius: var(--border-radius);
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.class-item.hatha { background-color: rgba(76, 175, 80, 0.1); color: var(--primary-color); }
.class-item.vinyasa { background-color: rgba(255, 143, 0, 0.1); color: var(--secondary-color); }
.class-item.yin { background-color: rgba(156, 39, 176, 0.1); color: #9C27B0; }
.class-item.beginner { background-color: rgba(139, 195, 74, 0.1); color: var(--accent-color); }
.class-item.gentle { background-color: rgba(33, 150, 243, 0.1); color: #2196F3; }
.class-item.restorative { background-color: rgba(255, 193, 7, 0.1); color: #FFC107; }
.class-item.meditation { background-color: rgba(103, 58, 183, 0.1); color: #673AB7; }

/* ===== SCHEDULE LEGEND ===== */
.schedule-legend {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.legend-item {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons .btn {
    margin: 0.25rem;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== POSE DETAIL PAGES ===== */
.pose-header {
    padding: 120px 0 60px;
}

.pose-image {
    position: relative;
}

.pose-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.pose-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sanskrit-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.pose-pronunciation {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pose-tags {
    margin-top: 1.5rem;
}

/* ===== INSTRUCTION STEPS ===== */
.instruction-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* ===== MODIFICATIONS & PRECAUTIONS ===== */
.modification-card,
.precautions-card,
.mistakes-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.modification-card h4,
.precautions-card h3,
.mistakes-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modification-card ul,
.precautions-card ul,
.mistakes-card ul {
    list-style: none;
    padding: 0;
}

.modification-card ul li,
.precautions-card ul li,
.mistakes-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
}

.modification-card ul li:last-child,
.precautions-card ul li:last-child,
.mistakes-card ul li:last-child {
    border-bottom: none;
}

.precautions-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 143, 0, 0.1));
    border-left: 4px solid var(--secondary-color);
}

.mistakes-card {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(255, 87, 34, 0.1));
    border-left: 4px solid #F44336;
}

/* ===== PREPARATORY POSES ===== */
.prep-pose-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.prep-pose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.prep-pose-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.prep-pose-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.prep-pose-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== THERAPEUTIC BENEFITS ===== */
.therapeutic-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ALIGNMENT CARDS ===== */
.alignment-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.alignment-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.alignment-card ul {
    list-style: none;
    padding: 0;
}

.alignment-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.alignment-card ul li:last-child {
    border-bottom: none;
}

/* ===== VARIATION CARDS ===== */
.variation-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.variation-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.variation-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===== TIP CARDS ===== */
.tip-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tip-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===== SOCIAL LINKS ===== */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info .social-links a {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info .social-links a:hover {
    background-color: var(--primary-dark);
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    transition: var(--transition);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a1a !important;
    color: var(--white);
}

.footer h5,
.footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--white);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ===== CTA SECTIONS ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== LOCATION INFO ===== */
.location-info {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

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

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .btn {
    border: none;
    padding: 1rem 2rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius) !important;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

/* ===== TERMS & PRIVACY CONTENT ===== */
.terms-text,
.privacy-text {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.terms-text h2,
.privacy-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.terms-text h3,
.privacy-text h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-text ul,
.privacy-text ul {
    margin-bottom: 1.5rem;
}

.terms-text ul li,
.privacy-text ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .pose-title { font-size: 2.5rem; }
}

@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .section-title { font-size: 2rem; }
    .pose-title { font-size: 2.2rem; }
    
    .facility-item {
        flex-direction: column;
        text-align: center;
    }
    
    .facility-image {
        flex: none;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    .pose-title { font-size: 2rem; }
    .page-header h1 { font-size: 2.2rem; }
    
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .terms-text,
    .privacy-text {
        padding: 2rem 1.5rem;
    }
    
    .legend-items {
        justify-content: center;
    }
    
    .schedule-table {
        font-size: 0.8rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .pose-title { font-size: 1.8rem; }
    
    .feature-icon,
    .benefit-icon,
    .tip-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .schedule-table {
        font-size: 0.7rem;
    }
    
    .filter-buttons {
        text-align: center;
    }
    
    .filter-buttons .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .cta,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .yogasana-card,
    .feature-card,
    .benefit-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-dark: #000000;
        --text-light: #333333;
        --border-light: #666666;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

