* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #2ecc71;
    --dark-green: #1a472a;
    --forest-green: #2e7d32;
    --yellow: #ffd700;
    --sand: #fdfbf7;
    /* Shoprooof-like warm background */
    --text-main: #1d1d1d;
    --text-light: #666;
    --white: #ffffff;
    --transition-curve: cubic-bezier(0.22, 1, 0.36, 1);
    /* Apple/Shoprooof smooth feel */
}


html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--sand);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

/* --- ANIMATED LOGO REMOVED --- */

/* --- ANIMATION ENGINE --- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1s ease, transform 1s var(--transition-curve);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.9);
}

/* Bounce Reveal Animation */
@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    60% {
        opacity: 1;
        transform: translateY(-12px);
    }

    80% {
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-bounce {
    opacity: 0;
    transform: translateY(100px);
    /* Initial state same as keyframe 0% */
}

.reveal-bounce.is-visible {
    animation: slideUpBounce 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 1 !important;
    transform: none;
    /* Let animation handle it */
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1);
    z-index: 2;
}

.marquee.is-visible {
    transform: rotate(-1.5deg) translateX(0) !important;
    opacity: 1 !important;
}

.is-visible.hero-image-container {
    z-index: 20;
}

/* Stagger delays for grids */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s;
}

.logo {
    font-size: 1.5rem;
    color: var(--dark-green);
    letter-spacing: -0.5px;
    display: inline-block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-green);
    transition: width 0.3s var(--transition-curve);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background-color: var(--dark-green);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: transform 0.3s;
}

.cta-nav:hover {
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--dark-green);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-green);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE MENU (Circular Reveal) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-green);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at calc(100% - 45px) 45px);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
    visibility: hidden;
}

.mobile-menu.active {
    clip-path: circle(150% at calc(100% - 45px) 45px);
    visibility: visible;
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-bg-decor {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-nav-links {
    list-style: none;
    text-align: left;
    padding: 0 10%;
    width: 100%;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    overflow: hidden;
}

.mobile-nav-links a {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3rem, 12vw, 5rem);
    color: var(--white);
    font-weight: 600;
    display: block;
    line-height: 1;
    transform: translateY(100%);
    transition: transform 0.6s var(--transition-curve);
}

.mobile-menu.active .mobile-nav-links a {
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i));
}

.mobile-menu-footer {
    margin-top: 5rem;
    padding: 0 10%;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-curve);
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--i));
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-fancy-mobile {
    background: var(--white);
    color: var(--dark-green);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    transition: transform 0.3s;
}

.btn-fancy-mobile:active {
    transform: scale(0.95);
}

/* --- HERO SECTION (Shoprooof style: Big & Clean) --- */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 2rem;
    max-width: 900px;
}

.premium-text {
    position: relative;
    display: inline-block;
    color: inherit;
}

.sparkle-container {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.sparkle-container.right {
    top: -10px;
    right: -30px;
}

.sparkle-container.left {
    top: -5px;
    left: -35px;
}

.sparkle {
    position: absolute;
    width: 18px;
    height: 18px;
    color: var(--yellow);
    opacity: 0;
    transform: scale(0);
}

.s1 {
    top: 0;
    left: 0;
}

.s2 {
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
}

.is-visible .sparkle-container.right .s1 {
    animation: squeaky-clean 2.5s infinite both;
}

.is-visible .sparkle-container.right .s2 {
    animation: squeaky-clean 2.5s infinite both 0.4s;
}

.is-visible .sparkle-container.left .s1 {
    animation: squeaky-clean 2.5s infinite both 0.2s;
}

.is-visible .sparkle-container.left .s2 {
    animation: squeaky-clean 2.5s infinite both 0.6s;
}

@keyframes squeaky-clean {

    0%,
    10%,
    100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    15% {
        transform: scale(1.2) rotate(90deg);
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--yellow));
    }

    20% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }

    30% {
        transform: scale(0) rotate(270deg);
        opacity: 0;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 15;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s var(--transition-curve);
}

/* --- MARQUEE BANNER --- */
.marquee-wrapper {
    position: relative;
    padding: 6rem 0;
    margin-top: -6.2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    z-index: 20;
    /* Ensure it's above hero content */
}

.marquee,
.marquee-reverse {
    background: var(--dark-green);
    color: var(--white);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    width: 140%;
    left: -20%;
    z-index: 1;
    opacity: 0;
}

.marquee {
    top: 50%;
    margin-top: -1.5rem;
    /* half of total height approx */
    z-index: 1;
    /* Back layer */
    background: var(--dark-green);
    transform: rotate(-3deg) translateX(500px);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
    transition-delay: 0.6s;
}

