#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
  padding: 12px 0;
}
#header.transparent { background: transparent; }
#header.scrolled {
  background: rgba(10, 9, 6, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,135,0.2);
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
}
.nav {
  max-width: 1260px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
    gap: 20px;
}


.nav-logo {
  margin-right: 30px; /* adjust as needed */
}

.nav-logo img { height: 58px; transition: 0.3s; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(250,246,238,0.78);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
}
.nav-links a:hover {
  color: #d4af87;
  text-shadow: 0 0 8px rgba(212,175,135,0.35);
}
.nav-cta {
  background: linear-gradient(135deg, #d4af87, #f0d9a8);
  color: #0a0906;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s;
  text-decoration: none;
  white-space: nowrap;
    margin-left: 8px; 
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,135,0.4);
}

/* ══════════════════════════════════════
   DROPDOWN
══════════════════════════════════════ */
.nav-links li { position: relative; }

.nav-links li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links li.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.4px solid rgba(212,175,135,0.55);
  border-bottom: 1.4px solid rgba(212,175,135,0.55);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(2px);
  border-color: #d4af87;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: rgba(8,7,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,135,0.18);
  border-radius: 12px;
  padding: 8px 0 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1), visibility 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 18px 50px rgba(0,0,0,0.65);
  z-index: 9999;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(8,7,5,0.97);
  border-left: 1px solid rgba(212,175,135,0.18);
  border-top: 1px solid rgba(212,175,135,0.18);
  border-radius: 2px 0 0 0;
}
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,135,0.3), transparent);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
  padding: 0 7px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown:hover .dropdown-menu li { opacity: 1; transform: translateY(0); }
.dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.03s; }
.dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.06s; }
.dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.09s; }
.dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.12s; }
.dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.15s; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(250,246,238,0.6);
  text-decoration: none;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.dropdown-menu li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(212,175,135,0.3);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.dropdown-menu li a:hover {
  color: #f0d9a8;
  background: rgba(212,175,135,0.08);
  padding-left: 16px;
}
.dropdown-menu li a:hover::before {
  background: #d4af87;
  transform: scale(1.5);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #faf6ee;
  transition: 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }


.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%; max-width: 320px;
  height: 100vh;
  background: rgba(8,7,5,0.98);
  backdrop-filter: blur(22px);
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 9998;
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  color: rgba(250,246,238,0.82);
  font-size: 15px;
  text-decoration: none;
  padding: 9px 4px;
  transition: 0.25s;
  border-bottom: 1px solid rgba(212,175,135,0.07);
  letter-spacing: 0.3px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #d4af87; padding-left: 8px; }
.mobile-group-label {
  color: #d4af87 !important;
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-top: 14px !important;
  padding-bottom: 4px !important;
  border-bottom: 1px solid rgba(212,175,135,0.15) !important;
  font-weight: 600 !important;
}
.mobile-sub {
  padding-left: 18px !important;
  font-size: 13px !important;
  color: rgba(250,246,238,0.55) !important;
}
.mobile-sub:hover { color: #d4af87 !important; }
.mobile-cta-btn {
  margin-top: 22px !important;
  background: linear-gradient(135deg,#d4af87,#f0d9a8) !important;
  color: #0a0906 !important;
  padding: 14px 24px !important;
  border-radius: 50px !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border-bottom: none !important;
}


@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; letter-spacing: 1.2px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dropdown-menu { display: none !important; }
}

@media (max-width: 600px){
  .nav-logo img{
    height: 48px;
  }
}



@media (max-width: 920px) {


  .nav {
    padding: 0 18px;
  }

  .nav-logo img {
    height: 48px;
  }

 
  .hamburger {
    display: flex;
    z-index: 10001;
  }


  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8,7,5,0.98);
    backdrop-filter: blur(18px);
    padding: 90px 22px 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: right 0.4s ease;
    z-index: 10000;
    overflow-y: auto;
  }


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


  .mobile-menu a {
    font-size: 15px;
    color: rgba(250,246,238,0.85);
    text-decoration: none;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(212,175,135,0.08);
    transition: 0.3s;
  }

  .mobile-menu a:hover {
    color: #d4af87;
    padding-left: 10px;
  }

  /* GROUP LABEL */
  .mobile-group-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af87;
    margin-top: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(212,175,135,0.2);
    font-weight: 600;
  }


  .mobile-sub {
    padding-left: 16px !important;
    font-size: 13px !important;
    color: rgba(250,246,238,0.6) !important;
  }


  .mobile-cta-btn {
    margin-top: 20px;
    background: linear-gradient(135deg,#d4af87,#f0d9a8);
    color: #0a0906 !important;
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: none;
  }


  body.menu-open {
    overflow: hidden;
  }

}


.nav-links li.dropdown {
  position: relative;
}


.nav-links li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links li.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(212, 175, 135, 0.6);
  border-bottom: 1.5px solid rgba(212, 175, 135, 0.6);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dropdown:hover > a::after,
