/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #115a44;
    --color-secondary: #9eea01;
    --color-dark: #0f1419;
    --color-light: #ffffff;
    --color-gray: #6b7280;
    --color-gray-light: #f3f4f6;
    
    --font-text: 'Comfortaa', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-family: var(--font-title);
}

.section-title .highlight {
    color: var(--color-primary);
}

.section-title .highlight-green {
    color: var(--color-secondary);
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    max-width: 700px;
}
.section-text-full {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-title);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: #8ad301;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(158, 234, 1, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-light);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    font-family: var(--font-text);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-animation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.hero-title .highlight {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-cta .btn-secondary {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.hero-cta .btn-secondary:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.cta-hero-section {
    padding: 80px 0;
    background: var(--color-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
    padding: 80px 0;
    background: var(--color-light);
}

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

.intro-text {
    text-align: left;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: var(--color-light);
    position: relative;
}

.how-it-works-section .section-title {
    color: var(--color-light);
    text-align: center;
    margin-bottom: 1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.steps-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    text-align: left;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-secondary);
    /* background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%); */
    padding-left: 1rem;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.steps-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-image img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--color-secondary);
    animation: waveAnimation 3s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% {
        d: path("M0,0 C150,60 350,60 600,30 C850,0 1050,0 1200,30 L1200,120 L0,120 Z");
    }
    50% {
        d: path("M0,30 C150,0 350,0 600,30 C850,60 1050,60 1200,30 L1200,120 L0,120 Z");
    }
}

/* ========================================
   AI TEAMMATES SECTION
   ======================================== */
.teammates-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: var(--color-light);
    text-align: center;
}

.teammates-section .section-title {
    color: var(--color-light);
}

.teammates-section .section-title .highlight {
    color: var(--color-secondary);
}

.teammates-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.mascot-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative; /* ADD THIS */
    overflow: hidden; /* ADD THIS */
    min-height: 500px;
}

.mascot-card > * {
    position: relative;
    z-index: 1;
}

.mascot-card.gorealla {
    background: 
        linear-gradient(135deg, rgba(74, 124, 89, 0.3) 0%, rgba(168, 213, 186, 0.3) 100%),
        url('../images/gorilla-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card.squirrel {
    background: 
        linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, rgba(255, 209, 149, 0.3) 100%),
        url('../images/squirrel-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card.eagle {
    background: 
        linear-gradient(135deg, rgba(107, 76, 154, 0.3) 0%, rgba(184, 164, 212, 0.3) 100%),
        url('../images/eagle-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card.fox {
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(96, 165, 250, 0.3) 100%),
        url('../images/fox-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card.pigeon {
    background: 
        linear-gradient(135deg, rgba(91, 124, 141, 0.3) 0%, rgba(168, 197, 209, 0.3) 100%),
        url('../images/piegeon-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card.owl {
    background: 
        linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(233, 213, 255, 0.3) 100%),
        url('../images/owl-card.jpg');
    background-size: cover;
    background-position: center;
}

.mascot-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
}

.mascot-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 90, 68, 0.85);
    z-index: 0;
    border-radius: 20px;
}

.mascot-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mascot-image img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.mascot-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.mascot-role {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.mascot-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 50%;
}

/* ========================================
   BUILDERS SECTION
   ======================================== */
.builders-section {
    padding: 80px 0;
    background: var(--color-light);
}

.builders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.builders-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--color-light);
}

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

.stat-card {
    background: rgba(17, 90, 68, 0.05);
    border: 2px solid rgba(17, 90, 68, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(17, 90, 68, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(17, 90, 68, 0.15);
}

.stat-value {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--color-light);
    text-align: left;
}

.benefits-section .section-title {
    margin-bottom: 3rem;
}

.benefits-content {
    margin-bottom: 3rem;
}

.benefit-text {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-gray-light);
}

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

.testimonial-card {
    background: var(--color-light);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-company {
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.testimonial-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================
   CTA FAMILY SECTION
   ======================================== */
.cta-family-section {
    padding: 80px 0;
    background: var(--color-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.family-image {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.family-image img {
    width: 100%;
    height: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: var(--color-light);
}

.contact-section .section-title {
    color: var(--color-light);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section .section-title .highlight {
    color: var(--color-secondary);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    font-size: 1rem;
    font-family: var(--font-text);
    transition: var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 200px;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1.5rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-detail svg {
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: slideUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--color-secondary);
}

.modal video {
    width: 100%;
    border-radius: 10px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .intro-content,
    .steps-container,
    .builders-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .steps-list {
        align-items: center;
    }
    
    .step-item {
        text-align: center;
        max-width: 500px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mascots-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-detail {
        display: flex;
        margin: 0 0 1rem 0;
        justify-content: center;
    }
}
