/* CSS Variables - Dark Theme (Default) */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #232938;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-orange: #f59e0b;
    --accent-orange-dark: #d97706;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    --border-color: #374151;
    --gradient-orange: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #2563eb);
    --gradient-glow: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(245, 158, 11, 0.3);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    --gradient-glow: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 60px rgba(245, 158, 11, 0.15);
}

[data-theme="light"] .logo-img {
    filter: none;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Georgian', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-blue {
    background: var(--gradient-blue);
    color: var(--text-primary);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: 24px;
    transform: translateY(-3px);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    vertical-align: middle;
    /* Dark mode: white shadow for visibility */
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 1)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .art {
    color: var(--accent-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-mobile-contacts {
    display: none;
    align-items: center;
    gap: 10px;
}

.nav-cta {
    padding: 10px 20px;
}

.nav-cta-mobile {
    font-size: 13px;
    padding: 8px 14px;
}

/* FB icon – იგივე ფერი/ბლოკი რაც ტელეფონის ღილაკს */
.nav-fb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gradient-orange);
    color: var(--bg-primary);
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-fb-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    color: var(--bg-primary);
}

.mobile-fb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gradient-orange);
    color: var(--bg-primary);
    font-size: 20px;
}
.mobile-fb-icon:hover {
    color: var(--bg-primary);
    opacity: 0.9;
}

.btn-fb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.btn-fb-icon:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.btn-fb-icon-lg {
    width: 52px;
    height: 52px;
    font-size: 22px;
}

.form-footer .form-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: var(--accent-orange);
    font-size: 16px;
    transition: opacity 0.2s;
}
.form-footer .form-footer-icon:hover {
    color: var(--accent-orange);
    opacity: 0.9;
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 28px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--accent-orange);
}

.theme-toggle i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    color: var(--accent-orange);
    opacity: 0;
    transform: translateX(-5px);
}

.theme-toggle .fa-moon {
    color: #fbbf24;
    opacity: 1;
    transform: translateX(0);
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateX(0);
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateX(5px);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--accent-orange);
    border-radius: 50%;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 1;
}

[data-theme="light"] .theme-toggle::before {
    left: calc(100% - 22px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu a {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 10px 0;
}

.mobile-menu-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-theme-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.theme-toggle-mobile {
    flex-shrink: 0;
}

/* Hidden section utility */
.section-hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1,
.hero-content .hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-description .highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

.stat-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
}

.stat-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}

.stat-icon.pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-pink);
}

.stat-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Hero Image / Slideshow */
.hero-image {
    position: relative;
}

.hero-slideshow {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-slideshow-inner {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-slide-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.hero-slide-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-slide-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.energy-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.energy-badge i {
    color: var(--accent-green);
    font-size: 18px;
}

.energy-rating {
    font-size: 20px;
    font-weight: 800;
    color: var(--bg-primary);
}

.energy-label {
    font-size: 11px;
    color: var(--text-muted);
}

.noise-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 31, 46, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: var(--shadow-lg);
}

.noise-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.noise-header i {
    color: var(--accent-orange);
}

.noise-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 10px;
}

.noise-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.noise-progress {
    width: 70%;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 3px;
}

/* Products Section */
.products {
    padding: 100px 0 40px;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
}

.product-link:hover {
    color: var(--accent-orange);
}

.products-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: 100px 0;
}

/* About as main hero block */
.about.hero-main {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.about.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}
.about-slideshow {
    position: relative;
}
.about-slideshow .about-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.about-slideshow .hero-slideshow-inner {
    height: 450px;
}

/* Main block: about features list – same style as original about section */
.about.hero-main .about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.about.hero-main .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.about.hero-main .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.about.hero-main .feature-content {
    min-width: 0;
    padding: 0;
}
.about.hero-main .feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    padding: 0;
    color: var(--text-primary);
    text-align: left;
}
.about.hero-main .feature-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: left;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    display: flex;
    justify-content: space-around;
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* მოგვწერეთ ქვემოთ FB და ტელეფონი – ერთიანი ყვითელი სტილი, იგივე ზომა */
.about-actions .btn-fb-icon,
.about-actions .btn.btn-secondary {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--gradient-orange);
    color: var(--bg-primary);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-actions .btn-fb-icon:hover,