.dropdown.open > a::after {
  transform: rotate(-135deg) translateY(-2px);
  border-color: #d4af87;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 520px;
  background: rgba(8, 7, 5, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212, 175, 135, 0.18);
  border-radius: 16px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,135,0.06) inset;
  z-index: 9999;
}


.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(8, 7, 5, 0.97);
  border-left: 1px solid rgba(212, 175, 135, 0.18);
  border-top: 1px solid rgba(212, 175, 135, 0.18);
  border-radius: 2px 0 0 0;
}


.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(212, 175, 135, 0.1);
}

.dropdown-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #d4af87;
  letter-spacing: 0.5px;
}

.dropdown-header-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(212, 175, 135, 0.5);
  background: rgba(212, 175, 135, 0.07);
  border: 1px solid rgba(212, 175, 135, 0.15);
  padding: 3px 9px;
  border-radius: 20px;
}


.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 12px;
  list-style: none;
  margin: 0;
}


.dropdown-grid li {
  list-style: none;
}

.dropdown-grid li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: rgba(250, 246, 238, 0.65);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}


.dropdown-grid li a:hover {
  color: #faf6ee;
  background: rgba(212, 175, 135, 0.09);
}


.dropdown-grid li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: #d4af87;
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-grid li a:hover::before {
  transform: scaleY(1);
}


.dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(212, 175, 135, 0.08);
  border: 1px solid rgba(212, 175, 135, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dropdown-grid li a:hover .dd-icon {
  background: rgba(212, 175, 135, 0.16);
  border-color: rgba(212, 175, 135, 0.3);
}


.dropdown-footer {
  padding: 12px 22px 16px;
  border-top: 1px solid rgba(212, 175, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-footer-text {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.35);
}

.dropdown-footer-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af87;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.dropdown-footer-link:hover {
  gap: 9px;
  color: #f0d9a8;
}


.dropdown-grid li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-grid li,
.dropdown.open .dropdown-grid li {
  opacity: 1;
  transform: translateY(0);
}


.dropdown-grid li:nth-child(1)  { transition-delay: 0.04s; }
.dropdown-grid li:nth-child(2)  { transition-delay: 0.06s; }
.dropdown-grid li:nth-child(3)  { transition-delay: 0.08s; }
.dropdown-grid li:nth-child(4)  { transition-delay: 0.10s; }
.dropdown-grid li:nth-child(5)  { transition-delay: 0.12s; }
.dropdown-grid li:nth-child(6)  { transition-delay: 0.14s; }
.dropdown-grid li:nth-child(7)  { transition-delay: 0.16s; }
.dropdown-grid li:nth-child(8)  { transition-delay: 0.18s; }
.dropdown-grid li:nth-child(9)  { transition-delay: 0.20s; }
.dropdown-grid li:nth-child(10) { transition-delay: 0.22s; }
.dropdown-grid li:nth-child(11) { transition-delay: 0.24s; }
.dropdown-grid li:nth-child(12) { transition-delay: 0.26s; }
.dropdown-grid li:nth-child(13) { transition-delay: 0.28s; }
.dropdown-grid li:nth-child(14) { transition-delay: 0.30s; }
.dropdown-grid li:nth-child(15) { transition-delay: 0.32s; }
.dropdown-grid li:nth-child(16) { transition-delay: 0.34s; }


.dropdown:not(:hover):not(.open) .dropdown-grid li {
  transition-delay: 0s !important;
}


@media (max-width: 920px) {
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(212,175,135,0.12);
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(20, 18, 12, 0.98);
    margin-top: 8px;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 1px;
  }

  .dropdown-grid li {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
}


   .form-wrap iframe {
  overflow: hidden;
}

/* Parent li must be position:relative */
.nav-links li.dropdown {
  position: relative;
}


.nav-links li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links li.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(212, 175, 135, 0.6);
  border-bottom: 1.5px solid rgba(212, 175, 135, 0.6);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dropdown:hover > a::after,
.dropdown.open > a::after {
  transform: rotate(-135deg) translateY(-2px);
  border-color: #d4af87;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 520px;
  background: rgba(8, 7, 5, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212, 175, 135, 0.18);
  border-radius: 16px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,135,0.06) inset;
  z-index: 9999;
}


.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(8, 7, 5, 0.97);
  border-left: 1px solid rgba(212, 175, 135, 0.18);
  border-top: 1px solid rgba(212, 175, 135, 0.18);
  border-radius: 2px 0 0 0;
}


.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}


.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(212, 175, 135, 0.1);
}

.dropdown-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #d4af87;
  letter-spacing: 0.5px;
}

.dropdown-header-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(212, 175, 135, 0.5);
  background: rgba(212, 175, 135, 0.07);
  border: 1px solid rgba(212, 175, 135, 0.15);
  padding: 3px 9px;
  border-radius: 20px;
}


.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 12px;
  list-style: none;
  margin: 0;
}


.dropdown-grid li {
  list-style: none;
}

.dropdown-grid li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: rgba(250, 246, 238, 0.65);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Hover state */
.dropdown-grid li a:hover {
  color: #faf6ee;
  background: rgba(212, 175, 135, 0.09);
}


