/* GiltWind - Premium Theme System & Styles */

/* Fonts */
@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Light Az.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Regular Az.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Medium Az.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Semi Bold Az.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Bold Az.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Black Az.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --font-main: 'Sofia Pro', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    --container-max: 1400px;
}

/* Dark Theme (Default) - Lime Green */
[data-theme="dark"] {
    --color-bg: #0a0a0a;
    --color-bg-alt: #141414;
    --color-bg-card: #1a1a1a;
    --color-surface: #262626;
    --color-surface-hover: #333333;
    --color-text: #fafafa;
    --color-text-secondary: #a3a3a3;
    --color-text-muted: #737373;
    --color-accent: #CCF381;
    --color-accent-secondary: #9FE870;
    --color-accent-tertiary: #7DD957;
    --color-accent-dark: #163300;
    --color-accent-glow: rgba(204, 243, 129, 0.25);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(204, 243, 129, 0.5);
    --hero-gradient: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    --sunset-gradient: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --silhouette-color: #000000;
    --card-glow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --radius-card: 16px;
    --footer-bg: #163300;
}

/* Light Theme - White Background, Dark Green Theme */
[data-theme="light"] {
    --color-bg: #ffffff;
    --color-bg-alt: #f8faf5;
    --color-bg-card: #ffffff;
    --color-surface: #f0f4e8;
    --color-surface-hover: #e5edd8;
    --color-text: #163300;
    --color-text-secondary: #3d5c1f;
    --color-text-muted: #6b8550;
    --color-accent: #163300;
    --color-accent-secondary: #CCF381;
    --color-accent-tertiary: #9FE870;
    --color-accent-dark: #163300;
    --color-accent-glow: rgba(22, 51, 0, 0.15);
    --color-border: rgba(22, 51, 0, 0.1);
    --color-border-hover: rgba(22, 51, 0, 0.25);
    --hero-gradient: linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
    --sunset-gradient: linear-gradient(180deg, #f8faf5 0%, #ffffff 100%);
    --silhouette-color: #f0f4e8;
    --card-glow: 0 8px 32px rgba(22, 51, 0, 0.08);
    --radius-card: 20px;
    --footer-bg: #163300;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(40px);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition);
}

/* Fix Logo in Light Theme (Invert White to Black) */
[data-theme="light"] .logo-img {
    filter: brightness(0);
    opacity: 0.9;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(22, 51, 0, 0.08);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 1px 3px rgba(22, 51, 0, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.logo-img {
    height: 28px;
    width: auto;
    max-width: 120px;
}

/* Partner logos in dropdown */
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 1rem 0;
}

.partner-dropdown-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    background: transparent;
    border-radius: var(--radius-sm);
    padding: 8px;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: grayscale(100%) brightness(0);
}

.partner-dropdown-logo:hover {
    transform: scale(1.05);
}

.view-all-partners {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #163300;
    text-decoration: none;
    transition: color 0.2s;
}

.view-all-partners:hover {
    color: var(--color-accent);
}

/* Category icon with image */
.category-icon img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(18%) saturate(1765%) hue-rotate(68deg) brightness(96%) contrast(88%);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--color-accent);
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.75rem;
    /* Invert for light/dark mode consistency if needed, similar to partner logos */
    filter: invert(1) grayscale(100%);
}

[data-theme="light"] .nav-icon {
    filter: invert(0) grayscale(100%);
}

.dropdown-menu a:hover .nav-icon {
    filter: grayscale(0%);
    /* Show color on hover */
}

[data-theme="light"] .dropdown-menu a:hover .nav-icon {
    filter: invert(0) grayscale(0%);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--color-surface);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn-education {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-card);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--color-accent);
    box-shadow: var(--card-glow);
    transition: all 0.2s ease;
}

.action-btn-education:hover {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(244, 114, 182, 0.4);
}

.action-btn-education img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

[data-theme="light"] .action-btn-education {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* Mobile responsive adjustments for grid */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: left;
        /* Keep left or center? User wanted Left. */
    }
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.theme-toggle:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .icon-moon {
    display: none;
}

[data-theme="light"] .icon-sun {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hero */
.hero {
    min-height: auto;
    padding: 9rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Hero Updates - Modern Design */
.hero-updates {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-updates:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.updates-header-modern {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 100px;
    padding-top: 5px;
}

.updates-header-modern h3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #163300;
    margin: 0;
    letter-spacing: -0.02em;
}

.updates-view-all {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #163300;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
}

.view-all-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent), #d4ed9a);
    border-radius: 50%;
    margin-right: 8px;
    transition: transform 0.2s;
}

.updates-view-all:hover .view-all-icon {
    transform: scale(1.1);
}

.updates-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.update-card-modern {
    background: rgba(245, 247, 242, 0.6);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.update-card-modern:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
    border-color: rgba(22, 51, 0, 0.05);
}

.update-card-content {
    flex: 1;
    min-width: 0;
}

