/* =====================
   GLOBAL STYLES
===================== */
:root {
  --primary-red: #E14139;
  --burnt-orange: #D95427;
  --dark: #111;
  --gray: #666;
  --light: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Variable", sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   HEADER
===================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 45px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-cta:hover {
  background: var(--burnt-orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 2000;
}


/* =====================
   PREMIUM FOOTER
===================== */
.glass-footer {
  background: rgba(17, 17, 17, 0.85); /* semi-transparent dark glass */
  color: #eee;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  border-radius: 25px 25px 0 0;
}

.glass-footer h3,
.glass-footer h4 {
  color: var(--primary-red);
  margin-bottom: 15px;
}

.glass-footer p,
.glass-footer a {
  color: #ccc;
  font-size: 0.95rem;
  transition: 0.3s;
}

.glass-footer a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--primary-red);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.glass-footer .footer-brand p {
  line-height: 1.6;
}

/* ICONS */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p::before {
  color: var(--primary-red);
}

/* =====================
   RESPONSIVE HEADER
===================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* Desktop Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}

/* =====================
   MOBILE VIEW
===================== */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
    z-index: 2001;
  }

  .desktop-only {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
  }

  /* Mobile CTA inside drawer */
  .mobile-cta {
    display: block;
    margin-top: 20px;
  }

  .mobile-cta a {
    background: var(--primary-red);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    text-align: center;
  }
}