/* Font Imports */
@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yellix';
    src: url('../fonts/Yellix-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-link.active {
    background: rgba(252, 203, 0, 0.1);
    color: #000;
}

.nav-brand h2 {
    font-family: 'Yellix', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(252, 203, 0, 0.1);
    color: #000;
}

.cta-nav {
    background: #FCCB00;
    color: #000 !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
}

.cta-nav:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    text-align: center;
}

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

.trust-badge {
    display: inline-block;
    background: #FCCB00;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: 'Yellix', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.avatar:nth-child(2) {
    background: linear-gradient(45deg, #10b981, #059669);
}

.avatar:nth-child(3) {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-proof span {
    color: #6b7280;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Yellix', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Challenge Section */
.challenge-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.challenge-section h2 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

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

.challenge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.challenge-item h3 {
    font-family: 'Yellix', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.challenge-item p {
    color: #cbd5e0;
    line-height: 1.6;
}

.solution-highlight {
    background: rgba(252, 203, 0, 0.1);
    border: 1px solid #FCCB00;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-highlight p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.solution-highlight strong {
    color: #FCCB00;
}

/* Services Section */
.services-section {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.services-section h2 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FCCB00;
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-image,
.service-video {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.service-item h3 {
    font-family: 'Yellix', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.service-item p {
    color: #4a5568;
    line-height: 1.6;
}

.approach-section {
    background: rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-section h3 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
}

.approach-section > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.approach-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FCCB00;
    font-weight: bold;
}

/* Results Section */
.results-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.results-section h2 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-number {
    font-family: 'Yellix', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FCCB00;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #cbd5e0;
    font-size: 1rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 3rem auto 0;
}

.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: #FCCB00;
    font-style: normal;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Yellix', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: left;
}

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

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

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

.contact-form .cta-button {
    width: 100%;
    margin: 0;
    text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }

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

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

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    /* Sections Mobile */
    .challenge-section,
    .services-section,
    .results-section,
    .contact-section {
        padding: 60px 0;
    }

    .challenges-grid,
    .services-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item,
    .challenge-item,
    .result-item {
        padding: 1.5rem;
    }

    .approach-section {
        padding: 2rem;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial blockquote {
        font-size: 1.1rem;
    }
}

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

    .hero {
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .avatar,
    .avatar-more {
        width: 35px;
        height: 35px;
    }

    .stat {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .service-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .service-image,
    .service-video {
        height: 180px;
    }

    .approach-section {
        padding: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

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

/* Focus States for Accessibility */
.nav-link:focus,
.cta-button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #FCCB00;
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: #f8fafc;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger {
        display: none;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

