/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F5F3EE;
}

img {
    max-width: 100%;
    height: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: #1B1B3A;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #C5A572, #D4AF37);
    color: #1B1B3A;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #F5F3EE;
    border: 2px solid #F5F3EE;
}

.btn-secondary:hover {
    background: #F5F3EE;
    color: #1B1B3A;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 5%;
    left: 12%;
    z-index: 10;
}

.hero-logo img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 5%;
    right: 12%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger-menu:hover span {
    background: #C5A572;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(27, 27, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
}

.nav-menu.active {
    right: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    padding: 0;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: #F5F3EE;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: #C5A572;
    background: rgba(197, 165, 114, 0.1);
    padding-left: 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('./images/user-upload-1755556465702.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    background-color: #2C2C2C;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 58, 0.4);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F3EE 25%, #C5A572 50%, #D4AF37 75%, #FFFFFF 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: none;
}

.hero-title em {
    font-style: italic;
    font-weight: 900;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

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


/* About Section */
.about {
    padding: 100px 0;
    background: #F5F3EE;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: block;
    max-width: 100%;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #C5A572;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.credential-item h4 {
    color: #1B1B3A;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.credential-item ul {
    list-style: none;
}

.credential-item li {
    color: #2C2C2C;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.credential-item li::before {
    content: '•';
    color: #C5A572;
    position: absolute;
    left: 0;
}

.about-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #1B1B3A;
    border-left: 4px solid #C5A572;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #F5F5F5;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1B1B3A;
    margin-bottom: 1rem;
}

.service-card p {
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: #C5A572;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: #F5F3EE;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.5rem;
    color: #1B1B3A;
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-section {
    background: #F5F3EE;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #C5A572;
}

.promise-section {
    background: linear-gradient(135deg, #C5A572, #D4AF37);
    border-left: 4px solid #1B1B3A;
}

.promise-section .section-label {
    color: #1B1B3A;
}

.promise-section p {
    color: #1B1B3A;
    font-weight: 500;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1B1B3A;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.program-section p {
    color: #2C2C2C;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.program-duration {
    color: #C5A572;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #C5A572;
    color: #1B1B3A;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #F5F5F5;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #2C2C2C;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #1B1B3A;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #C5A572;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #F5F3EE;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #2C2C2C;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item h4 {
    color: #1B1B3A;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: #2C2C2C;
    line-height: 1.5;
}

.contact-form {
    background: #1B1B3A;
    padding: 2.5rem;
    border-radius: 15px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C5A572;
}

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

/* Footer */
.footer {
    background: #1B1B3A;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #C5A572;
}

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

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

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

.footer-section a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-position: center center;
    }
    
    .hero-logo img {
        width: 60px;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 18px;
    }
    
    .nav-menu {
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }

    .program-content {
        padding: 1.5rem;
    }

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

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

.service-card,
.program-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations would be added with JavaScript intersection observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}