/* ========================================
   Training Ventures - Complete Redesign
   ======================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

::selection {
    background: rgba(45, 122, 62, 0.2);
    color: #1e5a2c;
}

/* ========================================
   Navigation
   ======================================== */
.nav-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}
.nav-scrolled {
    background: linear-gradient(135deg, rgba(219, 219, 219, 0.78), rgba(238, 238, 238, 0.65));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.14);
}
.nav-scrolled .nav-link {
    color: #374151;
}
.nav-scrolled .nav-link:hover {
    color: #2D7A3E;
}

.nav-inner {
    height: 80px;
    transition: height 0.35s ease;
}

.nav-logo {
    height: 80px;
    width: auto;
    transition: height 0.35s ease, transform 0.35s ease;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: height, transform;
}

.nav-transparent .nav-logo {
    animation: nav-logo-float 7s ease-in-out infinite;
}

.nav-scrolled .nav-logo {
    animation: none;
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes nav-logo-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    24% {
        transform: translate3d(3px, -3px, 0) scale(1.004);
    }
    52% {
        transform: translate3d(-3px, -5px, 0) scale(1.003);
    }
    78% {
        transform: translate3d(2px, -2px, 0) scale(1.002);
    }
}

@media (min-width: 1024px) {
    .nav-transparent .nav-inner {
        height: clamp(120px, min(18vw, 22vh), 250px);
    }

    .nav-transparent .nav-logo {
        height: clamp(120px, min(18vw, 22vh), 250px);
    }

    .nav-scrolled .nav-inner {
        height: 80px;
    }

    .nav-scrolled .nav-logo {
        height: 100px;
    }
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
    text-decoration: none;
}
.nav-link:hover {
    color: #4ade80;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2D7A3E;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover::after {
    width: 60%;
}

.nav-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.nav-social-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 222, 128, 0.7);
    background: rgba(74, 222, 128, 0.15);
    color: #bbf7d0;
}
.nav-scrolled .nav-social-icon {
    border-color: rgba(45,122,62,0.26);
    background: rgba(45,122,62,0.08);
    color: #2D7A3E;
}
.nav-scrolled .nav-social-icon:hover {
    border-color: rgba(45,122,62,0.52);
    background: rgba(45,122,62,0.16);
    color: #1e5a2c;
}
.nav-social-icon-mobile {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

/* Hamburger */
.hamburger-btn {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(0,0,0,0.05); }
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.nav-transparent .hamburger-line {
    background: white;
}
.hamburger-active .hamburger-line-1 {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-active .hamburger-line-2 {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-active .hamburger-line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 40;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-link {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}
.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--i) * 0.08s);
}
.mobile-link:hover { background: #f0fdf4; color: #2D7A3E; }

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2D7A3E 0%, #1e5a2c 100%);
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3), 0 1px 3px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4), 0 2px 6px rgba(0,0,0,0.1);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #2D7A3E;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg { padding: 14px 28px; font-size: 14px; }

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
}
.hero-bg {
    overflow: hidden;
}
.hero-bg-image {
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.12);
    transform-origin: center;
    will-change: transform;
    animation: hero-breathe 14s ease-in-out infinite;
}
@keyframes hero-breathe {
    0%, 100% {
        transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.12);
    }
    50% {
        transform: translate3d(0, calc(var(--hero-parallax-y, 0px) - 5px), 0) scale(1.145);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,15,10,0.88) 0%, rgba(10,25,15,0.75) 40%, rgba(20,40,25,0.65) 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(74, 222, 128, 0.4);
    border-radius: 50%;
    animation: float-particle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}
@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(calc(var(--drift-y, -80px))) translateX(calc(var(--drift-x, 30px))); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(45, 122, 62, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #86efac;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #4ade80, #2D7A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
}
.hero-trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 400px;
    isolation: isolate;
}
.hero-noodle-matrix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.hero-noodle {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.hero-noodle-glow {
    stroke: rgba(74, 222, 128, 0.35);
    stroke-width: 18px;
    opacity: 0.8;
    filter: blur(1px);
    animation: noodle-pulse 3.2s ease-in-out infinite;
}
.hero-noodle-core {
    stroke: rgba(134, 239, 172, 0.95);
    stroke-width: 3.2px;
    stroke-dasharray: 8 14;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.85));
    animation: noodle-flow 2.8s linear infinite;
}
.hero-noodle-node {
    pointer-events: none;
}
.hero-noodle-node-glow {
    fill: rgba(74, 222, 128, 0.32);
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.7));
}
.hero-noodle-node-core {
    fill: #bbf7d0;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.95));
}
@keyframes noodle-flow {
    to { stroke-dashoffset: -44; }
}
@keyframes noodle-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.95; }
}
.hero-visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    animation: float-card 6s ease-in-out infinite;
    z-index: 3;
}
.hero-card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}
.hero-card-2 {
    top: 48%;
    left: 5%;
    animation-delay: 2s;
}
.hero-card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Reveal Animations
   ======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Section Styles
   ======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #2D7A3E;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid #dcfce7;
}
.section-tag-dark {
    background: rgba(45, 122, 62, 0.15);
    color: #86efac;
    border-color: rgba(74, 222, 128, 0.2);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: inherit;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2D7A3E, #4ade80);
    border-radius: 4px;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}
