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

html {
    scroll-behavior: smooth;
}

body {
    background: #121416; 
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    top: 0 !important; 
    position: relative !important; 
}

/* ---------------------------
    GOOGLE TRANSLATE KILLER
--------------------------- */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt, 
.goog-te-balloon-frame, 
.goog-te-gadget span,
.goog-te-gadget-icon,
.skiptranslate[style*="visibility: visible"] { 
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
}

.goog-te-gadget { font-size: 0px !important; }
.goog-te-menu-value { display: none !important; }

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

/* ---------------------------
    REUSABLE COMPONENTS
--------------------------- */
.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 & LOGO
--------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 22, 24, 0.98);
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 0 60px;
    height: 90px !important; 
    z-index: 1000;
    border-bottom: 3px solid #cc3300;
}

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

.navbar .main-logo {
    height: 75px !important; 
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0) !important; 
    filter: drop-shadow(0 0 15px rgba(204, 51, 0, 0.3));
}

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

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

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 35px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    letter-spacing: 1px;
    position: relative;
    display: inline-block !important; 
    white-space: nowrap;
}

.nav-links a font {
    display: inline-block;
    padding: 0 3px;
}

.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%; }

/* ---------------------------
    BURGER MENU
--------------------------- */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    z-index: 1005;
}

.burger div {
    width: 100%;
    height: 3px;
    background-color: #cc3300;
    transition: 0.3s ease-in-out;
}

/* ---------------------------
    LANGUAGE SWITCHER
--------------------------- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 35px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    font-size: 0.75rem;
    padding: 5px;
    text-transform: uppercase;
}

.lang-btn:hover { color: #cc3300; }

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

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

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

.btn {
    display: inline-block;
    background: #cc3300;
    color: #fff;
    padding: 18px 45px;
    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 & CARDS
--------------------------- */
.brand-carousel { margin: 0 -15px; }
.slick-slide { margin: 0 15px; }
.brand-card {
    background: #1c1f22; 
    padding: 50px 25px;
    text-align: center;
    border: 1px solid #2d3135;
    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: #24282c; 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.brand-card img {
    height: 110px; width: auto; max-width: 85%;
    object-fit: contain; margin-bottom: 30px;
}
.brand-card h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.brand-card p { font-size: 0.9rem; color: #aaa; }

/* ---------------------------
    WHATSAPP FLOAT
--------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    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:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; height: 35px; filter: brightness(0) invert(1); }

/* ---------------------------
    PRODUCTS GRID
--------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card { 
    background: #1c1f22; 
    border: 1px solid #2d3135; 
    transition: 0.4s; 
    overflow: hidden; 
    text-align: center; 
    cursor: pointer; 
}
.card:hover { border-color: #cc3300; transform: translateY(-5px); }
.card img { width: 100%; height: 350px; object-fit: cover; transition: 0.6s; }
.card h3 { padding: 25px 20px 10px; font-size: 1.3rem; color: #fff; text-transform: uppercase; }
.card .price { color: #ff4000; font-weight: 900; font-size: 1.5rem; padding: 0 20px 25px; }

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

/* ---------------------------
    RESPONSIVE (930px FIX)
--------------------------- */
@media(max-width: 930px) {
    .navbar {
        padding: 0 30px;
    }

    .navbar, .navbar .logo-container { height: 80px !important; }
    
    .navbar .main-logo { height: 60px !important; }

    .burger {
        display: flex; /* ბურგერი გამოჩნდება 930px-ზე */
    }

    .navbar .nav-links {
        display: none; 
        position: absolute;
        top: 80px; 
        left: 0; 
        width: 100%;
        background: rgba(20, 22, 24, 0.98); 
        padding: 40px 0;
        border-bottom: 3px solid #cc3300;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

    .navbar .nav-links.active {
        display: flex !important;
    }

    .navbar .nav-links a {
        margin-left: 0;
        margin-bottom: 25px;
        font-size: 1.1rem;
    }

    .lang-switch {
        margin-left: 0;
        margin-top: 10px;
    }

    /* ბურგერის ანიმაცია X-ის ფორმისთვის */
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

@media(max-width: 600px) {
    .section-padding { padding: 60px 20px; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 30px; gap: 40px; }
}