/* ===== CSS RESET & VARIABLES ===== */
:root {
    --primary-green: #1B8A2E;
    --primary-green-dark: #156E24;
    --primary-green-light: #22A738;
    --accent-green: #2ECC40;
    --dark-bg: #0A0A0A;
    --dark-bg-light: #111111;
    --dark-bg-card: #161616;
    --dark-bg-card-hover: #1E1E1E;
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --gradient-green: linear-gradient(135deg, #1B8A2E 0%, #2ECC40 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-green: 0 10px 40px rgba(27, 138, 46, 0.3);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-fast);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--white-10);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 55px;
    transition: var(--transition-fast);
}

.header.scrolled .nav-logo img {
    height: 45px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text span:first-child {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

.nav-logo-text span:last-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-green);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white-70);
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

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

.nav-cta {
    padding: 10px 24px !important;
    margin-left: 15px;
    background: var(--gradient-green);
    color: var(--white) !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(27, 138, 46, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 40%,
            rgba(27, 138, 46, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white-10);
    border: 1px solid var(--white-20);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--primary-green);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-green);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--white-70);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(27, 138, 46, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white-20);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    background: var(--white-05);
    transform: translateY(-3px);
}

.hero-image {
    flex: 0 0 380px;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(27, 138, 46, 0.3));
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-green);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 138, 46, 0.15) 0%, transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: floatSlow 8s ease-in-out infinite;
}

/* ===== SCROLLING TICKER ===== */
.ticker {
    background: var(--primary-green);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    flex-shrink: 0;
}

.ticker-item svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-bg-light);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

.section-header.center .section-tag::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--white-70);
    max-width: 600px;
    line-height: 1.8;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-1 {
    grid-row: span 2;
    min-height: 400px;
}

.about-img-2,
.about-img-3 {
    min-height: 190px;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-green);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: var(--shadow-green);
    z-index: 2;
}

.about-experience-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-90);
    margin-top: 5px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white-05);
    border-radius: 12px;
    border: 1px solid var(--white-10);
    transition: var(--transition-fast);
}

.about-feature:hover {
    background: var(--white-10);
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--white-50);
}

/* ===== PROGRAMS SECTION ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.program-card {
    background: var(--dark-bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: var(--transition-medium);
    position: relative;
    group: true;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-green);
}

.program-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.program-card:hover .program-card-image img {
    transform: scale(1.1);
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
}

.program-card-age {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card-body {
    padding: 25px;
}

.program-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.program-card-body p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--white-10);
}

.program-card-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--white-50);
}

.program-card-schedule svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
}

.program-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card-link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
    transition: var(--transition-fast);
}

.program-card:hover .program-card-link svg {
    transform: translateX(5px);
}

/* ===== FEATURES / WHY US SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.features-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 138, 46, 0.3) 100%);
    border-radius: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--dark-bg-card);
    border-radius: 16px;
    border: 1px solid var(--white-10);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: var(--dark-bg-card-hover);
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 138, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    transform: scale(0.5);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

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

.counter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 138, 46, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 30px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--white-90);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.counter-divider {
    width: 40px;
    height: 3px;
    background: var(--white);
    margin: 10px auto 0;
    border-radius: 2px;
    opacity: 0.5;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.schedule-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-green);
    border-bottom: 2px solid var(--white-10);
}

.schedule-table tbody tr {
    background: var(--dark-bg-card);
    transition: var(--transition-fast);
    border-radius: 12px;
}

.schedule-table tbody tr:hover {
    background: var(--dark-bg-card-hover);
    transform: translateX(5px);
}

.schedule-table tbody td {
    padding: 18px 20px;
    font-size: 0.95rem;
    color: var(--white-70);
}

.schedule-table tbody td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    color: var(--white);
}

.schedule-table tbody td:last-child {
    border-radius: 0 12px 12px 0;
}

.schedule-day-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--gradient-green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-title span {
    color: var(--primary-green);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--white-70);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white-05);
    border-radius: 12px;
    border: 1px solid var(--white-10);
    transition: var(--transition-fast);
}

.contact-info-item:hover {
    border-color: var(--primary-green);
    background: var(--white-10);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--white-50);
}

.contact-form {
    background: var(--dark-bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--white-10);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-70);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 138, 46, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px 36px;
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-green);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(27, 138, 46, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg-light);
    border-top: 1px solid var(--white-10);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-green);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--white-70);
}

.footer-social a:hover svg {
    fill: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--white-50);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary-green);
    font-size: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--white-10);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--white-50);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--white-50);
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-green);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 250px;
        order: -1;
    }

    .hero-desc {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition-fast);
        border-left: 1px solid var(--white-10);
        z-index: 1000;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image {
        flex: 0 0 200px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .counter-number {
        font-size: 2.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}