.marquee-reverse {
    top: 50%;
    margin-top: -1.5rem;
    z-index: 2;
    /* Front layer */
    background: var(--forest-green);
    transform: rotate(3deg) translateX(-500px);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
    transition-delay: 0.8s;
}

.marquee.is-visible,
.marquee-reverse.is-visible {
    opacity: 1 !important;
}

.marquee.is-visible {
    transform: rotate(-3deg) translateX(0) !important;
}

.marquee-reverse.is-visible {
    transform: rotate(3deg) translateX(0) !important;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    align-items: center;
}

.marquee-reverse .marquee-content {
    animation-direction: reverse;
    animation-duration: 25s;
}

.marquee-content span {
    white-space: nowrap;
    display: inline-block;
    padding: 0 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- EDITORIAL SECTIONS (Alternating) --- */
.editorial-section {
    padding: 5rem 5%;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.editorial-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.editorial-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.editorial-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flip-horizontal {
    transform: scaleX(-1);
}

.swap-order .editorial-img {
    order: 2;
    /* Image on right */
}

.swap-order .editorial-text {
    order: 1;
    /* Text on left */
}

/* --- TRUST SECTION (Why Us) --- */
.trust-section {
    padding: 4rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- PROCESS SECTION --- */
.process-section {
    padding: 5rem 5%;
    background-color: var(--sand);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    font-size: 4rem;
    color: rgba(46, 125, 50, 0.1);
    /* Very subtle green */
    font-weight: 800;
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.step-line {
    width: 50px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* BUTTERFLY ANIMATION */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.butterfly-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    /* Hidden initially */
}

/* Trigger animation when parent (.section-header) becomes visible */
.is-visible .butterfly-container {
    animation: fly-in 2.5s ease-out forwards;
}

.butterfly-container.wandering {
    opacity: 1 !important;
    /* Ensure it stays visible after animation removal */
    animation: none !important;
    /* Stop the fly-in animation lock */
    transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.butterfly {
    width: 24px;
    height: 24px;
    position: absolute;
    top: -12px;
    left: -12px;
}

.butterfly path {
    transform-origin: center;
    animation: flap 0.15s infinite alternate ease-in-out;
}

@keyframes fly-in {
    0% {
        transform: translate(-300px, -200px) rotate(135deg);
        /* Coming from top-left */
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(60px, -20px) rotate(90deg);
        /* Lands near text */
        opacity: 1;
    }
}

@keyframes flap {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0.4);
    }
}

/* --- NURSERY EDITORIAL BENTO GRID --- */
.nursery-bento-section {
    padding: 5rem 0;
    background-color: var(--sand);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Bento Item Placements */
.item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.item-small {
    grid-column: span 1;
}

.item-accent {
    grid-column: span 2;
}

.bento-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition-curve);
}

.bento-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--white);
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
}

.bento-caption h3 {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Bento Hover Effects */
.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item:hover .bento-caption h3 {
    text-decoration: underline;
    /* Minimal feedback */
}

/* Mobile Bento */
@media screen and (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .item-featured,
    .item-small,
    .item-accent {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-v2 {
    background-color: var(--white);
    padding: 10rem 0;
    overflow: hidden;
    position: relative;
}

.testimonial-universe {
    width: 100%;
    margin: 5rem 0;
    cursor: grab;
    user-select: none;
}

.testimonial-universe:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 3rem;
    padding: 0 5%;
    width: max-content;
    will-change: transform;
    transition: transform 0.5s var(--transition-curve);
}

.t-card {
    background: var(--sand);
    padding: 3rem;
    border-radius: 0;
    width: 450px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.6s var(--transition-curve), opacity 0.6s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0.6;
    transform: scale(0.9);
}

.t-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.t-card p {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--dark-green);
    font-family: 'Fredoka', sans-serif;
}

.t-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.t-author span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- DRAG UTILITIES --- */
.testimonial-universe,
.kinetic-header {
    user-select: none;
    -webkit-user-drag: none;
}

.testimonial-universe img,
.kinetic-header img {
    pointer-events: none;
}

/* --- PRODUCT/SERVICE CARDS --- */
.grid-section {
    padding: 6rem 5%;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-green);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-card {
    background: transparent;
    cursor: pointer;
}

.card-image-wrapper {
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1.5rem;
    position: relative;
    aspect-ratio: 1/1;
    /* Square */
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-curve);
}

.modern-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.modern-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: inline-block;
    position: relative;
}

.modern-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-green);
    transition: width 0.3s var(--transition-curve);
}

.modern-card:hover h3::after {
    width: 100%;
}

.modern-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    font-weight: bold;
    color: var(--dark-green);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-green);
    transition: width 0.3s var(--transition-curve);
}

