/* ===== CRITICAL CSS - Loads first ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6cff3f;
    --primary-dark: #5cef2f;
    --secondary: #33e4bd;
    --dark: #0a0a1a;
    --dark-light: #16162d;
    --text: #ffffff;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(108, 255, 63, 0.1);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    text-align: center;
}

.spinner-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(108, 255, 63, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-text {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 255, 63, 0.1);
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 26, 0.98);
    padding: 5px 0;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--primary);
    padding: 3px;
    background: white;
}

.logo span {
    font-size: 32px;
    font-weight: 900;
    color: var(--text); 
}

.logo span::after {
    content: 'store';
    color: var(--primary);
    margin-left: 2px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    position: relative;
}

.menu a.active {
    color: var(--primary);
    font-weight: 700;
}

.menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.hamburger i {
    font-size: 24px;
    color: var(--text);
}

/* Main content */
main {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}


.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}

/* Contact Methods */
.contact-methods-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.method-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.phone-card::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.chat-card::before { background: linear-gradient(90deg, #10b981, #34d399); }
.email-card::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.phone-card .method-icon { color: #3b82f6; }
.chat-card .method-icon { color: #10b981; }
.email-card .method-icon { color: #8b5cf6; }

.method-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-number,
.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-number a,
.contact-email a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

.method-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.status-dot.online {
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.method-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid;
    border-radius: 30px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.phone-card .method-btn {
    border-color: #3b82f6;
    color: #3b82f6;
}

.phone-card .method-btn:hover {
    background: #3b82f6;
    color: white;
}

.chat-card .method-btn {
    border-color: #10b981;
    color: #10b981;
}

.chat-card .method-btn:hover {
    background: #10b981;
    color: white;
}

.email-card .method-btn {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.email-card .method-btn:hover {
    background: #8b5cf6;
    color: white;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-container {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--card-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(108, 255, 63, 0.05);
    box-shadow: 0 0 0 3px rgba(108, 255, 63, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236cff3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: rgba(108, 255, 63, 0.05);
}

.file-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: none;
}

.file-preview.show {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 255, 63, 0.3);
}

.btn-text {
    z-index: 1;
}

.btn-icon {
    z-index: 1;
}

.btn-spinner {
    display: none;
    position: absolute;
}

.btn-spinner .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-icon {
    display: none;
}

.submit-btn.loading .btn-spinner {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.form-success.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-btn {
    margin-top: 1.5rem;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(20, 25, 40, 0.95);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-item small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Business Hours */
.business-hours .day-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours .day-row:last-child {
    border-bottom: none;
}

.day-row.emergency {
    color: var(--primary);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.social-link:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link:active {
    transform: translateX(8px) scale(0.98);
}

.social-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Platform Colors */
.social-link.facebook {
    border-left-color: #1877f2;
    background: linear-gradient(90deg, rgba(24, 119, 242, 0.1) 0%, rgba(24, 119, 242, 0.05) 100%);
}

.social-link.telegram {
    border-left-color: #0088cc;
    background: linear-gradient(90deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
}

.social-link.instagram {
    border-left-color: #e4405f;
    background: linear-gradient(90deg, rgba(228, 64, 95, 0.1) 0%, rgba(228, 64, 95, 0.05) 100%);
}

.social-link.linkedin {
    border-left-color: #0a66c2;
    background: linear-gradient(90deg, rgba(10, 102, 194, 0.1) 0%, rgba(10, 102, 194, 0.05) 100%);
}

.social-link.twitter {
    border-left-color: #1da1f2;
    background: linear-gradient(90deg, rgba(29, 161, 242, 0.1) 0%, rgba(29, 161, 242, 0.05) 100%);
}

/* Icons */
.social-link i {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.15);
}

/* Platform icon colors */
.social-link.facebook i { color: #1877f2; }
.social-link.telegram i { color: #0088cc; }
.social-link.instagram i { color: #e4405f; }
.social-link.linkedin i { color: #0a66c2; }
.social-link.twitter i { color: #1da1f2; }

/* Text */
.social-link span {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
    flex-grow: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease-out both;
}

.social-link {
    animation: fadeInUp 0.5s ease-out both;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }

/* Map Section */
.map-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container {
    position: relative;
    height: 450px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    max-width: 300px;
}

.map-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.directions-btn {
    margin-top: 1rem;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.directions-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(108, 255, 63, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(108, 255, 63, 0.05);
}

.faq-number {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 40px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.customer-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    margin-left: auto;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer */
.footer {
    position: relative;
    background: var(--dark);
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--dark);
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.app-badge i {
    font-size: 1.5rem;
}

.app-badge span {
    display: flex;
    flex-direction: column;
}

.app-badge small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary);
    margin-top: 3px;
}

.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.newsletter p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
}

.newsletter-form button {
    width: 46px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.telegram:hover { background: #0088cc; }
.social-icon.instagram:hover { background: #e4405f; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.linkedin:hover { background: #0a66c2; }

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(108, 255, 63, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 255, 63, 0.5);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none;
    overflow: hidden;
}

.chat-container.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(108, 255, 63, 0.1);
    border-bottom: 1px solid var(--card-border);
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.agent-status {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.agent-status.online {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--danger);
}

.chat-body {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.received {
    margin-right: auto;
}

.message-content {
    background: rgba(108, 255, 63, 0.1);
    padding: 10px 14px;
    border-radius: 15px 15px 15px 5px;
    position: relative;
}

.message-content p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: right;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.send-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(108, 255, 63, 0.3);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(108, 255, 63, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 255, 63, 0.4);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.warning {
    border-left: 4px solid var(--warning);
}

.toast-icon {
    font-size: 1.5rem;
}

.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }

.toast-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.toast-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--danger);
}

/* Mobile Menu */
.hamburger {
    display: none;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 85%;
    height: 100vh;
    background: var(--dark);
    z-index: 1000;
    padding: 40px;
    overflow-y: auto;
    transition: var(--transition);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(108, 255, 63, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(108, 255, 63, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-logo img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.mobile-logo span {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.mobile-logo span::after {
    content: 'store';
    color: var(--primary);
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 15px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.mobile-nav-link i {
    width: 24px;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(108, 255, 63, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateX(10px);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    transform: scale(1.2);
}

.mobile-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mobile-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
    border: 1px solid transparent;
}

.mobile-social-link:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 255, 63, 0.3);
}

/* Floating element */
.floating-element {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 8rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        padding: 15px 20px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .logo span {
        font-size: 28px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
        border-radius: 14px;
    }
    
    .info-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        padding: 14px 18px;
    }
    
    .chat-container {
        width: calc(100vw - 40px);
        right: -20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .mobile-menu {
        width: 350px;
        padding: 30px;
    }
    
    .mobile-nav-link {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 15px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo span {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        gap: 10px;
    }
    
    .info-card h3 i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .social-link span {
        font-size: 0.95rem;
    }
    
    .mobile-menu {
        width: 300px;
        padding: 25px;
    }
    
    .mobile-header {
        margin-bottom: 30px;
    }
    
    .mobile-footer {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
    
    .mobile-social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .info-card {
        padding: 1rem;
    }
    
    .social-link {
        padding: 10px 14px;
        gap: 10px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), #28d4ad);
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Dark/Light mode */
@media (prefers-color-scheme: light) {
    :root {
        --card-bg: rgba(255, 255, 255, 0.95);
        --card-border: rgba(0, 0, 0, 0.1);
        --text: #1a1a1a;
        --text-light: #666666;
        --text-muted: #999999;
        --dark: #f5f5f5;
        --dark-light: #ffffff;
    }
    
    body {
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    }
    
    header {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .info-card {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .social-link {
        background: rgba(0, 0, 0, 0.03);
    }
    
    .social-link:hover {
        background: rgba(0, 0, 0, 0.08);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}