.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   Book Panel
   ======================================== */
.book-panel {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}
.book-panel-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #2D7A3E, #4ade80, #2D7A3E);
    border-radius: 24px 24px 0 0;
}
.book-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2D7A3E, #1e5a2c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

/* Form Styles */
.form-group { display: flex; flex-direction: column; }
.form-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 8px;
}
.form-select,
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
    font-size: 14px;
    font-family: inherit;
    color: #1f2937;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}
.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #2D7A3E;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
    background: white;
}
.form-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    font-size: 20px;
}

/* ========================================
   Course Cards
   ======================================== */
.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}
.course-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.course-card-image img,
.course-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.course-card-video {
    display: block;
    background: #0f172a;
}
.course-card:hover .course-card-image img,
.course-card:hover .course-card-image video {
    transform: scale(1.1);
}
.course-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    transition: opacity 0.3s;
}
.course-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #2D7A3E, #1e5a2c);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.course-card-icon-wrap {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2D7A3E, #1e5a2c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
    z-index: 5;
    transition: transform 0.3s ease;
}
.course-card:hover .course-card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}
.course-card-body {
    padding: 32px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.course-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.course-card:hover .course-card-title { color: #2D7A3E; }
.course-card-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}
.course-card-footer { margin-top: auto; }
.course-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2D7A3E;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}
.course-card:hover .course-card-link { gap: 10px; }

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, #0f1f15 0%, #1a3a24 50%, #0f1f15 100%);
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}
.stat-card {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}
.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    display: inline;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #4ade80;
    display: inline;
}
.stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Why Cards
   ======================================== */
#about {
    overflow: visible;
}

.about-bg-glow {
    filter: opacity(50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 84vmin);
    height: min(700px, 84vmin);
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    background: radial-gradient(
        circle,
        rgba(236, 253, 245, 0.54) 0%,
        rgba(187, 247, 208, 0.4) 10%,
        rgba(134, 239, 172, 0.36) 22%,
        rgba(74, 222, 128, 0.24) 36%,
        rgba(34, 197, 94, 0.24) 50%,
        rgba(16, 185, 129, 0.10) 64%,
        rgba(16, 185, 129, 12) 76%,
        rgba(16, 185, 129, 1) 88%,
        rgba(16, 185, 129, 10) 100%
    );
    pointer-events: none;
    opacity: 0.95;
    animation: about-glow-pulse 12s ease-in-out infinite;
}
@keyframes about-glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.88;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 1;
    }
}
.why-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-8px);
}
.why-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2D7A3E, #1e5a2c);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(45, 122, 62, 0.3);
    color: white;
    transition: transform 0.3s ease;
}
.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(-5deg);
}
.why-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(45, 122, 62, 0.08), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.08), transparent 42%),
        #ffffff;
}
.team-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(2, 6, 23, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.14);
    border-color: rgba(45, 122, 62, 0.35);
}
.team-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.team-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.12), transparent 55%);
    pointer-events: none;
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-photo {
    transform: scale(1.05);
}
.team-card-body {
    padding: 24px 24px 26px;
}
.team-role-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.08em;
    font-weight: 800;
    text-transform: uppercase;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    margin-bottom: 12px;
}
.team-name {
    font-size: 1.7rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}
.team-role {
    color: #2D7A3E;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 16px;
    font-size: 0.98rem;
}
.team-bio {
    color: #4b5563;
    line-height: 1.75;
    font-size: 0.95rem;
}
.team-bio p + p {
    margin-top: 12px;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-track-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.testimonials-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}
.testimonials-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}
.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll-testimonials 60s linear infinite;
    width: max-content;
}
.testimonials-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
}
.testimonial-card-inner {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #f3f4f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.testimonial-card-inner:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D7A3E;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

/* ========================================
   FAQ
   ======================================== */
.faq-item {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #e5e7eb;
}
.faq-item.active {
    border-color: #2D7A3E;
    box-shadow: 0 8px 30px rgba(45, 122, 62, 0.1);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.2s;
}
.faq-question:hover { background: #fafafa; }
.faq-question-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    pointer-events: none;
}
.faq-icon-wrap {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D7A3E;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.active .faq-icon-wrap {
    background: #2D7A3E;
    color: white;
}
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.faq-item.active .faq-toggle {
    background: #2D7A3E;
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 24px 24px;
    padding-left: 78px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 14px;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form-shell {
    position: relative;
    max-width: 980px;
    margin: 0 auto 36px;
    padding: 34px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(145deg, #ffffff 0%, #f8fffb 52%, #f1f8f4 100%);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}
.contact-form-shell::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D7A3E, #4ade80, #2D7A3E);
}
.contact-form-shell::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -120px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.22) 0%, transparent 70%);
    pointer-events: none;
}
.contact-form-head {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}
.contact-form-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.contact-form-subtitle {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.98rem;
}
.contact-form-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-field-full {
    grid-column: 1 / -1;
}
.contact-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4b5563;
}
.required-star {
    color: #16a34a;
    margin-left: 2px;
}
.contact-name-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    color: #0f172a;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-input,
.contact-select {
    height: 48px;
    padding: 0 14px;
}
.contact-textarea {
    min-height: 130px;
    padding: 12px 14px;
    resize: vertical;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #9ca3af;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #2D7A3E;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.12);
    background: #fff;
}
.contact-select-wrap {
    position: relative;
}
.contact-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}
.contact-select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}
.contact-submit-wrap {
    padding-top: 4px;
}

/* ========================================
   Contact Cards
   ======================================== */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.contact-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2D7A3E, #1e5a2c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
    flex-shrink: 0;
}
.contact-person {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-person-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D7A3E;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}
.contact-map-wrap {
    width: 100vw;
    margin-top: 44px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: min(500px, 58vh);
    min-height: 280px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    background: #f3f4f6;
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a24 0%, #2D7A3E 50%, #1e5a2c 100%);
}
.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ========================================
   Footer
   ======================================== */
.footer-section {
    background: #0a0f0c;
}
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-heading {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer-links a:hover {
    color: #4ade80;
    transform: translateX(4px);
}
.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social:hover {
    background: #2D7A3E;
    color: white;
    transform: translateY(-3px);
}
.icon-facebook {
    width: 17px;
    height: 17px;
    fill: currentColor;
    display: block;
}
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.back-to-top:hover { color: #4ade80; }

.footer-powered-by {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}
.footer-powered-by a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-powered-by a:hover {
    color: #ffffff;
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(45, 122, 62, 0.2);
}
.footer-powered-by img {
    height: 12px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
    border: 2px solid #f1f1f1;
}
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }

/* Material Icons Fix */
.material-icons { vertical-align: middle; }

@media (prefers-reduced-motion: reduce) {
    .nav-transparent .nav-logo,
    .about-bg-glow,
    .hero-bg-image,
    .hero-noodle-glow,
    .hero-noodle-core {
        animation: none;
    }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .hero-trust-divider { display: none; }
    .hero-trust { gap: 12px; }
    .testimonial-card { width: 300px; }
    .faq-question-inner { font-size: 14px; gap: 10px; }
    .faq-answer-inner { padding-left: 24px; }
    .book-panel { padding: 24px; }
    .stat-card { padding: 20px 8px; }
    .stat-label { font-size: 11px; }
    .team-card-body { padding: 20px; }
    .team-name { font-size: 1.45rem; }
    .contact-form-shell { padding: 24px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-name-grid { grid-template-columns: 1fr; }
    .contact-map-wrap {
        margin-top: 32px;
        height: min(420px, 52vh);
    }
    .footer-bottom-right { align-items: center; }
    .footer-powered-by { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 10px; padding: 6px 12px; }
    .testimonial-card { width: 280px; }
    .section-title { font-size: 1.8rem; }
    .contact-form-shell { padding: 20px; }
    .contact-form-title { font-size: 1.45rem; }
    .contact-map-wrap {
        height: min(340px, 48vh);
        min-height: 240px;
    }
}
