@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Ensure Space Grotesk loads for all elements */
*, *::before, *::after {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: linear-gradient(135deg, #f8f4ed 0%, #fff9f0 20%, #f7b40d 40%, #ffc944 60%, #fff9f0 80%, #f8f4ed 100%);
    color: #1c1f26;
    min-height: 100vh;
    overflow-x: hidden;
    font-display: swap;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(28, 31, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(28, 31, 38, 0.03) 0%, transparent 50%);
    z-index: -1;
}

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

/* Glass morphism utility */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 180, 13, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.glass-light {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(247, 180, 13, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

/* MAKING CARD SECTIONS INTO LINKS */ 
.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card-link:hover .service-card {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(247, 180, 13, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 180, 13, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1f26;
    text-decoration: none;
}

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

.nav-menu a {
    color: #1c1f26;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f7b40d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 2rem 0 2rem;
    position: relative;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1c1f26, #23262e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1c1f26;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-form {
    padding: 2rem;
    margin-bottom: 1rem;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(28, 31, 38, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #1c1f26;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(28, 31, 38, 0.6);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f7b40d, #ffc944);
    color: #1c1f26;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.aboutbtn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(270deg, #f7b40d, #ffc944);
    color: #1c1f26;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 4px solid #fbfaf7c5;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 180, 13, 0.4);
}

.aboutbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 180, 13, 0.4);
}

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

.btn-outline:hover {
    background: #f7b40d;
    color: #1c1f26;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(247, 180, 13, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 180, 13, 0.3);
    box-shadow: 0 8px 32px rgba(247, 180, 13, 0.2);
}

.logo-container img {
    width: 200px;
    height: auto;
}

.contact-link {
    text-align: center;
    margin-top: 1rem;
}

.contact-link a {
    color: #f7b40d;
    text-decoration: none;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1c1f26;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1c1f26;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
}

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

.about-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1c1f26;
}

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

.about-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1c1f26;
}

.about-card p {
    color: #1c1f26;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
} 

.about-button-container {
    text-align: center;
}

.services {
    padding: 6rem 2rem;
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1c1f26;
}

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

.service-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card p {
    color: #1c1f26;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.1);
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1c1f26;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    text-align: center;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1c1f26;
    opacity: 0.8;
}

.testimonial-author {
    font-weight: 600;
    color: #f7b40d;
}

.testimonials-cta {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.1);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1c1f26;
}

.faq-items {
    background: rgba(255, 255, 255, 0.4);
    border: 4px solid #f7b40d;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.faq-item {
    margin-bottom: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 180, 13, 0.2);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background: rgba(255, 255, 255, 0.7);
    color: #1c1f26;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.faq-icon {
    color: #f7b40d;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-icon.active {
    transform: rotate(45deg);
}

.faq-answer {
    background: rgba(255, 255, 255, 0.8);
    color: #1c1f26;
    font-weight: 400;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-answer-content {
    padding: 1rem 0;
    line-height: 1.6;
    opacity: 0.8;
}

.faq-answer.active {
    max-height: 800px;
    padding: 0 1.5rem;
}

.faq-cta {
    text-align: center;
}

.faq-cta-padding {
    padding-top: 2rem;
}


/* MASTERY PROGRAM */







/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(28, 31, 38, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    color: #1c1f26;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-form {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(247, 180, 13, 0.2);
}

.footer-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(28, 31, 38, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: #1c1f26;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-form input::placeholder {
    color: rgba(28, 31, 38, 0.6);
}

.footer-form .btn {
    width: 100%;
    padding: 0.8rem;
}

.footer-links {
    text-align: left;
}

.footer-links p {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #1c1f26;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f7b40d;
}

.footer-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

.footer-logo img {
    width: 80%;
    height: 80%;
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 31, 38, 0.1);
    color: #1c1f26;
    opacity: 0.7;
}

.footer-bottom a {
    color: #1c1f26;
    text-decoration: none; 
}

/* Partners Page Specific Styles */
.partners-hero {
    text-align: center;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
    padding: 4rem 3rem;
    
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(247, 180, 13, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.partners-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1c1f26, #23262e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #1c1f26;
    margin-bottom: 0.5rem;
}

.partners-tagline {
    font-size: 1.2rem;
    color: #1c1f26;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.partners-description {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.partners-description p {
    font-size: 1.2rem;
    color: #1c1f26;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partners-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.partners-list li {
    font-size: 1.1rem;
    color: #1c1f26;
    opacity: 0.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.partners-list li::before {
    content: '•';
    color: #f7b40d;
    font-weight: 600;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}


/* Privacy Policy Page Styles */
.privacy-section {
    padding: 8rem 2rem 4rem 2rem;
    min-height: 80vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1c1f26;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    font-size: 1rem;
    color: #1c1f26;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section-content {
    margin-bottom: 2.5rem;
}

.privacy-section-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1c1f26;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 2px solid #f7b40d;
    padding-bottom: 0.5rem;
}

.privacy-section-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1f26;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.privacy-section-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1c1f26;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.privacy-section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section-content ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #1c1f26;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-section-content ul li::marker {
    color: #f7b40d;
}

.privacy-section-content a {
    color: #f7b40d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section-content a:hover {
    color: #e6a00b;
    text-decoration: underline;
}

.privacy-section-content strong {
    color: #1c1f26;
    font-weight: 600;
}








/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        padding-top: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .logo-container img {
        width: 150px;
    }
    
    .cta-container h2,
    .services h2,
    .testimonials h2,
    .faq-container h2 {
        font-size: 2rem;
    }
    
    .faq-items {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
        padding: 0 1.25rem;
    }
    
    .faq-answer-content {
        padding: 1.25rem 0;
    }
    
    .faq-answer.active {
        padding: 0 1.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 80%;
        margin: 0 auto 2rem auto;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-logo img {
        width: 80%;
        height: 80%;
        max-width: 150px;
        max-height: 150px;
    }


/* PARTNERS Mobile Responsive */
    .partners-content h1 {
        font-size: 2.5rem;
    }
    
    .partners-subtitle {
        font-size: 1.5rem;
    }
    
    .partners-tagline {
        font-size: 1rem;
    }
    
    .partners-description p {
        font-size: 1rem;
    }
    
    .partners-list li {
        font-size: 1rem;
    }

/* PRIVACY Mobile Responsive */
    .privacy-section {
        padding: 6rem 1rem 3rem 1rem;
    }
    
    .privacy-container {
        padding: 3rem 2rem;
    }
    
    .privacy-content h1 {
        font-size: 2.5rem;
    }
    
    .privacy-section-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section-content h3 {
        font-size: 1.125rem;
    }

}








@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding-top: 100px;
    }
    
    .hero,
    .cta-section,
    .services,
    .testimonials,
    .faq-section,
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .footer-logo img {
        width: 80%;
        height: 80%;
        max-width: 120px;
        max-height: 120px;
    }


    /* PARTNERS */

    .partners-content h1 {
        font-size: 2rem;
    }
    
    .partners-subtitle {
        font-size: 1.25rem;
    }

    /* PRIVACY */
    .privacy-container {
        padding: 2rem 1.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }