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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #faf8f5;
    color: #2a2a2a;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Parallax containers */
.parallax-layer {
    position: relative;
    will-change: transform;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #faf8f5;
    color: #2a2a2a;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background: #0a0a0a;
    color: #fff;
}

body.dark-mode .bg-animation {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
}

body.dark-mode .bg-animation::before {
    background: radial-gradient(circle at 20% 50%, rgba(212, 163, 85, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 147, 80, 0.1) 0%, transparent 50%);
}

body.dark-mode .bg-animation::after {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 163, 85, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(196, 147, 80, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(212, 163, 85, 0.05) 0%, transparent 30%);
}

body.dark-mode header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 163, 85, 0.1);
}

body.dark-mode header.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

body.dark-mode nav a {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode nav a:hover {
    color: #d4a355;
}

body.dark-mode .hero-modern h1 {
    background: linear-gradient(135deg, #ffffff 0%, #d4a355 50%, #f4d799 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-modern p {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .product-modern {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
}

body.dark-mode .product-modern p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .about-modern {
    background: rgba(212, 163, 85, 0.03);
}

body.dark-mode .about-content p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .location-card p {
    color: rgba(255, 255, 255, 0.75);
}

body.dark-mode footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 163, 85, 0.1);
}

body.dark-mode footer p {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .footer-credit {
    color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .gallery-item p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 163, 85, 0.2);
}

body.dark-mode .testimonial-text {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .faq-section {
    background: rgba(212, 163, 85, 0.03);
}

body.dark-mode .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 163, 85, 0.2);
}

body.dark-mode .faq-question {
    color: #fff;
}

body.dark-mode .faq-answer p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .contact-section {
    background: rgba(212, 163, 85, 0.03);
}

body.dark-mode .contact-info p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 85, 0.2);
    color: #fff;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .contact-form label {
    color: rgba(255, 255, 255, 0.8);
}

/* Theme Toggle */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 163, 85, 0.1);
    border: 1px solid rgba(212, 163, 85, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(212, 163, 85, 0.2);
    transform: rotate(15deg);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all 0.3s ease;
    color: #c49350;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

body.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

body.dark-mode .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #f4d799;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: spinLogo 3s ease-in-out infinite;
}

@keyframes spinLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-brand {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 163, 85, 0.2);
    border-top-color: #c49350;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #faf8f5 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 163, 85, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 147, 80, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.bg-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 163, 85, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(196, 147, 80, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(212, 163, 85, 0.02) 0%, transparent 30%);
    animation: floatReverse 25s ease-in-out infinite;
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-30px, 30px) rotate(-120deg) scale(1.1); }
    66% { transform: translate(20px, -20px) rotate(-240deg) scale(0.9); }
}

/* Parallax decorative elements */
.parallax-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.parallax-bee {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatBee 6s ease-in-out infinite;
    filter: blur(1px);
}

.parallax-bee:nth-child(2) {
    animation-delay: 2s;
    font-size: 2.5rem;
}

.parallax-bee:nth-child(3) {
    animation-delay: 4s;
    font-size: 2rem;
}

@keyframes floatBee {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.15;
    }
    50% { 
        transform: translate(30px, -30px) rotate(10deg); 
        opacity: 0.25;
    }
}

body.dark-mode .parallax-bee {
    opacity: 0.1;
}

body.dark-mode .parallax-bee:hover {
    opacity: 0.2;
}

