* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC000;
    --light-yellow: #FFEB3B;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --dark-bg: #0d0d0d;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --accent-gray: #404040;
}

/* Light Theme Variables */
body.light-theme {
    --primary-black: #ffffff;
    --secondary-black: #f5f5f5;
    --dark-bg: #fafafa;
    --text-light: #1a1a1a;
    --text-gray: #4a4a4a;
    --accent-gray: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-black);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
    transition: background-color 0.3s ease;
}

body.light-theme .header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-wa-nav {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-wa-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--accent-gray);
    border: 2px solid var(--primary-yellow);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--primary-yellow);
    transform: rotate(180deg);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg);
    color: var(--primary-black);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--primary-yellow);
}

body.light-theme .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--primary-black);
}

body.light-theme .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
}

body.light-theme .theme-toggle:hover {
    background: var(--dark-yellow);
}


/* ============================================
   PREMIUM HERO SECTION - LUXURY DESIGN
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
    padding: 10rem 0 6rem;
}

body.light-theme .hero {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

/* Simple Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-yellow);
    top: -10%;
    right: -10%;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-yellow);
    bottom: -10%;
    left: -5%;
    animation: floatOrb 15s infinite ease-in-out reverse;
}

.orb-3 {
    display: none;
}

.grid-overlay,
.particle-system {
    display: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

/* Luxury Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: floatOrb 25s infinite ease-in-out;
}

body.light-theme .gradient-orb {
    opacity: 0.12;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-yellow), var(--dark-yellow));
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--light-yellow), var(--primary-yellow));
    bottom: -15%;
    right: -10%;
    animation-delay: 8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--dark-yellow), var(--light-yellow));
    top: 40%;
    right: 15%;
    animation-delay: 16s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(50px, -80px) scale(1.15);
        opacity: 0.25;
    }
    50% {
        transform: translate(-30px, 40px) scale(0.95);
        opacity: 0.18;
    }
    75% {
        transform: translate(40px, 60px) scale(1.08);
        opacity: 0.22;
    }
}

/* Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
    box-shadow: 0 0 10px var(--primary-yellow);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 6s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; }

@keyframes particleFloat {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Hero Layout */
.hero-layout {
    position: relative;
    z-index: 100;
    display: block;
    max-width: 900px;
}

.hero-content-main {
    position: relative;
    z-index: 100;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.badge-text {
    font-weight: 500;
}

.badge-shine {
    display: none;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px var(--primary-yellow);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.badge-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

/* Premium Title */
.hero-title-premium {
    margin-bottom: 2rem;
}

.title-pre {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-yellow);
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.title-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}

.title-main .word {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    text-transform: uppercase;
}

body.light-theme .title-main .word {
    color: #1a1a1a;
}

.word-accent {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word-accent::after {
    display: none;
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1.6rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

body.light-theme .hero-desc {
    color: #4a4a4a;
}

/* Premium Features */
.premium-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
}

body.light-theme .feature-item {
    color: #1a1a1a;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    color: var(--primary-yellow);
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Premium CTA Buttons */
.hero-cta-premium {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-primary,
.cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-yellow);
}

body.light-theme .cta-secondary {
    color: var(--primary-black);
}

.cta-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-bg,
.cta-shine {
    display: none;
}

/* Hide Stats Panel on Mobile */
.hero-stats-panel {
    display: none;
}

.stats-card,
.stats-grid,
.stat-box,
.stat-icon,
.stat-content,
.trust-badges,
.trust-badge,
.deco-line,
.deco-circle {
    display: none;
}

body.light-theme .stats-card {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge svg {
    color: var(--primary-yellow);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    height: 2px;
    opacity: 0.3;
}

.line-1 {
    width: 40%;
    top: 20%;
    left: 0;
    animation: lineMove1 8s infinite;
}

.line-2 {
    width: 30%;
    bottom: 30%;
    right: 0;
    animation: lineMove2 10s infinite;
}

@keyframes lineMove1 {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(100px); opacity: 0.6; }
}

@keyframes lineMove2 {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(-100px); opacity: 0.6; }
}

.deco-circle {
    position: absolute;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Delays */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.3;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), var(--light-yellow), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.title-underline::before {
    left: -15px;
}

.title-underline::after {
    right: -15px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    position: relative;
    padding: 6rem 0;
    transition: background 0.3s ease;
}

body.light-theme .about {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4rem;
}

.about-main-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.about-text-box {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-gray);
    position: relative;
    overflow: hidden;
}

