/* =========================================
   RESET & BASE STYLES
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding-top: 160px;
  transition: padding-top 0.3s ease;
}

/* =========================================
   HEADER SECTION
========================================= */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #f6f8f7;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  transition: all 0.4s ease;
}

/* Logo */
.logo img {
  width: 250px;
  height: auto;
  display: block;
  transition: width 0.3s ease;
}

/* Contact Info */
.header-contact-info {
  display: flex;
  gap: 10px;
}

.item1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.item1 i {
  color: #0b1221;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.item1 .highlight {
  font-weight: 600;
  color: #0b1221;
}

/* Social Icons (Header) */
.social-icons1 {
  display: flex;
  gap: 15px;
}

.social-icon1 {
  color: #0b1221;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.social-icon1:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   NAVIGATION MENU
========================================= */
.main-nav {
  background-color: #0b1221;
  margin: 0 50px;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f7a323;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 220px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f7a323;
  color: #fff;
  padding-left: 30px;
}

/* Quote Button */
.quote-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #f7a323;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: #f7a323;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 163, 35, 0.4);
}

/* =========================================
   MOBILE MENU & LOGO
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #0B1221;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-logo {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 160px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 160px);
  background-color: #0b1221;
  transition: all 0.4s ease;
  z-index: 998;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

/* Mobile Links */
.mobile-nav-menu {
  list-style: none;
  margin-top: 20px;
}

.mobile-nav-item {
  margin-bottom: 15px;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  display: block;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f7a323;
}

/* Dropdown (Mobile) */
.mobile-dropdown-menu {
  padding-left: 25px;
  margin-top: 10px;
  display: none;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 15px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.mobile-dropdown-item:hover {
  color: #f7a323;
}

/* Mobile Contact */
.mobile-contact-info {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #fff;
}

.mobile-contact-item i {
  color: #f7a323;
  font-size: 1.2rem;
  width: 25px;
}

/* Mobile Social Icons */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mobile-social-icon:hover {
  color: #f7a323;
  transform: translateY(-3px);
}

/* =========================================
   CONTENT SECTION
========================================= */
.content-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.placeholder-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.placeholder-card:hover {
  transform: translateY(-5px);
}

.placeholder-card h3 {
  color: #0b1221;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* =========================================
   FOOTER SECTION
========================================= */
footer {
  background-color: #020202;
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer-container {
  max-width: 1200px;   /* 🔥 THIS IS THE KEY */
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ff7b00;
}

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-item1 i {
  color: #ff7b00;
  font-size: 18px;
  width: 24px;
}

/* Social Icons (Footer) */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #ff7b00;
  transform: translateY(-3px);
}

/* Useful Links */
.useful-links {
  list-style-type: none;
}

.useful-links li {
  margin-bottom: 12px;
}

.useful-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.useful-links a:hover {
  color: #ff7b00;
  transform: translateX(5px);
}

/* Map */
.map-container {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) invert(90%) contrast(85%);
}

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

/* =========================================
   FLOATING BUTTONS
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ff7b00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #ff9500;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
/* =========================================
   TABLET RESPONSIVE (≤ 992px)
========================================= */
@media (max-width: 992px) {

  /* Header spacing */
  .info-part {
    padding: 12px 30px;
  }

  .main-nav {
    margin: 0 20px;
  }

  .nav-menu {
    gap: 20px;
  }

  /* Footer layout */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-section:last-child {
    grid-column: span 2;
  }
}


/* =========================================
   MOBILE RESPONSIVE (≤ 768px)
========================================= */
@media (max-width: 768px) {

  body {
    padding-top: 120px;
  }

  /* ❌ Hide ONLY header elements (not footer) */
  .top-header .info-part,
  .top-header .header-contact-info,
  .top-header .social-icons1,
  .quote-btn {
    display: none;
  }

  /* Header style */
  .main-nav {
    margin: 0;
    border-radius: 0;
    background-color: #fff;
  }

  /* Desktop menu hide */
  .nav-menu {
    display: none;
  }

  /* Hamburger show */
  .hamburger {
    display: flex;
    order: -1;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
  }

  /* Mobile logo */
  .mobile-logo {
    display: block;
    margin-left: auto;
  }

  .mobile-logo img {
    width: 200px;
  }

  /* Nav container */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
  }

  /* Mobile menu */
  .mobile-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  /* ✅ Footer contact & social ALWAYS visible */
  footer .contact-info,
  footer .social-icons {
    display: flex;
  }
}


/* =========================================
   SMALL MOBILE (≤ 576px)
========================================= */
@media (max-width: 576px) {

  /* Footer single column */
  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-section:last-child {
    grid-column: span 1;
  }

  /* Map height */
  .map-container {
    height: 180px;
  }

  /* Footer contact spacing */
  footer .contact-item1 {
    align-items: flex-start;
  }
}


/* =========================================
   SCROLL EFFECT
========================================= */
.scrolled .info-part {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.scrolled .main-nav {
  margin: 0;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scrolled .logo {
  font-size: 1.2rem;
}
