:root {
    --primary-color: #00FF26;
    --accent-color: #9c5005;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-muted: #cccccc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo .asal { color: var(--text-light); }
.logo .tabiiy { color: var(--primary-color); margin-left: 5px; }
.logo .toza { 
    font-size: 0.8rem; 
    border: 1px solid var(--primary-color); 
    padding: 2px 5px; 
    border-radius: 5px;
    vertical-align: middle;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-items {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

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

.nav-items:hover::after, .nav-item-active::after {
    width: 100%;
}

.nav-item-active {
    color: var(--primary-color) !important;
}

.header-phone a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    background: var(--primary-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.header-phone a:hover {
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(156, 80, 5, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #9c5005);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 38, 0.2);
}

/* Rotating Globe Visual */
.section-box1 {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    border-radius: 40px;
    height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img {
    width: 120%;
    height: auto;
    object-fit: contain;
    animation: planetAn 120s linear infinite;
    position: absolute;
    bottom: -50px;
}

.section-box-overlay1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 50%, rgba(156, 80, 5, 0.6));
    z-index: 5;
    pointer-events: none;
}

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

/* Catalog Section */
.catalog {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.slider-wrap {
    padding: 20px 0;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-name {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    background: var(--primary-color);
    color: #000;
}

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
    text-align: center;
}

.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 40px;
}

.floating {
    width: 80%;
    animation: float 4s ease-in-out infinite;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card a {
    color: var(--text-light);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.contact-map {
    height: 500px;
}

.googleMap {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    background: rgba(156, 80, 5, 0.2);
}

/* Footer */
footer {
    padding: 50px 0;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-desc {
        margin: 0 auto 30px;
    }
    .hero-btns {
        justify-content: center;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-phone {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        color: var(--primary-color);
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-box1 {
        height: 350px;
        margin-top: 30px;
    }
    .hero-img {
        width: 150%; /* Make globe look better on small screen */
        bottom: -30px;
    }
    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .stat-item {
        flex: 1 1 120px;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .contact-map {
        height: 300px;
    }
}
/* Modal Image Viewer */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 20px;
    animation: zoom 0.3s ease-out;
}

#caption {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
}

#caption h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-info {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
}

.modal-info::-webkit-scrollbar {
    width: 6px;
}

.modal-info::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.product-card img {
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