.about-text-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-text-box:hover::before {
    opacity: 0.3;
}

.about-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.about-description {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.about-badge-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.quality-badge:hover {
    background-color: rgba(255, 215, 0, 0.15);
    border-color: var(--primary-yellow);
    transform: translateX(5px);
}

.quality-badge svg {
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.quality-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.quality-badge strong {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
}

.quality-badge span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .feature-box {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* History Section */
.history {
    background-color: var(--primary-black);
    transition: background-color 0.3s ease;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.history-content h3 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Vision Mission Section */
.vision-mission {
    background-color: var(--secondary-black);
    transition: background-color 0.3s ease;
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vm-card {
    background-color: var(--primary-black);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .vm-card {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
}

body.light-theme .vm-card:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
}

.vm-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
    position: relative;
}

.vm-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
}

.vm-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Services Section */
.services {
    background-color: var(--primary-black);
    transition: background-color 0.3s ease;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

body.light-theme .service-card {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--light-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35);
}

.service-icon {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    background: rgba(255, 215, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-service:hover::before {
    width: 300px;
    height: 300px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Products Section */
.products {
    background-color: var(--secondary-black);
    transition: background-color 0.3s ease;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Search Container */
.search-container {
    margin: 2rem auto 3rem;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid var(--accent-gray);
    border-radius: 50px;
    background-color: var(--primary-black);
    color: var(--text-light);
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.search-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

body.light-theme .search-input {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

.search-results {
    margin-top: 1rem;
    padding: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background-color: var(--primary-black);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    opacity: 1;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card.hidden {
    display: none;
}

body.light-theme .product-card {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

body.light-theme .product-card:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background-color: var(--secondary-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

body.light-theme .product-image {
    background-color: #f5f5f5;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gray), var(--secondary-black));
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.1);
}

body.light-theme .product-placeholder {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.product-info {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-product:hover::before {
    width: 300px;
    height: 300px;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Contact Section */
.contact {
    background-color: var(--primary-black);
    transition: background-color 0.3s ease;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .contact-item {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: var(--primary-yellow);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

body.light-theme .contact-item:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.contact-icon {
    color: var(--primary-yellow);
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 215, 0, 0.2);
}

.contact-details h4 {
    font-size: 1.4rem;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.9rem;
    font-style: italic;
}

.btn-contact-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact-wa::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-contact-wa:hover::before {
    width: 200px;
    height: 200px;
}

.btn-contact-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    border: 3px solid var(--accent-gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

body.light-theme .contact-map {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--accent-gray);
    transition: background-color 0.3s ease;
}

body.light-theme .footer {
    background-color: #fafafa;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-yellow);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-stats h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stats-counter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--primary-black);
    border-radius: 10px;
    border: 1px solid var(--accent-gray);
    transition: all 0.3s ease;
}

body.light-theme .stat-item {
    background-color: #ffffff;
    border-color: #e0e0e0;
}

.stat-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.stat-item svg {
    flex-shrink: 0;
    color: var(--primary-yellow);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.stat-value {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-gray);
    color: var(--text-gray);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats-panel {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .title-main .word {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background-color: rgba(13, 13, 13, 0.98);
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    body.light-theme .nav-menu {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .logo span {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .title-pre {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .title-main .word {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-cta-premium {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .premium-features {
        gap: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-text-box {
        padding: 2rem 1.5rem;
    }

    .about-title-badge {
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-badge-wrapper {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-container {
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }
    
    .search-input {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 220px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 50px;
        height: 50px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }

    .title-main .word {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .premium-badge {
        padding: 0.6rem 1.2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    .about-text-box {
        padding: 1.5rem 1rem;
    }

    .about-title-badge {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
    }
    
    .orb-1, .orb-2, .orb-3 {
        filter: blur(60px);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .product-image {
        height: 200px;
        padding: 8px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
    
    .btn-product {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
