/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* LANGUAGE TOGGLE */
.lang-toggle {
    position: fixed;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 1000;
}

.lang-toggle button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
}

.lang-toggle button:hover {
    background: #f0f0f0;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.logo {
    position: absolute;
    left: 40px;
    font-weight: bold;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}


/* MENU */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

nav a:hover {
    color: #0b3c5d;
}

/* HERO */
.hero {
    background: #0b3c5d;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    max-width: 900px;
    margin: auto;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* SLIDER */
.slider {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.slider img {
    position: absolute;
    width: 100%;
    height: 320px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider img.active {
    opacity: 1;
}

.brands {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}

.brands h2 {
  margin-bottom: 30px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

.brands-grid img {
  max-width: 140px;
  max-height: 70px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brands-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ABOUT SHORT */
.about-short {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    padding: 0 20px;
}

/* COUNTERS */
.counters {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    background: #f6f6f6;
}

.counter-box {
    text-align: center;
}

.counter {
    font-size: 42px;
    font-weight: bold;
    color: #0b3c5d;
}

.counter-box p {
    margin-top: 8px;
    font-size: 15px;
}

/* FOOTER */
footer {
    background: #0b3c5d;
    color: #ffffff;
    padding: 50px 20px 30px;
}

footer .footer-col {
    max-width: 1200px;
    margin-bottom: 30px;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* WHATSAPP */
#whatsappBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
}



#whatsappBtn:hover {
    background: #1ebe5b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        position: static;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .counters {
        flex-direction: column;
        gap: 30px;
    }
}
