/* ============================================
   VAROL ÇADIR HANGAR - Advanced 3D Website Styles
   Colors: #AD9C81 (beige/gold), #484848 (dark gray)
   ============================================ */

/* 3D Particle Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(173, 156, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(72, 72, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(173, 156, 129, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

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

:root {
    --primary-color: #AD9C81;
    --secondary-color: #484848;
    --accent-color: #8B7355;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-darker: #f0f0f0;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #2c2c2c);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-large: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Consistent spacing system */
:root {
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 5rem;     /* 80px */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Breadcrumb Navigation */
    .breadcrumb {
        background-color: var(--bg-light);
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 80px; /* Account for fixed navbar */
    }

    .breadcrumb-list {
        font-size: 0.9rem;
    }

.breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-content {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.newsletter-popup.active .newsletter-content {
    transform: scale(1) translateY(0);
}

.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.newsletter-header {
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.newsletter-header h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loading-content {
    text-align: center;
    color: var(--white);
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loading-spinner {
    margin-bottom: 30px;
    position: relative;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--white);
    border-right: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    position: relative;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.loading-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.loading-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9a8a70, #8b7355);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(173, 156, 129, 0.3);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(173, 156, 129, 0.2);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow:
        0 8px 30px rgba(173, 156, 129, 0.4),
        0 0 40px rgba(173, 156, 129, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #363636;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.text-center:last-child {
    padding-bottom: 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(173, 156, 129, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    min-height: 100px;
}

    .logo img {
        height: 70px;
        width: auto;
    }

    .footer-logo {
        height: 70px;
    }

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    perspective: 1000px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1 !important;
    z-index: 2;
    pointer-events: auto;
}

/* Fallback for mobile - ensure first slide is always visible */
.hero-slide:first-child {
    opacity: 1 !important;
    z-index: 2 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #AD9C81, #484848);
}

.hero-slide.active .hero-background img {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(72, 72, 72, 0.8) 0%,
        rgba(173, 156, 129, 0.6) 50%,
        rgba(72, 72, 72, 0.8) 100%
    );
    backdrop-filter: blur(1px);
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    min-height: 100%;
    width: 100%;
}

@keyframes particleDrift {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

/* Hero content and overlay - only for backward compatibility */

.hero-title-3d {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow:
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow:
            0 1px 0 #ccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbb,
            0 4px 0 #b9b9b9,
            0 5px 0 #aaa,
            0 6px 1px rgba(0,0,0,.1),
            0 0 5px rgba(0,0,0,.1),
            0 1px 3px rgba(0,0,0,.3),
            0 3px 5px rgba(0,0,0,.2),
            0 5px 10px rgba(0,0,0,.25),
            0 10px 10px rgba(0,0,0,.2),
            0 20px 20px rgba(0,0,0,.15);
    }
    to {
        text-shadow:
            0 1px 0 #ccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbb,
            0 4px 0 #b9b9b9,
            0 5px 0 #aaa,
            0 6px 1px rgba(0,0,0,.1),
            0 0 5px rgba(173,156,129,.3),
            0 1px 3px rgba(173,156,129,.4),
            0 3px 5px rgba(173,156,129,.3),
            0 5px 10px rgba(173,156,129,.4),
            0 10px 10px rgba(173,156,129,.3),
            0 20px 20px rgba(173,156,129,.2);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(173, 156, 129, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from { box-shadow: 0 4px 15px rgba(173, 156, 129, 0.3); }
    to { box-shadow: 0 4px 20px rgba(173, 156, 129, 0.5); }
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
    animation: featureFloat 4s ease-in-out infinite;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-feature-item:nth-child(1) { animation-delay: 0s; }
.hero-feature-item:nth-child(2) { animation-delay: 1s; }
.hero-feature-item:nth-child(3) { animation-delay: 2s; }

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

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 280px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Sections */
section {
    padding: var(--spacing-3xl) 0;
}

/* Section spacing variations */
section:first-of-type {
    padding-top: 0;
}

section:last-of-type {
    padding-bottom: var(--spacing-3xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(173, 156, 129, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: stretch;
    margin-top: var(--spacing-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    align-items: stretch;
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(173, 156, 129, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(173, 156, 129, 0.15);
    border-color: rgba(173, 156, 129, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(173, 156, 129, 0.3);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 156, 129, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius-large);
}

.feature-card:hover .feature-hover {
    opacity: 1;
}

.stat {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Products Section */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(173, 156, 129, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(173, 156, 129, 0.15),
        0 0 30px rgba(173, 156, 129, 0.1);
    border-color: rgba(173, 156, 129, 0.2);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 156, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.product-stats {
    display: flex;
    gap: var(--spacing-xl);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-md);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-desc {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
}

.product-content {
    padding: var(--spacing-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    margin-bottom: var(--spacing-sm);
}

.product-content p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.product-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.product-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-tag i {
    color: var(--primary-color);
}

/* Gallery Preview */
.gallery-preview {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 156, 129, 0.9) 0%, rgba(72, 72, 72, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.gallery-overlay a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Gallery Full Page */
.gallery-section {
    padding: var(--spacing-3xl) 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
    padding: 0 var(--spacing-md);
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item-full:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.gallery-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-full .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-full:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-full:hover img {
    transform: scale(1.1);
}

.gallery-item-full .gallery-overlay h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-item-full .gallery-overlay p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-item-full.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* Main Website Promotion Section */
.main-website-promo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.promo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.promo-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(173, 156, 129, 0.1), rgba(72, 72, 72, 0.05));
    animation: float 20s ease-in-out infinite;
}

.promo-bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.promo-bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.promo-bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

.promo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-content {
    padding: var(--spacing-lg);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(173, 156, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promo-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 700;
}

.promo-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.promo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.promo-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.promo-feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.promo-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.promo-feature-item span {
    color: var(--secondary-color);
    font-weight: 500;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(173, 156, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.promo-btn:hover::before {
    width: 300px;
    height: 300px;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(173, 156, 129, 0.4);
}

.promo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.promo-card {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border: 1px solid rgba(173, 156, 129, 0.2);
    overflow: hidden;
}

.promo-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(173, 156, 129, 0.25);
}

.promo-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(173, 156, 129, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.promo-card-content h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.promo-card-content p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.promo-stats {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(173, 156, 129, 0.2);
}

.promo-stat {
    text-align: center;
    flex: 1;
}

.promo-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.promo-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.promo-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(173, 156, 129, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

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

.promo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.promo-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s ease-in-out infinite;
}

.promo-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.promo-particles .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.promo-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.promo-particles .particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

.promo-particles .particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.7;
    }
}

/* CTA Section */
.cta {
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-md);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    padding: 0 var(--spacing-md);
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cta-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: calc(80px + 2rem) 0 var(--spacing-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-header p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 var(--spacing-md);
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.page-stat {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: var(--transition);
}

.page-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.page-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-stat .stat-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.page-header-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 15s ease-in-out infinite;
}

.page-header-bg .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.page-header-bg .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 5s;
}

.page-header-bg .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
}

/* About Page */
.about-content {
    padding: var(--spacing-3xl) 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding: 0 var(--spacing-md);
}

.about-text {
    padding-right: var(--spacing-lg);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-image {
    padding-left: var(--spacing-lg);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: block;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.timeline {
    margin: var(--spacing-3xl) 0;
    padding: 0 var(--spacing-md);
}

.timeline h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.values {
    margin-top: var(--spacing-3xl);
    padding: 0 var(--spacing-md);
}

.values h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.value-card {
    background-color: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-large);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    margin-bottom: 0;
    flex-grow: 1;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(173, 156, 129, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: var(--transition);
    gap: var(--spacing-md);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background-color: var(--bg-light);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.faq-cta h2 {
    margin-bottom: var(--spacing-sm);
}

.faq-cta p {
    margin-bottom: var(--spacing-lg);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    padding: 0 var(--spacing-md);
}

.contact-info {
    padding-right: var(--spacing-lg);
}

.contact-info h2 {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: var(--spacing-xs);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.contact-social {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(173, 156, 129, 0.2);
}

.contact-social h3 {
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form-wrapper {
    padding-left: var(--spacing-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    background-color: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(173, 156, 129, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(173, 156, 129, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(72, 72, 72, 0.6);
    font-style: italic;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.map-section {
    margin-top: var(--spacing-3xl);
    padding: 0 var(--spacing-md);
}

.map-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.map-container {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(173, 156, 129, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-3xl);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(173,156,129,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
}

.footer-logo {
    height: 80px;
    margin-bottom: var(--spacing-md);
    width: auto;
    transition: var(--transition);
}

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

.footer-col {
    padding: 0 var(--spacing-sm);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    cursor: pointer;
    pointer-events: auto !important;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.footer-col a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-col ul li a {
    flex: 1;
}

.footer-col ul li span {
    display: inline-block;
    pointer-events: none;
    user-select: none;
    flex-shrink: 0;
}

.main-site-link .btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 2;
    position: relative;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-lg);
}

.footer-bottom p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.main-site-link {
    background: rgba(173, 156, 129, 0.15);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
    border: 1px solid rgba(173, 156, 129, 0.2);
    transition: var(--transition);
}

.main-site-link:hover {
    background: rgba(173, 156, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.main-site-link .btn {
    width: 100%;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.link-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.6;
}

.main-site-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.main-site-features span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    opacity: 0.9;
    padding: var(--spacing-xs) 0;
}

.main-site-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* About Page Stats */
.about-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 140px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

@media (max-width: 968px) {
    .mobile-menu-overlay {
        top: 100px;
        height: calc(100vh - 100px);
    }
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 320px;
        max-width: 85%;
        height: calc(100vh - 100px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 40px rgba(0, 0, 0, 0.2);
        border-right: 1px solid rgba(173, 156, 129, 0.15);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        list-style: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .logo img {
        height: 65px;
        width: auto;
    }

    .footer-logo {
        height: 65px;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--secondary-color);
        border-bottom: 1px solid rgba(173, 156, 129, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 0;
        border-radius: var(--border-radius);
        position: relative;
        min-height: 50px;
        -webkit-tap-highlight-color: rgba(173, 156, 129, 0.2);
        touch-action: manipulation;
    }

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

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-color);
        background: rgba(173, 156, 129, 0.05);
        padding-left: 1.5rem;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        transform: scaleY(1);
    }

    .mobile-menu-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s ease;
        z-index: 1003;
        position: relative;
        padding: 8px;
        -webkit-tap-highlight-color: transparent;
        flex-shrink: 0;
    }

    .mobile-menu-toggle:hover {
        background: rgba(173, 156, 129, 0.1);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background-color: var(--secondary-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        position: relative;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background-color: var(--primary-color);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--primary-color);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
        max-width: 600px;
        margin: 0 auto;
        align-items: center;
        justify-items: center;
        min-height: auto;
    }

    .hero-stats {
        order: -1;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
        text-align: center;
        padding: 10px 5px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-title-3d {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .timeline-item::before {
        display: none;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .promo-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .promo-content {
        text-align: center;
        padding: var(--spacing-md);
    }

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

    .promo-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .promo-visual {
        padding: var(--spacing-md);
    }

    .promo-card {
        transform: perspective(1000px) rotateY(0deg);
        padding: var(--spacing-lg);
    }

    .promo-card:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.01);
    }

    .promo-stats {
        gap: var(--spacing-sm);
    }

    .promo-stat .stat-number {
        font-size: 1.5rem;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        position: relative;
    }

    .page-header {
        padding: calc(120px + 2rem) 0 var(--spacing-2xl);
        min-height: auto;
        position: relative;
        margin-top: 120px; /* Account for fixed navbar with bigger logo */
    }

    .page-header-content {
        padding: 0 var(--spacing-lg);
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }

    .page-header-bg {
        display: none; /* Hide animated shapes on mobile for performance */
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        max-height: none;
        margin-top: 120px; /* Account for fixed navbar with bigger logo */
        padding-top: 20px;
    }

    .hero-slider {
        position: relative;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .hero-slide.active {
        opacity: 1 !important;
        z-index: 2;
        pointer-events: auto;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block !important;
        min-height: 100%;
        background: linear-gradient(135deg, #AD9C81, #484848);
        opacity: 1 !important;
        visibility: visible !important;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero-slide.active .hero-background img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .hero-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(72, 72, 72, 0.75) 0%,
            rgba(173, 156, 129, 0.65) 50%,
            rgba(72, 72, 72, 0.75) 100%
        );
        backdrop-filter: blur(2px);
        z-index: 1;
    }

    .hero-container {
        position: relative;
        z-index: 3;
        padding: 50px 25px 40px;
        gap: 30px;
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-title-3d {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.5;
    }

    .hero-features {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-feature-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        width: 100%;
    }

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

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 20px;
        gap: 15px;
    }

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

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

    .hero-controls {
        padding: 0 15px;
    }

    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.25);
        z-index: 5;
    }

    .hero-prev:hover,
    .hero-next:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.35);
    }

    .hero-dots {
        bottom: 20px;
        gap: 12px;
        z-index: 5;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-progress {
        height: 3px;
        z-index: 5;
    }

    .features-grid,
    .products-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }

    .gallery-grid,
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery-filters {
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-xl);
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .contact-grid {
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-2xl);
        padding: 0 var(--spacing-sm);
    }

    .contact-form-wrapper {
        padding-left: 0;
        margin-top: var(--spacing-xl);
    }

    .about-section {
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-2xl);
        padding: 0 var(--spacing-sm);
    }

    .about-text {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }

    .about-image {
        padding-left: 0;
    }

    .timeline {
        margin: var(--spacing-2xl) 0;
        padding: 0 var(--spacing-sm);
    }

    .timeline-item {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
        padding-left: var(--spacing-lg);
    }

    .faq-container {
        padding: 0 var(--spacing-sm);
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    .faq-cta {
        padding: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }

    .map-section {
        margin-top: var(--spacing-2xl);
        padding: 0 var(--spacing-sm);
    }

    .footer-grid {
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }

    .page-header {
        padding: calc(120px + 1.5rem) 0 var(--spacing-xl);
        min-height: auto;
        position: relative;
        margin-top: 120px; /* Account for fixed navbar with bigger logo */
    }

    .page-header-content {
        padding: 0 var(--spacing-md);
        position: relative;
        z-index: 2;
        margin-top: 15px;
    }

    .page-header-bg {
        display: none; /* Hide animated shapes on small mobile for performance */
    }

    .page-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: var(--spacing-sm);
    }

    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-xs);
        padding: 0;
    }

    .page-header p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        padding: 0;
    }

    .page-stats {
        gap: var(--spacing-xs);
        padding: 0;
        margin-top: var(--spacing-sm);
    }

    .page-stat {
        padding: var(--spacing-sm);
        min-width: 80px;
        flex: 1;
    }

    .page-stat .stat-number {
        font-size: 1.5rem;
    }

    .page-stat .stat-label {
        font-size: 0.7rem;
    }

    .breadcrumb {
        margin-top: 80px;
        padding: var(--spacing-xs) 0;
    }

    .page-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
        margin-bottom: var(--spacing-md);
        display: inline-block;
    }

    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        line-height: 1.2;
    }

    .page-header p {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
        line-height: 1.6;
    }

    .page-stats {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        margin-top: var(--spacing-md);
        flex-wrap: wrap;
    }

    .page-stat {
        padding: var(--spacing-sm) var(--spacing-md);
        min-width: 90px;
        flex: 1;
        min-width: 0;
    }

    .page-stat .stat-number {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1;
    }

    .page-stat .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .section-header p {
        font-size: 1rem;
    }

    .nav-menu {
        width: 280px;
        max-width: 90%;
        padding: 70px 1.5rem 2rem;
    }

    .nav-menu a {
        padding: 1rem 0.8rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-toggle span {
        width: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero {
        height: 60vh;
        min-height: 450px;
        margin-top: 120px; /* Account for fixed navbar with bigger logo */
        padding-top: 20px;
    }

    .hero-slider {
        height: 100%;
    }

    .hero-container {
        padding: 40px 20px 35px;
        gap: 25px;
    }

    .hero-title-3d {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-feature-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-actions {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        padding: 15px;
        gap: 10px;
        margin-top: 20px;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

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

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

    .hero-controls {
        padding: 0 10px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 1rem;
    }

    .hero-title-3d {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .hero-feature-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .hero-feature-item i {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-stats {
        padding: 15px;
        gap: 10px;
    }

    .stat-item {
        flex: 1;
    }

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

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

    .hero-controls {
        padding: 0 15px;
    }

    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 80px 0 50px;
    }

    .page-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .page-header p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .page-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-stat {
        padding: 12px;
        min-width: 70px;
        border-radius: var(--border-radius);
    }

    .page-stat .stat-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .page-stat .stat-label {
        font-size: 0.65rem;
    }

    .features-grid {
        gap: var(--spacing-md);
    }

    .feature-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .products-grid {
        gap: var(--spacing-md);
    }

    .product-card {
        margin-bottom: var(--spacing-md);
    }

    .product-content {
        padding: var(--spacing-md);
    }

    .gallery-grid {
        gap: var(--spacing-md);
    }

    .gallery-grid-full {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .gallery-filters {
        gap: var(--spacing-xs);
        padding: 0;
    }

    .filter-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }

    .about-section {
        gap: var(--spacing-lg);
        padding: 0;
    }

    .about-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .stat-box {
        min-width: 100px;
        padding: var(--spacing-md);
    }

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

    .timeline-item {
        padding-left: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .contact-grid {
        gap: var(--spacing-lg);
        padding: 0;
    }

    .contact-item {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-md);
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.9rem;
    }

    .footer-grid {
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }

    .footer-col {
        padding: 0;
        margin-bottom: var(--spacing-lg);
    }

    .cta-content {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

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

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

    .promo-feature-item {
        padding: var(--spacing-xs);
        font-size: 0.9rem;
    }

    .promo-card {
        padding: var(--spacing-md);
    }

    .promo-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .promo-card-content h3 {
        font-size: 1.5rem;
    }

    .promo-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .promo-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .cta-feature {
        gap: var(--spacing-xs);
    }

    .cta-feature i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Force hero images visible on mobile */
    .hero-slide.active .hero-background img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    /* Newsletter Popup Mobile */
    .newsletter-content {
        padding: 25px 20px;
        margin: 15px;
        max-width: none;
        width: calc(100% - 30px);
        border-radius: var(--border-radius-large);
    }

    .newsletter-header h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .newsletter-header p {
        font-size: 0.95rem;
    }

    .newsletter-form input {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--border-radius);
    }

    .newsletter-form .btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        margin-top: 15px;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Form Validation */
.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

.newsletter-message.info {
    background-color: #cce7ff;
    color: #0066cc;
}

/* Image Loading States */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img:not([data-src]) {
    opacity: 1;
}

/* Particle Effects */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s linear infinite;
}

.particle-medium {
    width: 6px;
    height: 6px;
    background: rgba(173, 156, 129, 0.3);
}

.particle-small {
    width: 3px;
    height: 3px;
    background: rgba(173, 156, 129, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Mouse Trail */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(173, 156, 129, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

/* 3D Card Effects */
.product-card, .feature-card {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

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

/* Enhanced Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