.link-arrow:hover::after {
    width: 100%;
}

/* --- PROJECT SHOWCASE --- */
.project-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

.project-card.large {
    height: 600px;
}

.project-card.small {
    height: 400px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-curve);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Mobile Projects */
@media screen and (max-width: 768px) {
    .project-card.large {
        height: 350px;
    }

    .project-grid-split {
        grid-template-columns: 1fr;
    }

    .project-info {
        opacity: 1;
        transform: translateY(0);
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }
}

/* --- STATEMENT CTA SECTION --- */
.cta-statement {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    /* Connect to footer */
}

/* Abstract Background Shapes for CTA */
.cta-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    animation: pulse-ring 10s infinite;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.btn-giant {
    position: relative;
    background-color: var(--yellow);
    color: var(--dark-green);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 0;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.5s var(--transition-curve);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: cta-pulse 2s infinite ease-in-out;
}

.btn-giant .sparkle-container.left {
    left: -20px;
    top: -15px;
}

.btn-giant .sparkle-container.right {
    right: -20px;
    bottom: -15px;
}

@keyframes cta-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-giant:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: var(--dark-green);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 15px 15px;
    font-size: 2.2rem;
    z-index: 2000;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    transition: transform 0.3s var(--transition-curve), background-color 0.3s;
}