.dropdown-grid li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: #d4af87;
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-grid li a:hover::before {
  transform: scaleY(1);
}


.dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(212, 175, 135, 0.08);
  border: 1px solid rgba(212, 175, 135, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dropdown-grid li a:hover .dd-icon {
  background: rgba(212, 175, 135, 0.16);
  border-color: rgba(212, 175, 135, 0.3);
}


.dropdown-footer {
  padding: 12px 22px 16px;
  border-top: 1px solid rgba(212, 175, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-footer-text {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.35);
}

.dropdown-footer-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af87;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.dropdown-footer-link:hover {
  gap: 9px;
  color: #f0d9a8;
}

/* ── Stagger animation on items ── */
.dropdown-grid li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-grid li,
.dropdown.open .dropdown-grid li {
  opacity: 1;
  transform: translateY(0);
}


.dropdown-grid li:nth-child(1)  { transition-delay: 0.04s; }
.dropdown-grid li:nth-child(2)  { transition-delay: 0.06s; }
.dropdown-grid li:nth-child(3)  { transition-delay: 0.08s; }
.dropdown-grid li:nth-child(4)  { transition-delay: 0.10s; }
.dropdown-grid li:nth-child(5)  { transition-delay: 0.12s; }
.dropdown-grid li:nth-child(6)  { transition-delay: 0.14s; }
.dropdown-grid li:nth-child(7)  { transition-delay: 0.16s; }
.dropdown-grid li:nth-child(8)  { transition-delay: 0.18s; }
.dropdown-grid li:nth-child(9)  { transition-delay: 0.20s; }
.dropdown-grid li:nth-child(10) { transition-delay: 0.22s; }
.dropdown-grid li:nth-child(11) { transition-delay: 0.24s; }
.dropdown-grid li:nth-child(12) { transition-delay: 0.26s; }
.dropdown-grid li:nth-child(13) { transition-delay: 0.28s; }
.dropdown-grid li:nth-child(14) { transition-delay: 0.30s; }
.dropdown-grid li:nth-child(15) { transition-delay: 0.32s; }
.dropdown-grid li:nth-child(16) { transition-delay: 0.34s; }


.dropdown:not(:hover):not(.open) .dropdown-grid li {
  transition-delay: 0s !important;
}


@media (max-width: 920px) {
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(212,175,135,0.12);
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(20, 18, 12, 0.98);
    margin-top: 8px;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 1px;
  }

  .dropdown-grid li {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
}


.footer {
  background: #0a0906;
  color: #faf6ee;
  padding: 80px 20px 40px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

/* Brand */
.footer-logo {
  height: 140px;
  margin-bottom: 5px;
margin-top: -19px;
}

.footer-brand p {
  color: rgba(250,246,238,0.75);
  line-height: 1.7;
  max-width: 320px;
}

/* Titles */
.footer-title {
  color: #d4af87;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Lists */
.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  line-height: 2.1;
}

.footer-list a {
  color: rgba(250,246,238,0.75);
  text-decoration: none;
  transition: 0.3s;
}

/* Newsletter */
.newsletter {
  margin-top: 35px;
}

.newsletter-box {
  display: flex;
  gap: 8px;
  max-width: 280px;
}

.newsletter-box input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(212,175,135,0.3);
  padding: 12px 16px;
  color: #faf6ee;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-box button {
  background: #d4af87;
  color: #0a0906;
  border: none;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(212,175,135,0.2);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: rgba(250,246,238,0.6);
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(250,246,238,0.6);
  text-decoration: none;
}

.social-icons-all {
  display: flex;
  gap: 18px;
}

.social-icons-all a {
  color: #d4af87;
  font-size: 24px;
  text-decoration: none;
}



@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-logo { height: 100px; }
  .newsletter-box { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-direction: column; gap: 8px; }
}




/* Popup Background */
.popup-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

/* Popup Box */
.popup-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}


.popup-heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    text-align: center;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

/* iframe */
.popup-content iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    max-width: 95%;
    padding: 15px;
    border-radius: 12px;
  }

  .popup-content iframe {
    height: 420px;
  }

  .close-btn {
    top: 6px;
    right: 12px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  .popup-content iframe {
    height: 380px;
  }
}


.voices-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.voices-list::-webkit-scrollbar {
  display: none;
}

.voice-entry {
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* desktop par 2 cards ek sath */
@media (min-width: 768px) {
  .voice-entry {
    min-width: calc(50% - 10px);
  }
}

/* dots */
.voices-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
}

.voice-dot.active {
  background: #000;
}



.action-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 25px auto;
}

.strip-btn {
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* 1st and 3rd same */
.btn-light {
  background: transparent;
  border: 1px solid #d8b98b;
  color: #d8b98b;
}

/* 2nd different */
.btn-dark {
  background: #e5c79a;
  color: #111;
}

.strip-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .action-strip {
    flex-direction: column;
    width: 90%;
    gap: 12px;
  }

  .strip-btn {
    width: 100%;
    text-align: center;
  }
}