/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimization */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reduce repaint/reflow */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* GPU acceleration for animations */
.hero-slide,
.feature-card-glass,
.cta-glass-card,
.category-marquee {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Lazy loading placeholder */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --reed-color: #e8dcc4;
    --reed-light: #f5f0e5;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--reed-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(76, 175, 80, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(76, 175, 80, 0.35);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo span {
    color: var(--accent-color);
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    padding: 10px 22px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Hero Section - Full Screen */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding-top: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Hero Main Content */
.hero-main-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
}

/* Hero Title */
.hero-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.title-small {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-large {
    font-size: clamp(50px, 10vw, 100px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.title-medium {
    font-size: clamp(24px, 5vw, 45px);
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    filter: brightness(1.4);
}

.hero-description {
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Social Media Icons */
.hero-social {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.15);
    border-color: var(--accent-color);
}

/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 50px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* About Section - Our Story with Card Swap */
.about-section {
    padding: 100px 0;
    background: var(--reed-light);
    position: relative;
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 700px;
}

/* Left Content Side */
.about-content-side {
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-main-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.title-highlight {
    color: var(--accent-color);
    position: relative;
}

.about-description {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.stat-box {
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.about-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.about-cta-group .btn svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: var(--transition);
}

.about-cta-group .btn:hover svg {
    transform: translateX(5px);
}

/* Right Card Swap Area */
.about-cards-wrapper {
    position: relative;
    height: 650px;
}

.card-swap-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 550px;
    perspective: 1200px;
    overflow: visible;
}

.story-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.story-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(45, 80, 22, 0.9) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
    color: var(--white);
}

.card-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: -30px;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for About Section */
@media (max-width: 1024px) {
    /* Tablet Optimizations */
    .container {
        padding: 0 18px;
    }

    .hero-fullscreen {
        height: 80vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-cards-wrapper {
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-swap-container {
        position: relative;
        right: auto;
        bottom: auto;
        width: 380px;
        height: 480px;
    }

    .story-card {
        width: 380px;
        height: 480px;
    }

    /* Categories Tablet */
    .flowing-menu {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .category-menu-item {
        height: 400px;
        margin-bottom: 55px;
    }

    .category-label-stack {
        width: 90%;
    }

    .category-label-front .category-icon {
        font-size: 22px;
    }

    .category-label-front .category-name {
        font-size: 15px;
    }

    .marquee-inner span {
        font-size: 16px;
        padding: 0 1.2vw;
    }

    .marquee-img {
        width: clamp(320px, 35vw, 420px);
        height: clamp(300px, 30vh, 380px);
        margin: 0 1.2vw;
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(45, 80, 22, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 5px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1999;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        font-size: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }

    /* Hero Mobile */
    .hero-fullscreen {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        height: calc(100dvh - 60px); /* Dynamic viewport height for mobile browsers */
        min-height: calc(100dvh - 60px);
        margin-top: 60px;
        padding-top: 0;
    }

    .hero-content {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
        text-align: center;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* About Section */
    .about-section {
        padding: 50px 0;
    }

    .about-main-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .about-main-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .about-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .about-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .card-swap-container {
        width: 100%;
        max-width: 340px;
        height: 440px;
        transform: scale(0.95);
        margin: 0 auto;
    }

    .story-card {
        width: 100%;
        height: 100%;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-number {
        font-size: 56px;
        margin-bottom: -18px;
    }

    .card-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Categories Mobile */
    .flowing-menu {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .category-menu-item {
        height: 380px;
        margin-bottom: 55px;
        border-radius: 16px;
    }

    .category-label-stack {
        width: 92%;
        bottom: -50px;
    }

    .category-label-front {
        padding: 14px 20px;
    }

    .category-label-front .category-icon {
        font-size: 20px;
    }

    .category-label-front .category-name {
        font-size: 14px;
        font-weight: 700;
    }

    .marquee-inner span {
        font-size: 13px;
        padding: 0 2vw;
    }

    .marquee-img {
        width: 90%;
        max-width: 320px;
        height: 280px;
        margin: 0 auto;
        border-radius: 12px;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        padding: 0;
    }

    .footer-col-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Header Extra Small */
    .logo h1 {
        font-size: 22px;
    }

    .header {
        padding: 12px 0;
    }

    .nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    /* Hero Extra Small */
    .hero-fullscreen {
        height: 65vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-cta-group .btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Container */
    .container {
        padding: 0 12px;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-main-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about-cta-group .btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .card-swap-container {
        width: 100%;
        max-width: 300px;
        height: 400px;
        transform: scale(0.9);
    }

    .card-content {
        padding: 20px 15px;
    }

    .card-number {
        font-size: 48px;
        margin-bottom: -15px;
    }

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Categories Extra Small */
    .category-menu-item {
        height: 340px;
        border-radius: 14px;
        margin-bottom: 50px;
    }

    .category-label-stack {
        width: 94%;
        bottom: -45px;
    }

    .category-label-back {
        height: 46px;
    }

    .category-label-front {
        height: 50px;
        gap: 8px;
        padding: 12px 16px;
    }

    .category-label-front .category-icon {
        font-size: 18px;
    }

    .category-label-front .category-name {
        font-size: 13px;
        font-weight: 700;
    }

    .marquee-inner span {
        font-size: 12px;
        padding: 0 1.5vw;
    }

    .marquee-img {
        width: 100%;
        max-width: 280px;
        height: 250px;
        border-radius: 10px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 35px 0 18px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-col-title {
        font-size: 15px;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 13px;
        padding: 6px 0;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 8px;
    }

    /* Floating Buttons */
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    .floating-btn .tooltip {
        font-size: 12px;
        padding: 6px 12px;
        right: 60px;
    }
}

/* Categories Section - Flowing Menu Style */
.categories-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.flowing-menu-wrap {
    width: 100%;
    overflow: visible;
    margin-top: 50px;
}

.flowing-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 0;
    padding: 0;
}

.category-menu-item {
    position: relative;
    overflow: visible;
    text-align: center;
    height: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 50px;
}

.category-menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.category-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}

.category-link {
    display: none;
}

/* Category Label Stack */
.category-label-stack {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 5;
}

.category-label-back {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1;
}

.category-label-front {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #f5f0e5 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 3px solid var(--accent-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.category-menu-item:hover .category-label-front {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.category-label-front .category-icon {
    font-size: 28px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.category-label-front .category-name {
    color: var(--primary-color);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Marquee Animation */
.category-marquee {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: all;
    cursor: pointer;
    background: linear-gradient(135deg, #f5f0e5 0%, #ffffff 50%, #e8dcc4 100%);
    opacity: 1;
    z-index: 1;
}

.marquee-inner-wrap {
    height: 100%;
    width: 200%;
    display: flex;
    transform: translateX(0);
}

.marquee-inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    width: 200%;
    will-change: transform;
    animation: marqueeFlow 25s linear infinite;
    animation-play-state: running;
}

.category-menu-item:hover .marquee-inner {
    animation-play-state: paused;
}

.marquee-inner span {
    color: var(--primary-color);
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.2;
    padding: 0 1.5vw;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.marquee-img {
    width: clamp(380px, 40vw, 550px);
    height: clamp(340px, 35vh, 420px);
    margin: 0 1.5vw;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid var(--accent-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.marquee-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
}

@keyframes marqueeFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Features Section */
/* Features Section - Jungle Theme */
.features-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5016 50%, #1a3a1a 100%);
    overflow: hidden;
}

.jungle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(107, 142, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 80, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(107, 142, 35, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.bamboo-stems {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%, transparent 100%);
    background-size: 100px 100%;
    opacity: 0.3;
    animation: stemSway 8s ease-in-out infinite;
}

@keyframes stemSway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.jungle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.features-main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.features-main-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature-card-glass {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.card-glass-inner {
    position: relative;
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-glass-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card-glass:hover .card-glass-inner {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(107, 142, 35, 0.3);
}

.feature-card-glass:hover .card-glass-inner::before {
    opacity: 1;
}

.feature-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-modern svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card-glass:hover .feature-icon-modern {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.feature-number {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-card-glass:hover .feature-number {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-glass-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-glass-inner p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    flex-grow: 1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 60%, 
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.feature-card-glass:hover .card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .card-glass-inner {
        padding: 30px 25px;
    }
}

/* CTA Section */
/* CTA Section - Jungle Theme */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f2a0f 0%, #1a3a1a 50%, #2d5016 100%);
    overflow: hidden;
}

.cta-jungle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bamboo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 78px, 
            rgba(107, 142, 35, 0.05) 79px, 
            rgba(107, 142, 35, 0.05) 81px, 
            transparent 82px, 
            transparent 160px),
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            transparent 48px, 
            rgba(107, 142, 35, 0.03) 49px, 
            rgba(107, 142, 35, 0.03) 51px, 
            transparent 52px, 
            transparent 100px);
    opacity: 0.4;
}

.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(107, 142, 35, 0.2) 0%, transparent 70%);
    border-radius: 50% 0;
    opacity: 0.3;
    animation: floatLeaf 20s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    transform: rotate(45deg);
}

.leaf-3 {
    top: 30%;
    left: 70%;
    animation-delay: 10s;
    transform: rotate(90deg);
}

.leaf-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
    transform: rotate(135deg);
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.4;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 30px;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-glass-card {
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.cta-card-inner {
    position: relative;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(245, 213, 106, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.3),
            inset 0 2px 8px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 12px 35px rgba(212, 175, 55, 0.5),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }
}

.cta-icon-circle svg {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-highlight {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 60%, 
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    animation: ctaShine 8s ease-in-out infinite;
}

@keyframes ctaShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-card-inner {
        padding: 40px 30px;
    }
    
    .cta-features-list {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-feature-item {
        justify-content: center;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* Footer - Jungle Theme */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0a1f0a 0%, #1a3a1a 50%, #0f2a0f 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-jungle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-bamboo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 88px, 
            rgba(107, 142, 35, 0.03) 89px, 
            rgba(107, 142, 35, 0.03) 91px, 
            transparent 92px, 
            transparent 180px);
    opacity: 0.5;
}

.footer-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(107, 142, 35, 0.08) 0%, transparent 50%);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-logo span {
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.footer-col-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.footer-links,
.footer-contact,
.footer-regions {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-regions li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact li,
.footer-regions li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.footer-links a svg,
.footer-contact li svg,
.footer-regions li svg {
    width: 14px;
    height: 14px;
    color: rgba(212, 175, 55, 0.6);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a:hover svg {
    color: var(--accent-color);
}

.footer-contact li:hover,
.footer-regions li:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Content Grid (for kurumsal page) */
.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-accent {
    font-size: 32px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.footer-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5d56a 100%);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-jungle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 88px, 
            rgba(107, 142, 35, 0.03) 89px, 
            rgba(107, 142, 35, 0.03) 91px, 
            transparent 92px, 
            transparent 180px);
    opacity: 0.5;
}

.footer-jungle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(107, 142, 35, 0.08) 0%, transparent 50%);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-glass {
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
}

.footer-keywords {
    margin-top: 10px;
}

.footer-keywords small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-bottom-glass .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.footer-copyright svg {
    width: 16px;
    height: 16px;
    color: rgba(212, 175, 55, 0.6);
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-badge svg {
    width: 14px;
    height: 14px;
    color: var(--accent-color);
}

.footer-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-glass {
        flex-direction: column;
        gap: 20px;
        padding: 20px 25px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Remove duplicate - already defined above */
}

@media (max-width: 480px) {
    .footer-bottom-glass {
        padding: 18px 20px;
    }

    .footer-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-social {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

    .hero-date-badge {
        padding: 12px 20px;
        margin-bottom: 30px;
    }

    .date-day {
        font-size: 28px;
    }

    .date-month {
        font-size: 12px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .hero-cta-btn {
        padding: 15px 35px;
        font-size: 14px;
    }

    .hero-dots {
        bottom: 25px;
    }

    .about-slider-wrapper {
        min-height: 500px;
        height: auto;
        padding: 60px 0;
    }

    .about-content-wrapper {
        padding: 40px 0 60px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-number {
        font-size: 80px;
        margin-bottom: -25px;
    }

    .about-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .about-nav {
        justify-content: center;
    }

    .about-cta {
        text-align: center;
    }

    .btn-glow {
        width: 100%;
        justify-content: center;
    }

    .bamboo-leaf {
        font-size: 40px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-cards-wrapper {
        height: 500px;
    }

    .card-swap-container {
        transform: scale(0.85);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        min-height: 350px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideInFromRight 0.5s ease-out;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* WhatsApp Button */
.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.1s;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Phone Button */
.floating-phone {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    animation-delay: 0.2s;
}

.floating-phone:hover {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
}

/* Email Button */
.floating-email {
    background: linear-gradient(135deg, #EA4335 0%, #c5221f 100%);
    animation-delay: 0.3s;
}

.floating-email:hover {
    background: linear-gradient(135deg, #c5221f 0%, #a50e0e 100%);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Tooltip */
.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation for WhatsApp */
.floating-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }

    .floating-btn .tooltip {
        display: none; /* Hide tooltips on mobile */
    }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* References Section */
.references-section {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(232,220,196,0.3), rgba(245,240,229,0.4));
}
.references-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 24px;
}
.references-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.reference-logo img {
    width: 420px;
    max-width: 90%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
    background: #000000;
    padding: 18px;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .references-section { padding: 40px 0; }
    .references-section h2 { font-size: 26px; }
    .reference-logo img { width: 360px; }
}

@media (max-width: 480px) {
    .references-section { padding: 30px 0; }
    .references-section h2 { font-size: 22px; }
    .reference-logo img { width: 260px; padding: 12px; }
}
