body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* =========================
   Header / Navigation
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(19, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center; /* Centers everything horizontally */
  padding: 0 2rem;
  z-index: 1000;
  gap: 2rem; /* Adds space between logo, nav, and hamburger */
}

/* Wrap logo and hamburger in a container that takes full width */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo left, hamburger right */
  width: 100%;
  max-width: 1400px; /* Optional: keeps content from stretching too wide on large screens */
}

/* Logo stays left */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 48px;
  height: auto;
}

/* Navigation (centered on desktop, hidden on mobile) */
.nav-wrapper {
  display: flex;
  gap: 2rem;
  flex-grow: 1; /* Allows nav to take up remaining space and center */
  justify-content: center; /* Centers nav links on desktop */
}

.nav-wrapper a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 8px;
  transition: 
    transform 0.25s ease,
    background-color 0.25s ease;
}

.nav-wrapper a:hover {
  transform: scale(1.08);
  background-color: rgba(255, 188, 0, 0.15);
}

/* =========================
   Hamburger Menu Icon
========================= */

/* Hamburger Menu Icon */
.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f0f0f0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate to "X" when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   Footer
========================= */

footer {
  background: #1a1a1a;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin-top: auto; /* Pushes footer to bottom if content is short */
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo img {
  width: 60px;
  margin-bottom: 20px;
}

.company-info h3 {
  color: #FFBC00;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin: 0 0 15px;
}

.company-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #b0b0b0;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
}

.footer-links h4,
.footer-social h4 {
  color: #FFBC00;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFBC00;
}

/* Social Buttons Container */
.social-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

/* Individual button styles */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid rgba(255, 188, 0, 0.2);
  background: #333;
}

/* image centering */
.social-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Hover effect */
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 188, 0, 0.25);
  border-color: #FFBC00;
}

.facebook { background: linear-gradient(135deg, #3b5998, #4267b2); }
.instagram { background: linear-gradient(135deg, #e4405f, #f77737); }
.tiktok { background: linear-gradient(135deg, #222222, #202020); }
.email { background: linear-gradient(135deg, #EA4335, #bd3023); }
.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

.footer-bottom {
  background: rgba(19, 18, 18, 0.95);
  text-align: center;
  padding: 25px 5%;
  border-top: 1px solid rgba(255, 188, 0, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.social-btn img,
.social-btn svg {
  filter: brightness(0) invert(1);   /* Makes almost any color → white */
}

/* =========================
   Responsive Footer
========================= */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 5%;
  }
  
  .company-info p {
    font-size: 15px;
  }
  
  .social-buttons {
    justify-content: center;
    gap: 12px;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
  }
  
  .social-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 5%;
    gap: 30px;
  }
  
  .footer-brand .logo img {
    width: 48px;
  }
}

/* =========================
   Responsive – Tablets & Mobile
========================= */

    /* Desktop & Tablet (wide screens) */
@media (min-width: 901px) {

    /* ---------- Footer ---------- */

  .social-buttons {
    flex-wrap: nowrap;
    justify-content: flex-start; /* or center / space-between */
    gap: 18px;
  }
  
  .social-btn {
    width: 60px;
    height: 60px;
  }
  
  .social-btn img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {

  /* ---------- Header / Nav ---------- */

    header {
        justify-content: space-between; /* Overrides the center, so logo left + hamburger right */
        padding: 0 1rem;
        gap: 0; /* Remove extra gap */
    }

    .header-content {
        justify-content: space-between; /* Ensures logo left, hamburger right */
    }

    .logo img {
        width: 48px;
    }

    
/* ---------- Hamburger ---------- */
/* Show hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    /* Hide desktop nav, make it full-screen mobile menu */
    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(19, 18, 18, 0.98);
        backdrop-filter: blur(8px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 0;
        gap: 2.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease;
        overflow-y: auto;
    }
    
    .nav-wrapper a {
        font-size: 20px;
        padding: 12px 24px;
        width: 80%;
        text-align: center;
    }

    .nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* ---------- Footer ---------- */

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 25px auto 0;
  }
  
  .social-btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }
  
  .social-btn img {
    width: 26px;
    height: 26px;
  }

/* Center the entire brand section (logo + text) */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand .logo {
    margin-bottom: 15px; /* Space between logo and text */
  }

  .footer-brand .logo img {
    width: 70px; /* Slightly bigger on mobile for visibility */
  }

  .company-info {
    margin-top: 10px;
  }

  .company-info h3 {
    margin: 0 0 10px;
  }

  .company-info p,
  .contact-info p {
    font-size: 15px;
    line-height: 1.5;
  }

}

/* =========================
   Extra Small Phones
========================= */

@media (max-width: 480px) {

  /* Header */

  header {
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-wrapper a {
    font-size: 13px;
    padding: 8px 12px;
  }

      /* ---------- Footer ---------- */

  .social-buttons {
    gap: 12px;
  }
  
  .social-btn {
    width: 48px;
    height: 48px;
  }
  
  .social-btn img {
    width: 24px;
    height: 24px;
  }
}