/* SuperScher English School - Dark Modern Theme */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: #08cca2;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a:hover {
    color: #06a085;
    text-decoration: underline;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(8, 204, 162, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #08cca2;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 400;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: #08cca2;
    border-bottom-color: #08cca2;
    text-decoration: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #08cca2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #08cca2 0%, #06a085 100%);
    color: #ffffff;
    border: 2px solid #08cca2;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #06a085 0%, #058c6d 100%);
    border-color: #06a085;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 204, 162, 0.3);
}

.btn-secondary {
    background: #404040;
    color: #ffffff;
    border: 2px solid #404040;
}

.btn-secondary:hover {
    background: #505050;
    border-color: #505050;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #08cca2;
    border: 2px solid #08cca2;
}

.btn-outline:hover {
    background: #08cca2;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    text-align: center;
    padding: 120px 0 60px;
    margin-top: 70px;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #b0b0b0;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
}

/* About Section */
.about-section {
    background: #222;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    color: #08cca2;
    margin-bottom: 1.5rem;
}

.advantages-list {
    list-style: none;
    margin-top: 2rem;
}

.advantages-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #b0b0b0;
}

.advantages-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #08cca2;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Content Page */
.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 200px;
    height: 200px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.2);
}

.mission-card h3,
.vision-card h3 {
    color: #08cca2;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.feature-item h4 {
    color: #08cca2;
    margin-bottom: 1rem;
}

/* Teachers Section */
.teachers-section {
    background: #222;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.teacher-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.teacher-image {
    text-align: center;
    padding: 2rem;
    background: #333;
}

.teacher-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.teacher-info {
    padding: 2rem;
}

.teacher-title {
    color: #08cca2;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.teacher-qualifications {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.teacher-experience {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.teacher-experience span {
    background: #08cca2;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Course Sections */
.popular-course-section {
    background: #222;
}

.course-highlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.course-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.course-details h3 {
    color: #08cca2;
    margin-bottom: 1.5rem;
}

.course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.info-item {
    background: #2d2d2d;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(8, 204, 162, 0.1);
}

.info-item strong {
    color: #08cca2;
}

.course-pricing {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #08cca2;
    margin-top: 2rem;
}

.price-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.25rem;
}

.discounted-price {
    color: #08cca2;
    font-size: 2rem;
    font-weight: 900;
}

.discount-badge {
    background: #08cca2;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.next-launch {
    color: #b0b0b0;
    margin: 0;
}

/* Courses Catalog */
.courses-catalog {
    background: #1a1a1a;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.course-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.featured-course {
    border: 2px solid #08cca2;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #08cca2;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
}

.course-card .course-image {
    padding: 2rem;
    text-align: center;
    background: #333;
}

.course-card .course-image img {
    width: 100px;
    height: 100px;
}

.course-content {
    padding: 2rem;
}

.course-level {
    color: #08cca2;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-details {
    margin: 1.5rem 0;
}

.detail-item {
    background: #404040;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #08cca2;
}

.course-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.course-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #08cca2;
    font-weight: bold;
}

.course-pricing {
    background: #333;
    margin: 1.5rem -2rem -2rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #08cca2;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    color: #08cca2;
    font-size: 2rem;
    font-weight: 900;
}

.price-period {
    color: #b0b0b0;
    font-size: 1rem;
}

.price-note {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Enrollment Information */
.enrollment-info {
    background: #222;
}

.enrollment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #08cca2;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.enrollment-cta {
    text-align: center;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #08cca2;
    margin-top: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Achievements Section */
.achievements-section {
    background: #222;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.achievement-item {
    text-align: center;
    background: #2d2d2d;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.counter {
    font-size: 3rem;
    font-weight: 900;
    color: #08cca2;
    margin-bottom: 1rem;
    display: block;
}

.achievement-item h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    background: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.review-card {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reviewer {
    margin-top: 2rem;
    border-top: 1px solid #404040;
    padding-top: 1.5rem;
}

.reviewer strong {
    color: #08cca2;
    display: block;
    margin-bottom: 0.5rem;
}

.reviewer span {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: #222;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(8, 204, 162, 0.3);
}

.faq-item h4 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
}

/* Contact Sections */
.contact-form-section {
    background: #1a1a1a;
}

.subscription-form,
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.2);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #404040;
    border-radius: 8px;
    background: #333;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #08cca2;
    box-shadow: 0 0 0 3px rgba(8, 204, 162, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #08cca2;
}