@media (max-width: 768px) {
    .parallax-decorations {
        display: none;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    backdrop-filter: blur(20px);
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid rgba(212, 163, 85, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(250, 248, 245, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #c49350;
    background: rgba(212, 163, 85, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

body.dark-mode .back-arrow {
    color: #d4a355;
    background: rgba(212, 163, 85, 0.15);
}

.back-arrow:hover {
    background: rgba(212, 163, 85, 0.2);
    transform: translateX(-5px);
}

body.dark-mode .back-arrow:hover {
    background: rgba(212, 163, 85, 0.25);
}

.logo-new {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-new:hover {
    transform: rotate(180deg);
}

.brand-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #c49350;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

body.dark-mode .brand-subtitle {
    color: #d4a355;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: rgba(42, 42, 42, 0.7);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: #c49350;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(212, 163, 85, 0.08);
    border: 1px solid rgba(212, 163, 85, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: rgba(42, 42, 42, 0.5);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(212, 163, 85, 0.12);
    color: rgba(42, 42, 42, 0.8);
}

.lang-btn.active {
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(196, 147, 80, 0.3);
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-btn span {
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.05rem;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 163, 85, 0.12);
    border: 1px solid rgba(212, 163, 85, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    color: #c49350;
    animation: fadeInUp 0.8s ease;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-modern h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 50%, #d4a355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-modern p {
    font-size: 1.5rem;
    color: rgba(42, 42, 42, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(196, 147, 80, 0.25);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(196, 147, 80, 0.35);
}

/* Products Section */
.products-modern {
    padding: 8rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.6);
    margin-bottom: 5rem;
}

.product-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.product-modern {
    position: relative;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid rgba(212, 163, 85, 0.2);
    border-radius: 30px;
    transition: all 0.5s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 163, 85, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-modern:hover::before {
    opacity: 1;
}

.product-modern:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 163, 85, 0.4);
    box-shadow: 0 20px 50px rgba(196, 147, 80, 0.15);
}

.product-icon-modern {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

.product-modern:hover .product-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.product-modern h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #c49350;
    font-weight: 700;
}

.product-modern p {
    color: rgba(42, 42, 42, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 163, 85, 0.12);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #c49350;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Stats Parallax Section */
.stats-parallax {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background: linear-gradient(135deg, rgba(212, 163, 85, 0.9) 0%, rgba(196, 147, 80, 0.85) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hexagons" x="0" y="0" width="100" height="86.6" patternUnits="userSpaceOnUse"><polygon points="50,1 95,25 95,75 50,99 5,75 5,25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    background-size: cover, 100px 100px;
    z-index: 1;
    will-change: transform;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.stats-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.stats-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding: 0 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-item:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 1.5s; }

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    display: inline;
    margin-left: -0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05rem;
}

body.dark-mode .stats-title,
body.dark-mode .stat-number,
body.dark-mode .stat-suffix,
body.dark-mode .stat-label {
    color: #fff;
}

/* About Section */
.about-modern {
    padding: 8rem 2rem;
    background: rgba(212, 163, 85, 0.04);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #8b6f47;
}

.about-content p {
    color: rgba(42, 42, 42, 0.7);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.location-card {
    padding: 2rem;
    background: rgba(212, 163, 85, 0.1);
    border: 1px solid rgba(212, 163, 85, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-card h4 {
    color: #c49350;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-card p {
    color: rgba(42, 42, 42, 0.75);
}

.about-visual {
    position: relative;
    height: 500px;
}

.hex-pattern {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: hexFloat 6s ease-in-out infinite;
}

@keyframes hexFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hex {
    width: 100%;
    height: 150px;
    background: rgba(212, 163, 85, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(212, 163, 85, 0.3);
    animation: hexPulse 3s ease-in-out infinite;
}

.hex:nth-child(2) { animation-delay: 0.5s; }
.hex:nth-child(3) { animation-delay: 1s; }
.hex:nth-child(4) { animation-delay: 1.5s; }
.hex:nth-child(5) { animation-delay: 2s; }
.hex:nth-child(6) { animation-delay: 2.5s; }

@keyframes hexPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 163, 85, 0.15);
    background: #ffffff;
}

footer p {
    color: rgba(42, 42, 42, 0.6);
    margin-bottom: 0.5rem;
}

.footer-credit {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 163, 85, 0.1);
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 0.5);
}

.bitbean-link {
    color: #c49350;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.bitbean-link:hover {
    color: #d4a355;
}

.bitbean-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    transition: width 0.3s ease;
}

.bitbean-link:hover::after {
    width: 100%;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

body.dark-mode .gallery-section {
    background: rgba(10, 10, 10, 0.5);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    box-shadow: 0 15px 40px rgba(196, 147, 80, 0.25);
    transform: scale(1.02);
}

body.dark-mode .gallery-item img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .gallery-item:hover img {
    box-shadow: 0 15px 40px rgba(196, 147, 80, 0.35);
}

.gallery-item p {
    font-size: 1.1rem;
    color: rgba(42, 42, 42, 0.7);
    font-weight: 500;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background: rgba(212, 163, 85, 0.04);
}

body.dark-mode .testimonials-section {
    background: rgba(212, 163, 85, 0.03);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 163, 85, 0.2);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 147, 80, 0.15);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(42, 42, 42, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #c49350;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(42, 42, 42, 0.5);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

body.dark-mode .faq-section {
    background: rgba(212, 163, 85, 0.03);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(212, 163, 85, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 163, 85, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2a2a2a;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #c49350;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #c49350;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: rgba(212, 163, 85, 0.04);
}

body.dark-mode .contact-section {
    background: rgba(212, 163, 85, 0.03);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 85, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #c49350;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 163, 85, 0.2);
}

body.dark-mode .contact-form {
    background: rgba(255, 255, 255, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(42, 42, 42, 0.8);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(212, 163, 85, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #faf8f5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c49350;
    box-shadow: 0 0 0 3px rgba(196, 147, 80, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(196, 147, 80, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 147, 80, 0.4);
}

.form-success {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-modern h1 {
        font-size: 3rem;
    }

    .hero-modern p {
        font-size: 1.2rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

    .language-selector {
        padding: 0.3rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .flag-icon {
        width: 20px;
        height: 14px;
    }

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

    .nav-container {
        padding: 0 1.5rem;
    }

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

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

    .contact-form {
        padding: 2rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .stats-parallax {
        height: auto;
        padding: 6rem 2rem;
    }

    .stats-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}