*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}
/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.header-container {
  width: 100%;
  padding: 12px 24px;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
  text-shadow: none;
}

.header.scrolled .nav-link {
  color: #333;
  text-shadow: none;
}

.nav-link:hover {
  color: rgb(217, 143, 32);
}

.contact-btn {
  background: rgb(217, 143, 32);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.contact-btn:hover {
  background: #e77454;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}


/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  margin-left: auto;
  cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: none;
  padding-top: 120px;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.mobile-contact {
  background: rgb(217, 143, 32);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* Mobile Only */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* Prevent background scroll */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ================= FOOTER ================= */

.footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  padding: 3rem 1.5rem;
}

/* Footer Container */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Logo */
.footer-logo {
  height: 70px;
  margin-bottom: 10px;
}

/* Text */
.footer-tagline {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Headings */
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #111827;
}

/* Links */
.footer-links,
.footer-contact,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #29371f;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: rgb(217, 143, 32);
}

/* Social Media Section */
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social li {
  margin: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(7, 216, 59, 0.1);
  border-radius: 50%;
  color: rgb(217, 143, 32);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background-color:#e77454;
  color: white;
  transform: translateY(-3px);
}

.icon {
  font-size: 1rem;
  color: rgb(217, 143, 32);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