.checkbox-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Info */
.contact-info-section {
    background: #222;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    color: #08cca2;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
}

.contact-phone {
    color: #08cca2;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-hours,
.contact-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    background: #1a1a1a;
}

.map-placeholder {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed rgba(8, 204, 162, 0.3);
    text-align: center;
    margin-top: 2rem;
}

.map-info h3 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.transport-info,
.landmarks {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.transport-info h4,
.landmarks h4 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.transport-info ul,
.landmarks ul {
    list-style: none;
}

.transport-info li,
.landmarks li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.transport-info li::before,
.landmarks li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #08cca2;
    font-weight: bold;
}

/* Tips Page */
.tips-intro {
    background: #222;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tips-section {
    background: #1a1a1a;
}

.tips-section:nth-child(even) {
    background: #222;
}

.tips-category {
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    text-align: center;
}

.tips-icon {
    width: 80px;
    height: 80px;
    color: #08cca2;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.tip-card h3 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.tip-highlight {
    background: rgba(8, 204, 162, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #08cca2;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.tip-highlight strong {
    color: #08cca2;
}

/* Immersion Section */
.immersion-section {
    background: #222;
}

.immersion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.immersion-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.immersion-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.immersion-card h3 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.immersion-card ul {
    list-style: none;
    margin-top: 1rem;
}

.immersion-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.immersion-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #08cca2;
    font-weight: bold;
}

/* Routine Section */
.routine-section {
    background: #1a1a1a;
}

.routine-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.routine-item {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    transition: all 0.3s ease;
}

.routine-item:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
}

.routine-time {
    background: #08cca2;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.routine-activity h4 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.routine-activity ul {
    list-style: none;
}

.routine-activity li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.routine-activity li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #08cca2;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #08cca2 0%, #06a085 100%);
    color: #1a1a1a;
    text-align: center;
}

.cta-section h2,
.cta-section h3 {
    color: #1a1a1a;
}

.cta-section p {
    color: #2d2d2d;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: #1a1a1a;
    color: #08cca2;
    border-color: #1a1a1a;
}

.cta-section .btn-primary:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    color: #08cca2;
}

.cta-section .btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.cta-section .btn-outline:hover {
    background: #1a1a1a;
    color: #08cca2;
}

/* Thank You Page */
.thank-you-section {
    background: #1a1a1a;
    padding: 120px 0 !important;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.confirmation-details {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.2);
    margin: 2rem 0;
    text-align: left;
}

.submitted-info {
    margin-top: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #08cca2;
}

.info-item strong {
    color: #08cca2;
}

.next-steps {
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.next-steps .step {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
}

.immediate-help {
    margin: 3rem 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    text-align: left;
}

.contact-option svg {
    color: #08cca2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-option h4 {
    color: #08cca2;
    margin-bottom: 0.5rem;
}

.contact-option span {
    color: #888;
    font-size: 0.9rem;
}

.useful-links {
    margin: 3rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: left;
}

.link-card:hover {
    border-color: rgba(8, 204, 162, 0.3);
    transform: translateY(-5px);
    text-decoration: none;
}

.link-card h4 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.social-follow {
    margin: 3rem 0;
}

.return-home {
    margin-top: 3rem;
}

/* Legal Content */
.legal-content {
    background: #1a1a1a;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(8, 204, 162, 0.1);
}

.legal-section h2 {
    color: #08cca2;
    border-bottom: 2px solid #08cca2;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: #08cca2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-details {
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #08cca2;
    margin-top: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #08cca2;
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: #08cca2;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: #2d2d2d;
    border-radius: 12px;
    border: 2px solid #08cca2;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    border: 1px solid rgba(8, 204, 162, 0.1);
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #e0e0e0;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: #08cca2;
}

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(8, 204, 162, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #08cca2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #08cca2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #08cca2;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #08cca2;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-info strong {
    color: #08cca2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.25rem;
        margin: 1rem 0;
        padding: 1rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .course-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-highlight .course-image {
        order: -1;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-options,
    .links-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .subscription-form,
    .contact-form {
        padding: 2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-width: unset;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    [class*="-grid"], .routine-timeline {
        grid-template-columns: 1fr;
    }
    .course-pricing {
        margin: 1.5rem 0 0;
    }
    .contact-card {
        padding: 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding: 2rem 0;
    }

    .page-header {
        margin-top: 0;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #08cca2;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(8, 204, 162, 0.2);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
