:root {
    --primary: #277f68; 
    --primary-dark: #1b5e4c;
    --gold: #ae8f6d;    
    --gold-hover: #927556;
    --bg-warm: #fafafa;
    --text-dark: #3f4756;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Merriweather', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--bg-warm); color: var(--text-dark); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-white { color: white !important; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gold-text { color: var(--gold); }
.w-100 { width: 100%; }
.block { display: block; }

.section-title { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); font-weight: 700; margin-bottom: 15px; }
.gold-separator { width: 60px; height: 3px; background-color: var(--gold); border-radius: 5px; margin-bottom: 25px; }

/* Buttons */
.btn-primary { display: inline-block; background: var(--primary); color: white; padding: 12px 30px; text-decoration: none; border-radius: 8px; font-weight: 600; transition: background 0.3s ease; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { display: inline-block; border: 2px solid #ccc; padding: 12px 30px; text-decoration: none; border-radius: 8px; font-weight: 600; color: var(--text-dark); transition: all 0.3s; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-gold { display: inline-block; border: 2px solid var(--gold); padding: 12px 30px; text-decoration: none; border-radius: 8px; font-weight: 600; color: var(--gold); transition: all 0.3s; text-align: center;}
.btn-outline-gold:hover { background: var(--gold); color: white; }

/* Header */
.main-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; background: white; border-bottom: 1px solid #eaeaea; position: sticky; top: 0; z-index: 100; }
.logo-section { display: flex; flex-direction: column; align-items: center; }
.logo-img { height: 50px; }
.logo-text { font-size: 12px; color: var(--gold); font-weight: 700; margin-top: 5px;}
.nav-menu ul { display: flex; list-style: none; gap: 30px; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; }
.nav-menu a:hover { color: var(--primary); }
.action-section .register-btn { background: var(--gold); color: white; padding: 10px 20px; border-radius: 20px; text-decoration: none; font-weight: 600; }
.mobile-toggle-btn { display: none; background: none; border: none; font-size: 24px; color: var(--primary); }

/* Hero */
.hero-section { display: flex; align-items: center; padding: 80px 40px; max-width: 1200px; margin: 0 auto; gap: 40px; }
.hero-content { flex: 1; }
.main-title { font-size: 3rem; color: var(--primary); line-height: 1.2; margin-bottom: 20px;}
.hero-description { color: #555; line-height: 1.8; margin-bottom: 30px; font-size: 1.1rem;}
.hero-buttons { display: flex; gap: 15px; }

/* Counters */
.counters-section { background: var(--primary-dark); padding: 40px 0; color: white; }
.counters-grid { display: flex; justify-content: space-around; text-align: center; }
.counter-box i { font-size: 30px; color: var(--gold); margin-bottom: 10px; }
.counter-box h2 { font-size: 2.5rem; font-family: var(--font-heading); }

/* Offers / Courses */
.offer-section { background: var(--primary); padding: 80px 0; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px;}
.offer-card { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); color: white; }
.offer-icon i { font-size: 30px; color: var(--gold); margin-bottom: 15px; }

/* Steps */
.steps-section { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; text-align: center;}
.step-card { background: white; padding: 40px 20px; border-radius: 15px; border: 1px solid #eaeaea; box-shadow: 0 10px 20px rgba(0,0,0,0.03);}
.step-number { width: 40px; height: 40px; background: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; font-weight: bold; font-size: 20px;}

/* Pricing */
.pricing-section { padding: 80px 0; background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center;}
.pricing-card { background: white; border: 1px solid #eaeaea; padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); position: relative;}
.pricing-card.popular { border: 2px solid var(--primary); transform: scale(1.05); }
.popular-badge { background: var(--primary); color: white; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: bold;}
.price { font-size: 40px; color: var(--primary); font-weight: bold; margin: 20px 0;}
.pricing-features { list-style: none; text-align: left; margin-bottom: 30px;}
.pricing-features li { margin-bottom: 10px; color: #555; }

/* Teachers */
.teachers-section { padding: 80px 0; background: var(--bg-warm); }
.teachers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px;}
.teacher-card { background: white; padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eaeaea; }
.teacher-card img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 15px; object-fit: cover; border: 3px solid var(--gold);}
.teacher-card h3 { color: var(--primary); margin-bottom: 10px; }

/* Testimonials */
.testimonials-section { background: var(--primary); padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(174, 143, 109, 0.4); color: white; font-style: italic;}
.testi-card h4 { color: var(--gold); margin-top: 20px; font-style: normal;}

/* FAQs */
.faq-section { padding: 80px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eaeaea; padding: 15px 0; }
.faq-question { width: 100%; text-align: left; background: none; border: none; font-size: 16px; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #666; margin-top: 10px; }
.faq-answer.open { max-height: 200px; }

/* Footer */
.main-footer { background: var(--primary-dark); color: white; padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px;}
.footer-logo { height: 60px; background: white; padding: 5px; border-radius: 8px; margin-bottom: 15px;}
.footer-col h3 { color: var(--gold); margin-bottom: 20px;}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #d1d5db; text-decoration: none; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #9ca3af; font-size: 14px;}

/* RESPONSIVE */
@media (max-width: 900px) {
    .offer-grid, .steps-grid, .pricing-grid, .teachers-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .main-header { padding: 15px 20px; flex-wrap: wrap;}
    .mobile-toggle-btn { display: block; }
    .header-nav-wrapper { display: none; width: 100%; flex-direction: column; text-align: center; padding-top: 20px;}
    .header-nav-wrapper.active { display: flex; }
    .nav-menu ul { flex-direction: column; gap: 15px; margin-bottom: 20px;}
    
    .counters-grid { flex-direction: column; gap: 30px; }
    .offer-grid, .steps-grid, .pricing-grid, .teachers-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: scale(1); }
    
    .btn-primary, .btn-outline, .btn-outline-gold { width: 100%; display: block; text-align: center; }
    .hero-buttons { flex-direction: column; width: 100%; }
}