.update-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.update-tag-modern {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent-dark);
}

.update-tag-modern.tag-new {
    color: #db2777;
}

.update-tag-modern.tag-announcement {
    color: #163300;
}

.update-tag-modern.tag-upcoming {
    color: #0284c7;
}

.update-date {
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
}

.update-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #163300;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.update-desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-arrow {
    color: #ccc;
    margin-left: 1rem;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.update-card-modern:hover .update-arrow {
    color: var(--color-accent-dark);
    transform: translateX(2px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
}

.hero-particles {
    display: none;
}

.hero-content {
    max-width: 750px;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--color-text);
    filter: none;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.hero-title strong {
    font-weight: 700;
    color: var(--color-accent);
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
    font-weight: 300;
}

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

.hero-socials {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    background: rgba(204, 243, 129, 0.15);
    color: #163300;
    transform: translateY(-1px);
}

.hero-scroll {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-secondary);
    border-radius: 14px;
    position: relative;
    opacity: 0.6;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}

.hero-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.hero-silhouette svg {
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #163300;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(22, 51, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1f4500;
    box-shadow: 0 8px 24px rgba(22, 51, 0, 0.35);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Light mode adjustments for buttons */
[data-theme="light"] .btn-primary {
    color: #fff;
}

[data-theme="light"] .btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text);
    border-color: var(--color-border);
    box-shadow: var(--card-glow);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-accent);
}

/* Education Button */
.btn-shiny {
    background: var(--color-accent);
    color: #163300;
    box-shadow: 0 2px 8px rgba(204, 243, 129, 0.3);
    border: none;
}

.btn-shiny:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(204, 243, 129, 0.4);
}

/* Wave Separator - Hidden for clean aesthetic */
.wave-separator {
    display: none;
}

.wave-bottom {
    display: none;
}

.wave-top {
    display: none;
}

/* Sections */
section {
    position: relative;
    padding: 6rem 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    max-width: 650px;
    margin: 0 auto 0.75rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 7rem 0 9rem;
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    text-align: left;
}

.about-content .section-title {
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card-stack {
    position: relative;
    width: 250px;
    height: 250px;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--card-glow);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.card-2 {
    bottom: 20px;
    left: 0;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20px;
    right: 0;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-1 {
    animation: float1 3s ease-in-out infinite;
}

@keyframes float1 {

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

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Products Grid */
.products {
    padding: 6rem 0 8rem;
}

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

/* Premium Light Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: none;
    padding: 0.75rem;
}

[data-theme="dark"] .product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.product-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-card:hover .product-emoji {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.product-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* Upcoming Section */
.upcoming-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.upcoming-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.upcoming-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.product-card.upcoming {
    opacity: 0.85;
    position: relative;
}

.product-card.upcoming::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    opacity: 0.15;
    pointer-events: none;
    border-radius: var(--radius-xl);
    z-index: 1;
}

.product-card.upcoming:hover {
    opacity: 1;
}

.upcoming-tag {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.skin-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.skin-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.skin-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.world-1 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.world-2 {
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

/* Buckingham Palace Video Card */
.buckingham-card .product-placeholder {
    overflow: hidden;
}

.buckingham-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.world-3 {
    background: linear-gradient(135deg, #56ab2f, #a8e6cf);
}

.product-info {
    padding: 0.5rem 0.5rem 0;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-info p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-count {
    font-size: 0.75rem;
    color: #374151;
    font-weight: 500;
    background: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.product-rating {
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 600;
    background: #fef3c7;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.section-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.sunset-gradient {
    background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: transparent;
    overflow: hidden;
    text-align: center;
}

.partners .section-title {
    margin-bottom: 1.5rem;
}

/* Sliding Logo Carousel */
/* Partners Section Layout */
.partners-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
    /* Ensure slider doesn't overflow container */
}

.partners-text {
    flex-shrink: 0;
    width: 300px;
    /* Fixed width for text block */
    text-align: left;
}

.partners .section-label {
    display: block;
    margin-bottom: 0.5rem;
}

.partners .section-title {
    margin-bottom: 0;
    line-height: 1.2;
}

/* Sliding Logo Carousel */
.partners-slider {
    flex-grow: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-bottom: 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: slide 25s linear infinite;
    width: max-content;
}

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

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

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 1rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast), filter var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter var(--transition-fast);
}

/* Dark Mode: White Logos */
[data-theme="dark"] .partner-logo img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Light Mode: Black Logos */
[data-theme="light"] .partner-logo img {
    filter: brightness(0);
    opacity: 1;
}

.partner-logo:hover img {
    opacity: 0.8;
}

/* Partnership CTA */
.partnership-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    flex-shrink: 0;
}

.partnership-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.partnership-cta p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* Glassmorphism Button */
.btn-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    text-decoration: none;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 180, 200, 0.3) 0%,
            rgba(150, 180, 255, 0.3) 50%,
            rgba(200, 150, 255, 0.2) 100%);
    opacity: 0.5;
    transition: opacity var(--transition-base);
    border-radius: inherit;
}

