:root {
    /* Modern HSL Color Palette */
    --emerald-50: 158, 95%, 96%;
    --emerald-100: 158, 94%, 90%;
    --emerald-500: 158, 84%, 39%;
    --emerald-600: 161, 94%, 30%;
    --emerald-900: 164, 86%, 14%;
    
    --gold-500: 45, 93%, 47%;
    --gold-600: 42, 94%, 40%;
    
    --deep-green: 160, 45%, 4%;
    --dark-surface: 162, 41%, 7%;
    --dark-card: 162, 41%, 10%;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shine: rgba(255, 255, 255, 0.12);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

/* --- LIGHT MODE VARIABLES --- */
body.light-mode {
    --deep-green: 158, 40%, 98%;
    --dark-surface: 158, 30%, 95%;
    --dark-card: 0, 0%, 100%;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shine: rgba(16, 185, 129, 0.05);
    
    --shadow-premium: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

/* Helper to use HSL variables easily */
.hsl-bg { background-color: hsl(var(--clr)); }
.hsl-text { color: hsl(var(--clr)); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--deep-green));
    color: #f8fafc;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- MODERN UTILITIES --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--emerald-500)), hsl(var(--gold-500)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold { color: hsl(var(--gold-500)); }
.text-emerald { color: hsl(var(--emerald-500)); }

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, hsl(var(--emerald-500)), hsl(var(--emerald-600)));
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-spring);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.4);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.6);
    filter: brightness(1.1);
}

.btn-premium:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2.45rem;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-outline:hover {
    border-color: hsl(var(--emerald-500));
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-2px);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
    border-radius: 999px;
    background: #000000;
    backdrop-filter: none; /* Removed blur since it's solid black */
    -webkit-backdrop-filter: none;
    border: 1px solid var(--glass-border);
}

nav.scrolled {
    top: 1rem;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 0.6rem 0;
}

/* removed theme-btn as requested */
.nav-content {
    display: flex;
    justify-content: space-between; /* Space out logo and links */
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: white;
}

.nav-logo span {
    color: var(--emerald-500);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-logo {
    display: block;
    margin-bottom: 2.5rem;
    text-align: left;
}

.hero-logo {
    display: block;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-logo span {
    color: var(--emerald-500);
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.8;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--emerald-500);
}

/* Hamburger Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition-smooth);
    border-radius: 3px;
}
/* Custom icon animation on active */
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Side Drawer Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #000000;
    backdrop-filter: none;
    z-index: 1100;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}

.sidebar-overlay.active {
    right: 0;
}

.sidebar-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.floating-wa i {
    font-size: 2rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    color: hsl(var(--emerald-500));
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: hsl(var(--deep-green));
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
    filter: blur(60px);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    padding: 0.6rem 1.4rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 99px;
    color: hsl(var(--emerald-500));
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: white;
}
.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    filter: grayscale(1) brightness(0.5);
    pointer-events: none;
}

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

/* --- FEATURE CARDS --- */
.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3.5rem 2.5rem;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, hsl(var(--emerald-500)), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: hsl(var(--emerald-500));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- ETALASE PREVIEW --- */
.etalase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.goat-card {
    background: hsl(var(--dark-card));
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-spring);
}

.goat-card:hover {
    transform: translateY(-10px);
    border-color: hsl(var(--emerald-500));
    box-shadow: var(--shadow-premium);
}

.goat-img {
    aspect-ratio: 1/1;
    position: relative;
    background: #000;
    overflow: hidden;
}

.goat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.goat-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.goat-info {
    padding: 2rem;
}

.goat-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}
.goat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.goat-meta span {
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* --- FOOTER --- */
footer {
    padding: 8rem 0 3rem;
    background: hsl(var(--deep-green));
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-info p {
    color: #94a3b8;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: hsl(var(--emerald-500));
    padding-left: 5px;
}

.bottom-footer {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: #475569;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 4rem; }
    .footer-grid { 
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    nav { width: 95%; top: 1rem; }
    .hero-content { padding: 1rem; }
    .hero h1 { font-size: 3rem; }
    .section-padding { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-info { text-align: center; }
    .footer-links { text-align: center; }
}

/* --- MOBILE SIDEDRAWER --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .nav-toggle { display: block; }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.sidebar-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transition: var(--transition-spring);
    z-index: 2001;
}

.sidebar-overlay.active .sidebar-menu {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.35rem; /* Reduced from 2rem */
    font-weight: 600; /* Reduced from 800 */
    margin: 1.25rem 0; /* Reduced from 2rem 0 */
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

/* --- LIGHTBOX & MISC --- */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition-spring);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.03) 25%, 
        rgba(255,255,255,0.08) 50%, 
        rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* --- SEARCH BAR --- */
.search-container {
    max-width: 650px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    padding: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.search-input-wrapper:focus-within {
    border-color: hsl(var(--emerald-500));
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.search-input-wrapper i {
    position: absolute;
    left: 1.75rem;
    color: hsl(var(--emerald-500));
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-input {
    width: 100%;
    padding: 1.1rem 7rem 1.1rem 3.8rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.05rem;
    font-family: var(--font-body);
    outline: none;
}

.search-input::placeholder {
    color: #94a3b8; /* Lighter color for better visibility */
    opacity: 0.6;
}

.search-btn {
    position: absolute;
    right: 8px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, hsl(var(--emerald-500)), hsl(var(--emerald-600)));
    border: none;
    border-radius: 99px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.search-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
}

/* --- AFFILIATE BANNER --- */
.affiliate-banner {
    display: none;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(234, 179, 8, 0.08));
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    margin-bottom: 3.5rem;
    animation: fadeIn 0.8s ease-out;
}

.affiliate-banner.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.avatar-mini {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, hsl(var(--emerald-500)), hsl(var(--emerald-600)));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    overflow: hidden;
}

.avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.affiliate-text {
    flex: 1;
}

.affiliate-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.affiliate-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

/* --- LIGHTBOX (ZOOM FOTO) --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active img {
    transform: scale(1);
}