.floating-whatsapp:hover {
    background-color: #25d366;
    transform: scale(1.05);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--dark-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s var(--transition-curve);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: var(--white);
    color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* --- RECRUITMENT PAGE STYLES --- */
.job-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.job-badge {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--dark-green);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details {
    list-style: none;
    /* Custom bullets */
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.job-details li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.job-details li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* --- SCHEDULE PAGE STYLES --- */
.schedule-section {
    padding: 0 5% 6rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: var(--white);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.calendar-embed-container {
    width: 100%;
    background: #fff;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.calendar-embed-container iframe,
.calendar-embed-container .calendly-inline-widget {
    width: 100%;
    min-height: 700px;
}

.booking-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(46, 204, 113, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-green);
    color: var(--dark-green);
    font-size: 0.95rem;
    max-width: 700px;
}

.info-note i {
    font-size: 1.2rem;
    margin-top: 3px;
}

@media screen and (max-width: 768px) {
    .booking-card {
        padding: 1.5rem;
    }

    .booking-header h2 {
        font-size: 1.8rem;
    }

    .calendar-embed-container iframe,
    .calendar-embed-container .calendly-inline-widget {
        min-height: 500px !important;
    }
}

/* --- BOOKING PAGE REDESIGN (SPLIT VIEW) --- */
.booking-layout {
    display: flex;
    min-height: 80vh;
    background-color: var(--sand);
}

.booking-sidebar {
    flex: 1;
    padding: 8rem 5% 5rem;
    display: flex;
    justify-content: flex-end;
    background-color: var(--white);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-content {
    max-width: 450px;
    position: sticky;
    top: 150px;
}

.booking-sidebar h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.booking-sidebar p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background: var(--forest-green);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.benefit-list {
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-green);
}

.benefit-item i {
    color: var(--primary-green);
}

.contact-mini p {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-mini a {
    color: var(--forest-green);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.contact-mini a:hover {
    transform: translateX(5px);
}

.booking-widget-area {
    flex: 1.5;
    padding: 4rem 2%;
    background-color: var(--sand);
}

@media screen and (max-width: 1100px) {
    .booking-layout {
        flex-direction: column;
    }

    .booking-sidebar {
        padding: 6rem 5% 3rem;
        justify-content: center;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sticky-content {
        max-width: 600px;
        position: relative;
        top: 0;
    }

    .booking-sidebar h1 {
        font-size: 2.5rem;
    }

    .benefit-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .booking-widget-area {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 768px) {
    .booking-sidebar h1 {
        font-size: 2rem;
    }
}

/* --- FOOTER --- */
footer {
    position: relative;
    z-index: 10;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 6rem 5%;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 2rem;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s var(--transition-curve);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* --- CARD EXPANSION TRANSITION --- */
.card-expander {
    position: fixed;
    z-index: 10000;
    border-radius: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.card-expander.expanding {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    border-radius: 0;
}

.project-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sand);
    z-index: 9000;
    overflow-y: auto;
    display: none;
    opacity: 0;
}

.project-detail-overlay.active {
    display: block;
    opacity: 1;
    /* Fade handled by content */
}

.detail-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
    /* Wait for expansion */
}

.detail-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    background: rgba(253, 251, 247, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

.detail-nav.visible {
    opacity: 1;
}

/* --- PROJECT DETAIL OVERLAY (LUXURY EDITORIAL) --- */
.project-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sand);
    z-index: 9000;
    overflow-y: auto;
    display: none;
    opacity: 0;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
}

.project-detail-overlay::-webkit-scrollbar {
    display: none;
}

.project-detail-overlay.active {
    display: block;
    opacity: 1;
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.8s ease 0.6s;
}

.close-btn {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s var(--transition-curve);
}

.close-btn span {
    display: none;
}

/* Hide text for minimal look */

.close-btn:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: rotate(90deg);
}

/* Draggable Ribbon - No Auto Animation */
.kinetic-header {
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: var(--sand);
    cursor: grab;
}

.kinetic-header:active {
    cursor: grabbing;
}

.ribbon-track {
    display: flex;
    gap: 10px;
    padding: 2rem 5%;
    width: max-content;
    will-change: transform;
    transition: transform 0.1s ease-out;
    /* Smooth follow */
}

.ribbon-track img {
    height: 70vh;
    width: auto;
    min-width: 500px;
    object-fit: cover;
    border-radius: 0;
    /* Modern flush look */
    pointer-events: none;
    /* Prevent drag conflict */
}

/* Detail Hero */
.detail-hero {
    padding: 8rem 5%;
    text-align: left;
}

.detail-hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

/* Body Spacing */
.detail-body {
    padding: 0 5% 10rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 10rem;
    align-items: start;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 4rem;
}

.detail-text h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.detail-text p {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 300;
}

.detail-stats {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 4rem;
}

.stat-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item .label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stat-item .value {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
    .detail-hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .detail-stats {
        padding-left: 0;
        border-left: none;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        padding: 0;
        border: none;
        flex: 1;
        min-width: 120px;
    }

    .stat-item .value {
        font-size: 2.5rem;
    }

    .ribbon-track img {
        height: 40vh;
        min-width: 250px;
    }

    .detail-text p {
        font-size: 1.4rem;
    }
}

/* Internship Section */
.internship-section {
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

.internship-banner {
    background: var(--white);
    padding: 5rem 3rem 0;
    /* No bottom padding */
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    box-shadow: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.internship-content h2 {
    font-size: 3.5rem;
    margin: 1.5rem 0;
    color: var(--dark-green);
    letter-spacing: -2px;
}

.internship-content p {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intern-perks {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0 -3rem;
    /* Spans full card width */
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 0;
}

.intern-perks span {
    font-weight: 700;
    color: var(--forest-green);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .testimonial-track {
        gap: 1.5rem;
    }

    .t-card {
        width: 380px;
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {

    /* Navbar Mobile */
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .cta-nav {
        display: none;
    }

    .logo {
        font-size: 1.25rem;
    }

    .floating-whatsapp {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: 70vh;
        padding-top: 3rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-image-container {
        height: 250px;
    }

    /* Trust Section Mobile */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-number {
        font-size: 2.5rem;
    }

    /* Editorial Mobile */
    .editorial-section {
        padding: 4rem 5%;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .editorial-text h2 {
        font-size: 2.2rem;
    }

    .editorial-img {
        height: 350px;
    }

    .swap-order .editorial-img {
        order: -1;
    }

    /* Process Mobile */
    .process-steps {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .step-line {
        display: none;
    }

    .step-card {
        padding: 0;
    }

    /* Testimonials Mobile */
    .testimonials-v2 {
        padding: 5rem 0;
    }

    .t-card {
        width: 280px;
        height: 350px;
        padding: 1.5rem;
    }

    .t-card p {
        font-size: 1.2rem;
    }

    /* Marquee Mobile */
    .marquee-wrapper {
        margin-top: -4rem;
        margin-bottom: 2rem;
        padding: 4rem 0;
    }

    .marquee,
    .marquee-reverse {
        width: 160%;
        left: -30%;
        padding: 0.1rem 0;
    }

    .marquee {
        transform: rotate(-2deg) translateX(200px);
    }

    .marquee-reverse {
        transform: rotate(2deg) translateX(-200px);
    }

    .marquee.is-visible {
        transform: rotate(-6deg) translateX(0) !important;
    }

    .marquee-reverse.is-visible {
        transform: rotate(6deg) translateX(0) !important;
    }

    .marquee-content {
        font-size: 0.9rem;
    }

    /* CTA & Footer Mobile */
    .cta-statement {
        padding: 5rem 5%;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .btn-giant {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    /* Internship Mobile */
    .internship-section {
        padding-bottom: 0 !important;
    }

    .internship-banner {
        padding: 3rem 1.5rem 0;
        border-radius: 0;
        border-bottom: none;
    }

    .internship-content h2 {
        font-size: 2.2rem;
    }

    .internship-content p {
        font-size: 1rem;
    }

    .intern-perks {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        background: #f9f9f9;
    }
}