/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(173, 44, 21);
    --secondary-color: rgb(250, 224, 162);
    --accent-color: rgb(173, 44, 21);
    --text-color: #333;
    --light-bg: rgb(250, 224, 162);
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(173, 44, 21, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .company-name {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.overlay {
    display: none;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    background: linear-gradient(rgba(173, 44, 21, 0.9), rgba(173, 44, 21, 0.9)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    width: 200px;
    height: auto;
}

.language-flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.flag {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text .cta-text {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5em 0;
    padding: 1em;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

/* Corporate Section */
.corporate {
    padding: 80px 0;
    background-color: var(--white);
}

.corporate h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.corporate-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

.corporate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(173, 44, 21, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.option-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.option-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Corporate Support Subsection */
.corporate-support {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--secondary-color);
}

.corporate-support h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.support-intro {
    text-align: center;
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(173, 44, 21, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.support-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-card h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1em;
}

/* Audit Section */
.audit {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.audit h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.audit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.audit-intro {
    text-align: center;
    margin-bottom: 50px;
}

.audit-intro h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audit-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
}

.audit-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.audit-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(173, 44, 21, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.audit-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.audit-feature i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audit-feature h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    line-height: 1.4;
}

.audit-cta {
    text-align: center;
    margin-top: 40px;
}

.audit-cta p {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audit-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.audit-cta .cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.courses h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(173, 44, 21, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.course-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-flag {
    width: 80px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.course-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Open Lessons Section */
.open-lessons {
    padding: 80px 0;
    background-color: var(--white);
}

.open-lessons h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.open-lessons-content {
    max-width: 1000px;
    margin: 0 auto;
}

.open-lessons-intro {
    text-align: center;
    margin-bottom: 50px;
}

.open-lessons-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-color);
}

.open-lessons-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(173, 44, 21, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    line-height: 1.4;
}

.open-lessons-cta {
    text-align: center;
    margin-top: 40px;
}

.open-lessons-cta p {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Career Section */
.career {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.career h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.career-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.career-intro {
    margin-bottom: 40px;
}

.career-intro h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.career-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-color);
}

.career-cta {
    margin-top: 30px;
}

.career-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.career-cta .cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-item .phone-number {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.billing-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-color);
}

.billing-info h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 20px;
}

.billing-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
}

.contact-form textarea {
    font-family: inherit;
    font-size: inherit;
    min-height: 120px;
    max-height: 120px;
    resize: vertical;
    color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.submit-button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.respo-form {
    display: none;
}

@media (max-width: 600px) {
    .respo-form {
        display: block;
    }
    
    .contact-form:not(.responsive) {
        display: none;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--white);
    font-size: 24px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2em;
        width: 100%;
        text-align: left;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--light-bg);
        color: var(--primary-color);
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    /* Contact section responsive reordering */
    .contact-content {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: 1;
    }

    .contact-form {
        order: 2;
    }

    .billing-info {
        order: 3;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Hide elements by default */
.animate-on-scroll {
    opacity: 0;
}

/* Remove default animation */
.hero, .about, .courses, .contact {
    animation: none;
}

a[href^="mailto:"] {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: var(--primary-color);
}

#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    color: #333;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 20px;
    color: var(--primary-color);
}

.toast.success {
    border-left-color: #4CAF50;
}

.toast.success i {
    color: #4CAF50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast.error i {
    color: #f44336;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: #666;
}

.toast-close {
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333;
} 