/* ---------------------------
    GENERAL RESET & BASE
--------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

/* ---------------------------
    NAVBAR & MEGA LOGO
--------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 0 60px;
    height: 140px; 
    z-index: 1000;
    border-bottom: 3px solid #cc3300;
}

.navbar .logo-container {
    position: absolute;
    left: 20px;
    top: 0;
    height: 140px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    pointer-events: none;
}

.navbar .main-logo {
    height: 450px; 
    width: auto;
    object-fit: contain;
    pointer-events: auto;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 20px rgba(204, 51, 0, 0.7));
}

.navbar .main-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(1.2) drop-shadow(0 0 35px #cc3300);
}

.navbar .nav-links {
    display: flex;
    align-items: center;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 45px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    transition: 0.3s;
    letter-spacing: 1px;
    position: relative;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background: #cc3300;
    transition: 0.3s;
}

.navbar .nav-links a:hover { color: #cc3300; }
.navbar .nav-links a:hover::after { width: 100%; }

/* ---------------------------
    HERO SECTION
--------------------------- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px; 
}

.hero video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    filter: brightness(0.3);
    z-index: -1;
}

.hero-content { text-align: center; z-index: 10; width: 90%; }
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(0,0,0,1);
    color: #fff;
}

.btn {
    display: inline-block;
    background: #cc3300;
    color: #fff;
    padding: 20px 50px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.4s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff4000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(204, 51, 0, 0.5);
}

/* ---------------------------
    BRAND CAROUSEL
--------------------------- */
.brand-carousel { margin: 0 -15px; }
.slick-slide { margin: 0 15px; }
.brand-card {
    background: #111;
    padding: 50px 25px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.4s;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
    justify-content: center;
}
.brand-card:hover { border-color: #cc3300; background: #161616; transform: translateY(-5px); }
.brand-card img {
    height: 120px; width: auto; max-width: 85%;
    object-fit: contain; margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}
.brand-card:hover img { filter: brightness(0) invert(1) drop-shadow(0 0 8px #cc3300); }
.brand-card h3 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 15px; }
.brand-card p { font-size: 0.95rem; color: #888; }

/* ---------------------------
    WHATSAPP FLOAT (FIXED)
--------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: 0.4s;
}

.whatsapp-float img { width: 40px; height: 40px; filter: brightness(0) invert(1); }

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------------------------
    PRODUCTS GRID
--------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}
.card { background: #161616; border: 1px solid #222; transition: 0.4s; overflow: hidden; text-align: center; }
.card:hover { border-color: #cc3300; box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.card img { width: 100%; height: 380px; object-fit: cover; transition: 0.6s; }
.card:hover img { transform: scale(1.08); }
.card h3 { padding: 30px 20px 10px; font-size: 1.4rem; color: #fff; text-transform: uppercase; }
.card .price { color: #cc3300; font-weight: 900; font-size: 1.6rem; padding: 0 20px 30px; }

/* ---------------------------
    CONTACT & MAP
--------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: #0f0f0f;
    padding: 60px;
    border-top: 5px solid #cc3300;
}
.contact-map iframe {
    width: 100%; height: 100%; min-height: 400px;
    border: 2px solid #222;
    filter: grayscale(1) invert(1) contrast(1.2);
}

/* ---------------------------
    RESPONSIVE (FINAL FIX)
--------------------------- */
@media(max-width: 1100px) { .navbar .main-logo { height: 300px; } }

@media(max-width: 900px) {
    .navbar { height: 110px; padding: 0 25px; }
    .navbar .logo-container { height: 110px; }
    .navbar .main-logo { height: 220px; }
    .hero { padding-top: 110px; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 40px 20px; }
}

@media(max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; width: 60px; height: 60px; }
    
    .burger { 
        display: flex; 
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        z-index: 1005; 
    }
    .burger div {
        width: 100%;
        height: 3px;
        background-color: #cc3300;
    }

    /* მენიუს საწყისი მდგომარეობა */
    .navbar .nav-links {
        display: none; 
        position: absolute;
        top: 110px; 
        left: 0; 
        width: 100%;
        background: rgba(0,0,0,0.98); 
        padding: 40px 0;
        border-bottom: 3px solid #cc3300;
        flex-direction: column;
        align-items: center;
    }

    /* გააქტიურებული მენიუ */
    .navbar .nav-links.active { 
        display: flex !important; 
    }

    .navbar .nav-links a {
        margin: 15px 0;
        margin-left: 0;
        font-size: 1.2rem;
    }

    .navbar .main-logo { height: 180px; }
}