.about-actions .btn.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    color: var(--bg-primary);
}
.about-actions .btn.btn-secondary {
    width: auto;
    min-width: 48px;
}

/* Promotions Section (features bar only) */
.promotions {
    padding: 40px 0 80px;
    background: var(--bg-secondary);
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.promo-card.hot {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.05));
    border-color: rgba(245, 158, 11, 0.3);
}

.promo-card.bundle {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hot-badge {
    background: #ef4444;
    color: white;
}

.bundle-badge {
    background: var(--accent-blue);
    color: white;
}

.promo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.promo-card .highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.promo-timer {
    margin-bottom: 25px;
}

.timer-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.timer-progress {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 4px;
}

.timer-text {
    font-size: 12px;
    color: var(--text-muted);
}

.promo-features {
    margin-bottom: 25px;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.promo-features li i {
    color: var(--accent-blue);
}

.promo-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.promo-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.pf-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.promo-feature-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-primary);
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.review-rating {
    margin-left: auto;
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: var(--accent-orange);
    font-size: 14px;
}

.review-rating i.far {
    opacity: 0.45;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.reviews-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.stat-stars {
    margin-bottom: 5px;
}

.stat-stars i {
    color: var(--accent-orange);
    font-size: 16px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.contact-content {
    padding: 50px;
    position: relative;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-badges {
    display: flex;
    gap: 20px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-badge i {
    color: var(--accent-green);
}

.contact-form-wrapper {
    padding: 50px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(245, 158, 11, 0.05);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-footer .form-footer-icon,
.form-footer .phone-link {
    height: 44px;
    min-width: 44px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--gradient-orange);
    color: var(--bg-primary);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.form-footer .form-footer-icon:hover,
.form-footer .phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    color: var(--bg-primary);
}
.form-footer .phone-link {
    width: auto;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-minimal {
    padding: 24px 0;
}
.footer-minimal .footer-bottom {
    padding-top: 0;
    border-top: none;
    justify-content: center;
}
.footer-minimal .footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-grid-simple {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.footer-phone-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
}
.footer-phone-whatsapp i {
    color: #25d366;
    font-size: 24px;
}
.footer-phone-whatsapp:hover {
    color: var(--accent-orange);
}
.footer-phone-whatsapp:hover i {
    color: #25d366;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-links a i {
    font-size: 10px;
    color: var(--text-muted);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-item > i {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.footer-contact .contact-item .label {
    display: block;
    font-size: 12px;
    color: var(--accent-orange);
    margin-bottom: 3px;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1,
    .hero-content .hero-title {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid-simple {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid-simple .footer-contact {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .nav-cta-group,
    .navbar .theme-toggle {
        display: none;
    }

    .nav-container {
        gap: 12px;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 0;
        transform: translateY(-4px);
    }

    .navbar .logo-img {
        height: 40px;
    }

    .nav-mobile-contacts {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        gap: 12px;
        min-width: 0;
        padding: 0 8px;
    }

    .nav-mobile-contacts .nav-fb-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .nav-mobile-contacts .nav-cta-mobile {
        height: 36px;
        min-width: 36px;
        padding: 0 12px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 8px;
        background: var(--gradient-orange);
        color: var(--bg-primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-sizing: border-box;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .nav-mobile-contacts .nav-cta-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        color: var(--bg-primary);
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 24px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-slideshow-inner {
        height: 320px;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid-simple {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .stat-card {
        padding: 15px 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 20px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        justify-content: center;
    }

    .contact-content,
    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-badges {
        flex-direction: column;
        gap: 10px;
    }

    .promo-features-bar {
        grid-template-columns: 1fr;
    }

    .about-actions {
        flex-direction: column;
    }
}