.btn-glass:hover::before {
    opacity: 0.8;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 40px rgba(150, 150, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass span,
.btn-glass svg {
    position: relative;
    z-index: 1;
}

.btn-glass svg {
    width: 20px;
    height: 20px;
}

[data-theme="light"] .btn-glass {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 200, 220, 0.5);
    color: #333;
}

[data-theme="light"] .btn-glass::before {
    background: linear-gradient(135deg,
            rgba(255, 200, 220, 0.4) 0%,
            rgba(180, 200, 255, 0.4) 50%,
            rgba(220, 180, 255, 0.3) 100%);
}

[data-theme="light"] .btn-glass:hover {
    box-shadow:
        0 10px 40px rgba(150, 150, 200, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Connect Section */
.connect {
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.connect-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sunset-sky {
    width: 100%;
    height: 100%;
    background: var(--sunset-gradient);
}

.sunset-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.sunset-silhouette svg {
    width: 100%;
    height: 100%;
}

.connect-content {
    /* Deprecated, using connect-flex */
}

.connect-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.connect-text-block {
    text-align: left;
    max-width: 500px;
}

.connect .section-title {
    margin-bottom: 0;
}

.connect-text {
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Social Grid - Clean Minimal */
.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: max-content;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--card-glow);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.social-card span {
    display: none;
}

.social-icon {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: none;
    color: var(--color-text-secondary);
}

.social-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 114, 182, 0.2);
}

.social-card:hover .social-icon {
    background: transparent;
    color: var(--color-accent);
}

/* Products Slider */
.products-slider {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.products-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: slide 15s linear infinite;
    /* Faster speed (30s) */
}

.products-slider .product-card {
    width: 280px;
    flex-shrink: 0;
}

.products-slider:hover .products-track {
    animation-play-state: paused;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #163300;
    border-radius: var(--radius-full);
    color: #163300;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #163300;
    color: #ffffff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Light Mode Social adjustments */
[data-theme="light"] .social-grid {
    background: transparent;
    border-color: transparent;
}

[data-theme="light"] .social-icon {
    background: transparent;
    color: var(--color-text);
    border-color: transparent;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #163300;
    color: #ffffff;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 0.8fr 0.8fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    opacity: 1;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #CCF381;
    /* Ensure visible hover color */
}

.brand-col .footer-brand {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    /* Smaller size */
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.subscribe-col p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.btn-subscribe {
    background: #CCF381;
    color: #163300;
    border: none;
    padding: 0 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scrollBounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.product-card:nth-child(1) {
    transition-delay: 0ms;
}

.product-card:nth-child(2) {
    transition-delay: 100ms;
}

.product-card:nth-child(3) {
    transition-delay: 200ms;
}

.social-card:nth-child(1) {
    transition-delay: 0ms;
}

.social-card:nth-child(2) {
    transition-delay: 50ms;
}

.social-card:nth-child(3) {
    transition-delay: 100ms;
}

.social-card:nth-child(4) {
    transition-delay: 150ms;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 3rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {

    /* Mobile Navigation - Fullscreen Overlay */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    /* Hide mega dropdown on mobile */
    .nav-links .nav-dropdown .enhanced-mega-menu,
    .nav-links .nav-dropdown .dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .nav-links .nav-dropdown:hover .enhanced-mega-menu,
    .nav-links .nav-dropdown:hover .dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Style mobile menu items */
    .nav-links>li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links>li>a,
    .nav-links>li>.dropdown-trigger {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-text);
    }

    /* Hide dropdown arrow on mobile */
    .nav-links .dropdown-arrow {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* X animation for nav toggle when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .hero {
        padding: 5rem 1.5rem 8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

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

    .about-visual {
        order: -1;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Mobile dropdown - show inline */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .dropdown-arrow {
        display: none;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Restored for desktop, social-grid flex overrides this? */
        /* Wait, social grid is flex now. remove this media query override */
    }

    section {
        padding: 4rem 0;
    }

    .products {
        padding: 4rem 0 6rem;
    }

    .connect {
        padding: 5rem 0 4rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

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

    .hero-tagline {
        font-size: 1.1rem;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-card-stack {
        width: 200px;
        height: 200px;
    }

    .floating-card {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.cookie-modal.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--transition);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.btn-reject {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-accept {
    background: #9FE870;
    color: #163300;
}

[data-theme="light"] .btn-accept {
    background: #9FE870;
    color: #163300;
}

/* Partners Grid Page */
.page-hero .hero-grid {
    padding-top: 1rem;
    padding-bottom: 0;
}

.partners-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
}

.partner-card-static {
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-card-static img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s;
}

.partner-card-static:hover {
    transform: translateY(-5px);
}

.partner-card-static:hover img {
    opacity: 1;
    transform: scale(1.1);
}

[data-theme="light"] .partner-card-static {
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Events Page (Luma Style) */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
    text-decoration: none;
}

.event-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-date-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.event-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.event-description p {
    margin-bottom: 0.75rem;
}

.event-meta-block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Event Card Links */
a.event-image {
    display: block;
}

.event-title-link {
    text-decoration: none;
    color: inherit;
}

.event-title-link:hover .event-title {
    color: var(--color-accent);
}

.event-read-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #163300;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-read-more:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* Event Gallery */
.event-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.event-gallery img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.event-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(22, 51, 0, 0.15);
}

/* Event Video */
.event-video {
    margin-top: 1.25rem;
}

.event-video video {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--radius-md);
    background: #000;
}

/* Compact Page Hero Overrides */
.page-hero {
    min-height: 45vh !important;
    padding: 120px 0 3rem !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-hero .hero-grid {
    padding: 0 !important;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.page-hero .hero-title {
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 800 !important;
}

.page-hero .hero-description {
    margin-bottom: 0 !important;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Ensure subsequent sections are close */
.page-hero+section {
    padding-top: 1rem !important;
}

/* Mega Menu Styles - Apple Glassmorphism */
.mega-menu {
    width: 800px !important;
    padding: 2.5rem !important;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 25px 50px -12px rgba(22, 51, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-column {
    min-width: 0;
}

.mega-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #163300;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #CCF381;
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-list li {
    padding: 0;
}

.mega-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem !important;
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.95rem;
}

.mega-list a:hover {
    color: var(--color-text);
    background: var(--color-surface);
}

.nav-icon-wrapper {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.mega-list a:hover .nav-icon-wrapper {
    background: rgba(22, 51, 0, 0.08);
    transform: scale(1.1);
}

.nav-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.mega-list a:hover .nav-icon {
    filter: brightness(0);
    /* Black icon on green accent */
    opacity: 1;
}

[data-theme="light"] .nav-icon-wrapper {
    background: transparent;
}

[data-theme="light"] .nav-icon {
    filter: brightness(0);
}

[data-theme="light"] .mega-list a:hover .nav-icon {
    filter: brightness(1);
    /* White icon on dark green accent */
}

/* ======================== */
/* ENHANCED MEGA MENU       */
/* ======================== */

.enhanced-mega-menu {
    width: 1100px !important;
    padding: 0 !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.enhanced-mega-content {
    display: grid !important;
    grid-template-columns: 240px 1fr 340px !important;
    gap: 0 !important;
}

/* Left Column: Main Categories */
.mega-categories {
    background: rgba(248, 250, 245, 0.6);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid rgba(22, 51, 0, 0.08);
}

.mega-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    border: 1px solid transparent;
}

.mega-category:hover,
.mega-category.active {
    background: #ffffff;
    border-color: rgba(22, 51, 0, 0.1);
    box-shadow: 0 4px 12px rgba(22, 51, 0, 0.06);
}

.mega-category.active {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
    border-color: rgba(204, 243, 129, 0.5);
}

.category-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 51, 0, 0.05);
    border-radius: 10px;
    flex-shrink: 0;
}

.mega-category.active .category-icon {
    background: rgba(204, 243, 129, 0.3);
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #163300;
    margin: 0;
    line-height: 1.3;
}

.category-info p {
    font-size: 0.75rem;
    color: #6b8550;
    margin: 0.15rem 0 0 0;
}

.category-arrow {
    width: 20px;
    height: 20px;
    color: #a3a3a3;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mega-category:hover .category-arrow,
.mega-category.active .category-arrow {
    color: #163300;
}

/* Middle Column: Sub-categories */
.mega-subcategories {
    padding: 1.5rem;
    min-height: 280px;
}

.subcategory-panel {
    display: none;
}

.subcategory-panel.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.subcategory-group {
    margin-bottom: 1.25rem;
}

.subcategory-group:last-child {
    margin-bottom: 0;
}

.subcategory-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #163300;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subcategory-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(204, 243, 129, 0.6) 0%, transparent 100%);
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.subcategory-list li a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #3d5c1f;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.subcategory-list li a:hover {
    background: rgba(204, 243, 129, 0.2);
    color: #163300;
    padding-left: 1rem;
}

.subcategory-list li a::after {
    display: none !important;
}

/* Right Column: Featured Content */
.mega-featured {
    background: linear-gradient(180deg, #f8faf5 0%, #f0f4e8 100%);
    padding: 1.5rem;
    border-left: 1px solid rgba(22, 51, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align top to avoid jumping */
    padding-top: 3rem;
    /* Consistent top padding */
}

.featured-panel {
    display: none;
}

.featured-panel.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.2s ease;
}

.featured-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #163300;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.featured-desc {
    font-size: 0.85rem;
    color: #6b8550;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.featured-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #163300;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.featured-link:hover {
    background: #1f4500;
    transform: translateX(4px);
}

.featured-link svg,
.featured-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    /* Force white for img/svg */
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(8px);
    }

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

/* ======================== */
/* ENHANCED ANIMATIONS      */
/* ======================== */

/* Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Hero Entrance Animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation: fadeInScale 0.6s ease-out 0.2s backwards;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.update-card {
    animation: slideInRight 0.8s ease-out 0.6s backwards;
}

/* Card Hover Effects */
.product-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Button Hover Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease, height 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Social Icon Animations */
.social-icon-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon-btn:hover {
    transform: translateY(-3px) rotate(-5deg);
}

.hero-socials {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Partner Logo Hover */
.partner-logo {
    transition: all 0.4s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Section Entrance Animation */
.section-label,
.section-title {
    animation: fadeInUp 0.7s ease-out backwards;
}

/* Footer Link Hover */
.footer-list a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-list a:hover::before {
    width: 100%;
}

/* Navbar Animation */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

/* Update Card Hover */
.update-item {
    transition: all 0.3s ease;
}

.update-item:hover {
    transform: translateX(5px);
    background: rgba(204, 243, 129, 0.1);
}

/* Education Button Pulse */
.action-btn-education {
    animation: pulse 3s ease-in-out infinite;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* ======================== */
/* PROPOSAL FORM MODAL      */
/* ======================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 32px;
    max-width: 650px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.3s ease-out;
}

/* Proposal Modal Dark Theme */
.proposal-modal {
    background: #0e2106;
    overflow: visible;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Form Card */
.proposal-modal .form-card {
    padding: 40px;
}

.proposal-modal .input-group {
    margin-bottom: 35px;
}

.proposal-modal .text-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 12px 0;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    color: #ffffff;
    font-family: inherit;
}

.proposal-modal .text-input::placeholder {
    color: #a0a0a0;
}

.proposal-modal .text-input:focus {
    border-bottom-color: #c6f16d;
}

.proposal-modal .textarea-input {
    height: 80px;
    resize: none;
}

.proposal-modal label {
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ffffff;
}

/* Chips Wrapper */
.proposal-modal .chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proposal-modal .chip {
    position: relative;
}

.proposal-modal .chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.proposal-modal .chip-label {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    color: #a0a0a0;
}

.proposal-modal .chip-label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #333;
    transition: background-color 0.3s;
}

.proposal-modal .chip input[type="radio"]:checked+.chip-label {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    color: #ffffff;
}

.proposal-modal .chip input[type="radio"]:checked+.chip-label::before {
    background-color: #ffffff;
}

/* Submit Button */
.proposal-modal .submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #c6f16d;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.proposal-modal .submit-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .proposal-modal {
        max-height: none;
        margin-bottom: 20px;
    }

    .proposal-modal .form-card {
        padding: 30px 20px;
    }

    .proposal-modal .chips-wrapper {
        gap: 8px;
    }

    .proposal-modal .chip-label {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }
}

/* ======================== */
/* ANNOUNCEMENT MODAL       */
/* ======================== */

.announcement-modal {
    max-width: 480px;
    background: #163300;
    text-align: center;
    overflow: hidden;
}

.announcement-content {
    padding: 50px 40px;
}

.announcement-icon {
    width: 80px;
    height: 80px;
    background: rgba(204, 243, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.announcement-icon svg {
    color: #CCF381;
}

.announcement-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.announcement-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.announcement-btn {
    width: 100%;
    padding: 16px 30px;
    background: #CCF381;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #163300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.announcement-btn:hover {
    transform: translateY(-2px);
    background: #b8e56a;
    box-shadow: 0 8px 24px rgba(204, 243, 129, 0.3);
}

.announcement-modal .modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.announcement-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ======================== */
/* PRIVACY POLICY MODAL      */
/* ======================== */

.privacy-modal {
    background: #0e2106;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 700px;
}

.privacy-content {
    padding: 50px 40px;
    color: #ffffff;
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #CCF381;
    margin-bottom: 10px;
    line-height: 1.3;
}

.privacy-content .privacy-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-style: italic;
}

.privacy-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #CCF381;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacy-content li strong {
    color: #ffffff;
}

.privacy-contact {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #CCF381;
}

.privacy-contact p {
    margin-bottom: 8px;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .privacy-modal {
        max-height: none;
        margin-bottom: 20px;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-content h2 {
        font-size: 1.4rem;
    }

    .privacy-content h3 {
        font-size: 1.1rem;
    }
}

/* Clickable update item */
.update-item.clickable {
    cursor: pointer;
}

.update-item.clickable:hover {
    background: rgba(22, 51, 0, 0.15);
    border-color: #163300;
}

/* ======================== */
/* DYNAMIC DETAIL PAGE      */
/* ======================== */

.detail-page {
    min-height: 100vh;
    padding-top: 80px;
}

/* Loading State */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-surface);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error State */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
    text-align: center;
}

/* Detail Hero */
.detail-hero {
    padding: 2rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--color-accent);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-accent);
    color: #163300;
}

.detail-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
}

/* Cover Media */
.detail-media {
    padding: 1rem 0 2rem;
}

.cover-image-container {
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
}

.cover-image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.cover-image-container video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Content Body */
.detail-body {
    padding: 2rem 0 4rem;
}

.detail-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.detail-text p {
    margin-bottom: 1.25rem;
}

/* Meta Block */
.detail-meta {
    max-width: 700px;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.detail-meta p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.detail-meta strong {
    color: var(--color-text);
}

/* Gallery */
.detail-gallery {
    margin-top: 3rem;
    max-width: 900px;
}

.gallery-title,
.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(22, 51, 0, 0.15);
}

/* Video Section */
.detail-video-section {
    margin-top: 3rem;
    max-width: 900px;
}

.video-container video {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius-md);
}

/* Related Section */
.related-section {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.related-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(22, 51, 0, 0.1);
}

.related-card-image {
    height: 140px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-content {
    padding: 1rem;
}

.related-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.related-card-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .detail-title {
        font-size: 1.75rem;
    }

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

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

/* ======================== */
/* GALLERY LIGHTBOX         */
/* ======================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-share {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-full);
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--color-accent);
    color: #163300;
    transform: scale(1.1);
}

.share-btn[data-share="facebook"]:hover {
    background: #1877F2;
    color: #ffffff;
}

.share-btn[data-share="twitter"]:hover {
    background: #1DA1F2;
    color: #ffffff;
}

.share-btn[data-share="linkedin"]:hover {
    background: #0A66C2;
    color: #ffffff;
}

.share-btn[data-share="whatsapp"]:hover {
    background: #25D366;
    color: #ffffff;
}

.share-btn[data-share="copy"]:hover {
    background: var(--color-accent);
    color: #163300;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-share {
        top: auto;
        bottom: -70px;
        padding: 10px 16px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }
}

/* Partner Story Modal */
.partner-modal {
    width: 700px;
    max-width: 90%;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 20px;
}

.partner-modal .modal-close {
    color: white;
    z-index: 10;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-modal-body {
    display: flex;
    flex-direction: row;
    min-height: 350px;
}

.partner-logo-box {
    flex: 1;
    background: #ccf381;
    /* Lime Green */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.partner-box-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #163300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-story {
    flex: 1.4;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background: #163300;
    /* Dark Green */
}

.partner-story h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.partner-handshake-icon {
    margin-bottom: 1rem;
    color: #ccf381;
}

.partner-story p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Partner Modal Button */
.btn-pill {
    border-radius: 9999px;
    background: #ccf381;
    color: #163300;
    width: 100%;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(22, 51, 0, 0.1);
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 51, 0, 0.2);
    background: #d4ed9a;
}

/* ============================
   Apple-Style Events Section
   ============================ */

.apple-event-banner {
    background: #f5f5f7;
    /* Apple's light gray background */
    border-radius: 24px;
    padding: 3rem 0 3rem 3rem;
    /* Right padding 0 to let scroll go to edge if needed, or structured */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    /* Aesthetic shadow/depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .apple-event-banner {
        flex-direction: row;
        align-items: center;
        padding: 4rem 0 4rem 4rem;
        height: 500px;
    }
}

/* Left Info Column */
.apple-event-info {
    flex: 0 0 auto;
    width: 100%;
    padding-right: 2rem;
    z-index: 2;
}

@media (min-width: 992px) {
    .apple-event-info {
        width: 35%;
        padding-right: 3rem;
    }
}

.apple-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #86868b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.apple-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.apple-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #424245;
    margin-bottom: 2rem;
    max-width: 400px;
}

.apple-link {
    font-size: 1rem;
    color: #0071e3;
    /* Apple Blue */
    text-decoration: none;
    font-weight: 500;
}

.apple-link:hover {
    text-decoration: underline;
}

/* Right Scroll Column */
.apple-event-scroll {
    display: flex;
    overflow: hidden;
    /* Hide scrollbars for marquee effect */
    padding-bottom: 2rem;
    padding-right: 0;
    width: 100%;
    /* Add fade mask to right edge for smooth exit */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

@media (min-width: 992px) {
    .apple-event-scroll {
        width: 65%;
    }
}

.apple-event-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
}

.apple-event-track:hover {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
        /* Move half width (one full set) */
    }
}

/* Hide scrollbar */
.apple-event-scroll::-webkit-scrollbar {
    display: none;
}

.apple-event-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.apple-event-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    /* scroll-snap-align: start; - Removed for smooth marquee */
    display: flex;
    flex-direction: column;
}

.apple-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.apple-card-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.apple-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apple-event-card:hover .apple-card-image img {
    transform: scale(1.05);
}

.apple-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.apple-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apple-card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.apple-card-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
}

/* ============================
   Mobile Responsive Improvements
   ============================ */

/* Tablet and below (max-width: 992px) */
@media (max-width: 992px) {

    /* Apple Events Section */
    .apple-event-banner {
        flex-direction: column;
        padding: 2rem;
        height: auto;
    }

    .apple-event-info {
        width: 100%;
        padding-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .apple-event-scroll {
        width: 100%;
        padding-right: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .apple-title {
        font-size: 2rem;
    }

    .apple-subtitle {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    /* General Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.75rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Apple Events Section */
    .apple-event-banner {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .apple-title {
        font-size: 1.75rem;
    }

    .apple-subtitle {
        font-size: 1rem;
    }

    .apple-event-card {
        flex: 0 0 240px;
    }

    .apple-card-image {
        height: 150px;
    }

    .apple-card-content {
        padding: 1rem;
    }

    .apple-card-content h3 {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer - Compact Mobile */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-list {
        gap: 0.5rem;
    }

    .footer-list a {
        font-size: 0.8rem;
    }

    .subscribe-col {
        grid-column: 1 / -1;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Footer Brand Logo - Centered */
    .brand-col {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .brand-col .footer-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* Footer: single column layout for mobile with equal spacing */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    /* Navigate: horizontal layout */
    .footer-grid>.footer-col:nth-child(2) .footer-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 1rem;
    }

    /* Connect: horizontal layout */
    .footer-grid>.footer-col:nth-child(3) .footer-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 1rem;
    }

    /* Legal: horizontal layout */
    .footer-grid>.footer-col:nth-child(4) .footer-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 1rem;
    }

    .site-footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }

    /* Mobile Menu - CRITICAL FIX */
    .nav-links-mobile {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        z-index: 99999 !important;
        background-color: var(--color-bg) !important;
        overflow-y: auto !important;
        padding: 90px 2rem 2rem 2rem !important;
        margin: 0 !important;
        transform: none !important;
    }

    .nav-links-mobile.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Navbar MUST be fixed and visible on mobile */
    .navbar,
    nav.navbar,
    header .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 100000 !important;
        background-color: var(--color-bg) !important;
        transform: none !important;
    }

    /* Nav toggle styling and positioning */
    .nav-toggle {
        z-index: 100001 !important;
        position: relative !important;
    }

    /* Body padding for fixed navbar */
    body {
        padding-top: 70px;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Partners Grid */
    .partners-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Events List */
    .events-list {
        gap: 1.5rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 200px;
    }

    /* Section Padding */
    section {
        padding: 3rem 0;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Apple Events Section */
    .apple-event-banner {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .apple-title {
        font-size: 1.5rem;
    }

    .apple-subtitle {
        font-size: 0.9rem;
    }

    .apple-event-card {
        flex: 0 0 200px;
    }

    .apple-card-image {
        height: 120px;
    }

    .apple-card-content {
        padding: 0.75rem;
    }

    .apple-card-content h3 {
        font-size: 0.9rem;
    }

    .apple-card-meta {
        font-size: 0.65rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Partners Grid */
    .partners-grid-layout {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Container */
    .container {
        padding: 0 0.75rem;
    }
}

/* ============================
   Mobile Mega Menu & Navigation
   ============================ */

/* Tablet and below - Mega Menu */
@media (max-width: 1024px) {
    .enhanced-mega-menu {
        width: 95vw !important;
        max-width: 700px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .enhanced-mega-content {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .mega-categories {
        display: none !important;
    }

    .mega-links-panel {
        border-right: none !important;
        padding: 1rem !important;
    }

    .mega-featured-panel {
        display: none !important;
    }

    /* Hero Updates */
    .hero-updates {
        flex-direction: column;
        padding: 1.25rem;
    }

    .updates-header-modern {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(22, 51, 0, 0.1);
        margin-bottom: 0.5rem;
    }

    .updates-header-modern h3 {
        font-size: 1.5rem;
    }
}

/* Mobile - Navigation */
@media (max-width: 768px) {

    /* Hide mega menu on mobile - use hamburger instead */
    .enhanced-mega-menu,
    .dropdown-menu {
        display: none !important;
    }

    .nav-dropdown:hover .enhanced-mega-menu,
    .nav-dropdown:hover .dropdown-menu {
        display: none !important;
    }

    /* Show mobile nav toggle */
    .nav-toggle {
        display: flex !important;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }

    /* Hero Updates */
    .hero-updates {
        padding: 1rem;
        border-radius: 16px;
        gap: 1rem;
    }

    .updates-header-modern h3 {
        font-size: 1.25rem;
    }

    .update-card-modern {
        padding: 0.75rem;
    }

    .update-title {
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 1rem 3rem;
    }

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

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    /* Hero Updates */
    .hero-updates {
        padding: 0.75rem;
    }

    .updates-header-modern h3 {
        font-size: 1.1rem;
    }

    .view-all-icon {
        width: 26px;
        height: 26px;
    }

    .updates-view-all {
        font-size: 0.75rem;
    }

    .update-card-modern {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .update-title {
        font-size: 0.8rem;
    }

    .update-date {
        font-size: 0.65rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 0.75rem 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
}

/* ============================
   Mobile Partners & Nav Fixes
   ============================ */

@media (max-width: 768px) {

    /* Partners Section Mobile */
    .partners-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .partners-text {
        text-align: center;
    }

    .partners-slider {
        width: 100%;
        min-height: 80px;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-logo {
        height: 50px;
        padding: 0 0.5rem;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    .partnership-cta {
        justify-content: center;
    }

    /* Ensure navbar is above everything */
    .navbar {
        z-index: 1000;
    }

    /* Mobile menu must be above content */
    .nav-links {
        z-index: 9999 !important;
        background: var(--color-bg) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Make nav toggle visible and clickable */
    .nav-toggle {
        z-index: 10000 !important;
        position: relative;
    }
}

@media (max-width: 480px) {
    .partners-slider {
        min-height: 60px;
    }

    .partners-track {
        gap: 1.5rem;
    }

    .partner-logo {
        height: 40px;
    }

    .partner-logo img {
        max-height: 30px;
        max-width: 80px;
    }
}

/* ============================
   Partner Modal Mobile
   ============================ */

@media (max-width: 768px) {

    /* Partner Modal Mobile Responsive */
    .partner-modal {
        width: 95%;
        max-width: 400px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .partner-modal-body {
        flex-direction: column;
        min-height: auto;
    }

    .partner-logo-box {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .partner-logo-box img {
        max-width: 120px;
        max-height: 80px;
    }

    .partner-box-text {
        font-size: 1.5rem;
    }

    .partner-story {
        padding: 1.5rem;
    }

    .partner-story h3 {
        font-size: 1.25rem;
    }

    .partner-story p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .partner-story-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Partners Page Cards Mobile */
    .partner-card-static {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 150px;
    }

    .partner-card-static img {
        max-width: 80%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .partner-modal {
        max-width: 95%;
    }

    .partner-logo-box {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

    .partner-story {
        padding: 1.25rem;
    }

    .partner-story h3 {
        font-size: 1.1rem;
    }

    .partner-story p {
        font-size: 0.85rem;
    }
}

/* ============================
   Mobile Navigation Menu
   ============================ */

/* Hide mobile nav by default (all screens) */
.nav-links-mobile {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop: hide mobile nav, show desktop nav */
@media (min-width: 769px) {
    .nav-links-mobile {
        display: none !important;
    }
}

/* Mobile: show mobile nav, hide desktop nav */
@media (max-width: 768px) {

    /* Hide desktop nav */
    .nav-links {
        display: none !important;
    }

    /* Mobile nav styles */
    .nav-links-mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links-mobile.active {
        display: flex !important;
    }

    .mobile-nav-item {
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-nav-link {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-text);
        text-decoration: none;
    }

    .mobile-nav-link:hover {
        color: var(--color-accent);
    }

    /* Mobile Menu Close Button */
    .mobile-nav-close-item {
        display: flex;
        justify-content: flex-end;
        padding: 0.5rem 0 1rem 0;
        border-bottom: none;
    }

    .mobile-nav-close {
        background: none;
        border: 1px solid var(--color-border);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--color-text);
        transition: all 0.2s ease;
    }

    .mobile-nav-close:hover {
        background: var(--color-surface);
        border-color: var(--color-accent);
    }

    .mobile-nav-close svg {
        width: 24px;
        height: 24px;
    }
}

/* ======================== */
/* COOKIE POLICY PAGE       */
/* ======================== */

.cookie-policy-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--color-bg);
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.lang-btn {
    padding: 12px 28px;
    border: 2px solid var(--color-border);
    background: transparent;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.lang-btn.active {
    background: #163300;
    border-color: #163300;
    color: #ffffff;
}

.policy-content {
    max-width: 800px;
}

.policy-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #163300;
    margin-bottom: 10px;
    line-height: 1.2;
}

.policy-content .policy-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.policy-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #163300;
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.policy-content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 25px;
    padding-left: 25px;
}

.policy-content li {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-content a {
    color: #163300;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.policy-content a:hover {
    color: var(--color-accent);
}

.cookie-type {
    background: var(--color-surface);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-accent);
}

.cookie-type h3 {
    margin-bottom: 5px;
    color: #163300;
}

.cookie-type p {
    margin-bottom: 0;
}

.contact-box {
    margin-top: 20px;
    padding: 25px;
    background: #163300;
    border-radius: 16px;
    color: #ffffff;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: #CCF381;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.back-home-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 30px;
    background: #163300;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #1f4d00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-policy-page {
        padding: 100px 0 60px;
    }

    .language-switcher {
        margin-bottom: 30px;
    }

    .lang-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .cookie-type {
        padding: 15px 20px;
    }
}