/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: 'Poppins', serif;

}

/* ===== BRAND SHADES ===== */
:root {
  --primary: #1a2b4c;        /* main */
  --primary-light: #2f436f;  /* lighter */
  --primary-soft: #6b7a90;   /* muted */
  --primary-pale: #aab4c5;   /* very light */
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #1a2b4c;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%; /* important */
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 75px;
}

/* ================= DESKTOP NAV ================= */

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a
 {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
.dropdown > a
{
 display: inline-flex;
 align-items: center;
 height:auto;
 font-size: 14px;
 color: #fff;
 text-decoration: none;
}

.nav a:hover,
.dropdown > a:hover {
  color: #cdb461;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a2b4c;
  min-width: 220px;
  border: 1px solid #eee;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 15px;
  color: #fff;
}

.contact-btn {
    background: #fff;
    color: #1a2b4c;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    border-radius:15px;
    font-weight:500;
}

/* ================= MOBILE ================= */

.mobile-nav {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* ================= MOBILE DESIGN ================= */

@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .contact-btn {
    display: none;
  }

  /* MOBILE PANEL */
  .mobile-nav {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;

    background: #1a2b4c;
    padding: 60px 25px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .mobile-nav.active {
    right: 0;
  }

  /* CLOSE BUTTON */
  .mobile-top {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .mobile-close {
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

  /* LINKS */
  .mobile-nav a,
  .mobile-head {
    color: #fff;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* DROPDOWN */
  .mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  /* 🔥 HOVER + TAP SUPPORT */
  .mobile-dropdown:hover .mobile-sub,
  .mobile-dropdown:focus-within .mobile-sub {
    max-height: 300px;
  }

  .mobile-sub a {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    border: none;
  }

  /* ARROW */
  .arrow {
    transition: 0.3s;
  }

  .mobile-dropdown:hover .arrow,
  .mobile-dropdown:focus-within .arrow {
    transform: rotate(90deg);
  }

}

/* LOCK SCROLL */
body.menu-open {
  overflow: hidden;
}

/* footer */
/* =========================
   FOOTER
========================= */
.footer {
  background: #1a2b4c;;
  color: #fff;
  padding: 80px 20px 30px;
}

/* GRID (4 COLUMNS) */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* =========================
   LEFT
========================= */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-logo img
{
    width:300px;
}

.footer-about {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.7;
  max-width: 320px;
}

/* =========================
   COLUMN TITLE
========================= */
.footer-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* =========================
   CONTACT
========================= */
.footer-address {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.7;
}

/* =========================
   SOCIAL ICONS
========================= */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid #2a2a2a;

  transition: 0.3s;
}

.socials a:hover {
  background: #7b1e2b;
  border-color: #7b1e2b;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* =========================
   QUICK LINKS
========================= */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #bdbdbd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* =========================
   MAP BOX (NEW)
========================= */
.map-box {
  border-radius: 14px;
  overflow: hidden;

  border: 1px solid #2a2a2a;

  height: 220px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.1);
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 200px;
  }
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-line svg {
  width: 18px;
  height: 18px;
  stroke: #cdb461;
  fill: none;
  stroke-width: 1.8;
}