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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #f9fafb;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo h2 {
    color: #5b21b6;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #5b21b6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #5b21b6;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #4a5568;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    line-height: 1.6;
    max-width: 90%;
}

.cta-button {
    background: linear-gradient(135deg, #d53f8c 0%, #ed64a6 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(213, 63, 140, 0.35);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(213, 63, 140, 0.45);
}

.hero-visual {
    position: relative;
    height: 450px;
}

/* Hero Images */
.hero-main-image {
    position: absolute;
    width: 105%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    top: 8%;
    left: 5%;
    box-shadow: 0 20px 40px rgba(91, 33, 182, 0.35);
    animation: float 6s ease-in-out infinite;
    border: 8px solid rgba(255, 255, 255, 0.15);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #2d3748;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -10px;
    left: 20%;
    background: linear-gradient(90deg, #6b46c1, #d53f8c);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8fafc;
}

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

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2.2rem;
    color: #2d3748;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-visual {
    position: relative;
    height: 450px;
}

.about-team-image {
    position: absolute;
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    top: 8%;
    left: 8%;
    box-shadow: 0 18px 40px rgba(107, 70, 193, 0.3);
    animation: float 7s ease-in-out infinite;
    border: 6px solid white;
    z-index: 2;
}

.about-coaching-image {
    position: absolute;
    width: 220px;
    height: 170px;
    object-fit: cover;
    border-radius: 18px;
    bottom: 8%;
    right: 8%;
    box-shadow: 0 18px 40px rgba(213, 63, 140, 0.3);
    animation: float 5.5s ease-in-out infinite reverse;
    border: 6px solid white;
    z-index: 1;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 22px;
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Program Section */
.program {
    padding: 120px 0;
    background: #f8fafc;
}

.program-with-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(9, 9, 9, 0.4)), url('img/program-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.program-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.module-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.module-card h3 {
    color: #6b46c1;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.module-card p {
    color: #4a5568;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing .section-title::after {
    background: linear-gradient(90deg, #ffffff, #fbb6ce);
}

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

.pricing-card {
    background: white;
    color: #2d3748;
    padding: 3rem 2.5rem;
    border-radius: 22px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6b46c1, #d53f8c);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: none;
    box-shadow: 0 25px 50px rgba(213, 63, 140, 0.4);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b46c1;
    margin-bottom: 1.2rem;
}

.price span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #718096;
}

.pricing-description {
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    padding-left: 1rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

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

.pricing-button {
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

.pricing-button:hover {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 70, 193, 0.4);
}

/* Unique Section */
.unique {
    padding: 120px 0;
    background: white;
}

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

.unique-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2.2rem;
    color: #2d3748;
    line-height: 1.2;
}

.unique-text p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #4a5568;
    line-height: 1.8;
}

.unique-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.unique-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.unique-main-image:hover {
    transform: scale(1.03);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info p {
    color: #718096;
    font-style: normal;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-email {
    color: #6b46c1;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #d53f8c;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b46c1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

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

.error-message {
    color: #e53e3e;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.submit-button {
    background: linear-gradient(135deg, #d53f8c 0%, #ed64a6 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(213, 63, 140, 0.3);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(213, 63, 140, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Blog Section */
.blog {
    padding: 120px 0;
    background: #f8fafc;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3.5rem;
}

.blog-card {
    background: white;
    padding: 3rem;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    align-items: center;
}

.blog-date {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-category {
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.blog-link {
    color: #6b46c1;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.blog-link:hover {
    color: #d53f8c;
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(3px);
}

/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: #1f2937;
    color: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.cookie-consent-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1rem;
}

.cookie-content a {
    color: #fbb6ce;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #d53f8c, #ed64a6);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.cookie-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(213, 63, 140, 0.3);
}

.cookie-decline-btn {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid #4b5563;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: #a78bfa;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    border-radius: 2px;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-section a:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

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

    .about-text h2,
    .unique-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container,
    .about-content,
    .contact-content,
    .unique-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-visual,
    .about-visual {
        height: 350px;
        order: -1;
    }

    .features-grid,
    .program-modules,
    .pricing-cards,
    .testimonials-grid,
    .blog-articles {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .about-team-image,
    .about-coaching-image {
        width: 250px;
        height: 180px;
    }

    .unique-main-image {
        height: 350px;
    }

    .blog-articles {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

    .cta-button,
    .submit-button {
        padding: 16px 30px;
    }

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

    .about-text h2,
    .unique-text h2 {
        font-size: 2rem;
    }

    .hero-visual,
    .about-visual {
        height: 280px;
    }

    .about-team-image,
    .about-coaching-image {
        width: 200px;
        height: 150px;
    }

    .unique-main-image {
        height: 280px;
    }

    .blog-card {
        padding: 2rem;
    }

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

    .cookie-consent-popup {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
