/* ============================
   GLOBAL RESET & BASE STYLES
============================ */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #000000, #1a1a1a, #d4af37);
  color: #fff;
}

/* ============================
   GLOBAL LINK STYLES
============================ */
a {
  color: #d4af37;
  text-decoration: none;
  transition: color 150ms ease, text-decoration 150ms ease;
  cursor: pointer;
}
a:visited { color: #b8962e; }
a:hover, a:focus { color: #fff; text-decoration: underline; outline: none; }
footer a { color: #d4af37; }
footer a:hover { color: #fff; }

/* ============================
   BANNER / HEADER
============================ */
.banner {
  background: linear-gradient(90deg, #0a0a0a 0%, rgba(26,26,26,0.98) 55%, rgba(212,175,55,0.06) 100%);
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6), 0 2px 8px rgba(212,175,55,0.06) inset;
  border-bottom: 1px solid rgba(212,175,55,0.14);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2500;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.banner-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { max-height: 88px; width: auto; margin-right: 12px; flex: 0 0 auto; }
.banner h1 {
  font-size: 28px;
  color: #d4af37;
  margin: 0;
  letter-spacing: 0.4px;
  text-align: left;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(212,175,55,0.12);
  flex: 1 1 auto;
}
.banner .banner-sub { display: none; color: rgba(212,175,55,0.9); font-size: 13px; margin-left: 12px; }

/* ============================
   NAVIGATION
============================ */
nav {
  background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.85));
  border-top: 1px solid rgba(212,175,55,0.06);
  border-bottom: 2px solid rgba(212,175,55,0.08);
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 3000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.desktop-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
}
.desktop-nav li a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 15px;
  color: #d4af37;
  font-weight: 600;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease, transform 120ms ease;
  white-space: nowrap;
}
.desktop-nav li a:hover, .desktop-nav li a:focus {
  background: rgba(212,175,55,0.12);
  color: #fff;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  font-size: 28px;
  color: #d4af37;
  padding: 8px 12px;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 99999;
}

/* Ensure no list markers appear for navigation lists */
nav ul, nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide mobile slide-out by default on desktop; enabled in the mobile media query */
#nav-menu { display: none; }

/* Desktop dropdown (positioned and hidden by default) */
.desktop-nav li { position: relative; }
.desktop-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(0,0,0,0.95);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 8px 0;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  z-index: 4000;
}
.desktop-nav .dropdown li a {
  display: block;
  padding: 8px 14px;
  color: #d4af37;
  white-space: nowrap;
}
.desktop-nav li.open > .dropdown { display: block; }

/* Ensure dropdown lists have no markers and no extra spacing */
.desktop-nav .dropdown, #nav-menu .dropdown { list-style: none; margin: 0; padding: 0; }

/* Mobile: allow services accordion to reveal its dropdown */
.services-mobile .dropdown { display: none; }
.services-mobile.open .dropdown { display: block; }

/* PAGE OFFSET */
.page-offset { margin-top: 180px; }

/* ============================
   HERO / HOME INTRO
   ============================ */
.home-hero {
  max-width: 1100px;
  margin: 28px auto;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.06);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.hero-tagline {
  color: rgba(212,175,55,0.95);
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-divider {
  width: 84px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #d4af37, #b8962e);
  box-shadow: 0 6px 16px rgba(212,175,55,0.12);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .home-hero { padding: 40px 20px; }
  .home-hero h1 { font-size: 30px; }
  .hero-tagline { font-size: 16px; }
}

@media (max-width: 480px) {
  .home-hero { padding: 28px 14px; margin: 18px 8px; }
  .home-hero h1 { font-size: 22px; }
  .hero-divider { width: 54px; height: 4px; }
}

/* ============================
   CONTAINER
============================ */
.container {
  padding: 40px;
  max-width: 1000px;
  margin: 30px auto;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

/* ============================
   HEADINGS
============================ */
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(212,175,55,0.5);
}

/* ============================
   ACCORDION & SERVICES
============================ */
.accordion { margin-bottom: 25px; border: 1px solid #d4af37; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.05); }
.accordion-header {
  padding: 15px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #d4af37;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header::after { content: "▼"; font-size: 18px; transition: transform 0.3s ease; }
.accordion.open .accordion-header::after { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion.open .accordion-content { padding: 20px 0; max-height: 3000px; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.service-box { background: rgba(255,255,255,0.05); border: 1px solid #d4af37; border-radius: 10px; padding: 20px; }
.service-content { display: flex; gap: 15px; }
.service-img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(212,175,55,0.4); }

/* ============================
   BUTTONS
============================ */
.book-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: linear-gradient(145deg, #d4af37, #b8962e, #e6c766);
  color: #000 !important;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid #e6c766;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.6), 0 0 10px rgba(212,175,55,0.6);
  text-decoration: none !important;
  transition: transform 150ms, box-shadow 150ms;
}
.book-btn:hover { transform: scale(1.05); }

/* ============================
   CALL NOW BUTTON (Contact page)
   ============================ */
.call-btn {
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(135deg, #d4af37 0%, #e6c766 100%);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35), inset 0 1px 3px rgba(255,255,255,0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.call-btn:hover, .call-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
  outline: none;
}

/* Left-aligned variant, places the button under the phone number */
.call-btn--under { display: inline-block; margin: 8px 0 0 0; }

@media (max-width: 480px) {
  .call-btn { padding: 8px 12px; border-radius: 6px; }
}

/* ============================
   FOOTER
============================ */
footer { background: #000; color: #d4af37; text-align: center; padding: 20px; margin-top: 40px; }

/* ============================
   CONTACT SOCIAL LINKS
============================ */
.contact-section .social-links { display: block; }
.contact-section .social-links .social-card {
  display: block;
  padding: 12px 14px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 8px;
  color: #d4af37;
  text-decoration: none;
  margin-bottom: 10px;
}
.contact-section .social-links .social-card span { display: block; font-weight: 600; }
.contact-section .social-links .social-card small { display: block; color: rgba(212,175,55,0.85); font-size: 13px; margin-top: 4px; }

/* ============================
   CONTACT MAP
============================ */
.contact-map {
  width: 100%;
  height: 420px;
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.12);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================
   RESPONSIVE RULES
============================ */
/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .contact-map { height: 380px; }
}

/* Medium screens */
@media (max-width: 900px) {
  .banner h1 { font-size: 22px; }
  .logo { max-height: 68px; }
  .banner .banner-sub { display: none; }
  nav { top: 120px; height: 56px; }
  .desktop-nav { gap: 0.6rem; }
  .desktop-nav li a { padding: 10px 12px; font-size: 14px; }
  .hamburger { display: block; top: 14px; right: 12px; }
}

/* Mobile */
@media (max-width: 768px) {
  .logo { position: relative; left: 0; top: 0; transform: none; margin: 0 auto 10px auto; max-height: 90px; }
  .banner { height: auto; padding: 20px 10px 30px 10px; }
  .banner h1 { font-size: 26px; }
  .desktop-nav { display: none; }
  .hamburger { display: block; }
  #nav-menu {
    display: block;
    position: fixed;
    top: 60px;
    right: -240px;
    width: 240px;
    background: #000;
    border-left: 2px solid #d4af37;
    box-shadow: -4px 0 12px rgba(212,175,55,0.5);
    transition: right 0.3s ease-in-out;
    z-index: 5000;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #nav-menu.open { right: 0; }
  #nav-menu li a { display: block; padding: 14px 20px; color: #d4af37; border-bottom: 1px solid rgba(212,175,55,0.3); }

  /* Remove the dark nav band on mobile while keeping desktop intact */
  nav {
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* Services grid -> single column */
  .services-grid { grid-template-columns: 1fr; }
  .service-content { flex-direction: column; text-align: center; }
  .service-img { margin: 0 auto; }

  .contact-map { height: 300px; }
}

/* Small phones */
@media (max-width: 480px) {
  .banner-inner { padding: 0 8px; }
  .banner h1 { font-size: 18px; }
  .logo { max-height: 56px; }
  .page-offset { margin-top: 170px; }
  .desktop-nav { display: none; }
}

/* Sticky accordion header when its accordion has the "open" class */
:root { --sticky-top: 0px; }

.accordion {
  /* ensure sticky works and headers overlay content cleanly */
  overflow: visible;
}

.accordion .accordion-header {
  position: relative; /* default */
  /* restore original dark translucent header color instead of white */
  background: rgba(0,0,0,0.6);
  color: #d4af37;
  z-index: 1;
  transition: box-shadow .12s ease;
}

/* sticky state keeps same dark translucent background and gold border/text */
.accordion.open .accordion-header {
  position: sticky;
  top: var(--sticky-top);
  z-index: 60;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  width: 100%;
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(212,175,55,0.14);
}

/* small tweak so header doesn't overlap content visually */
.accordion.open .accordion-header + .accordion-content {
  margin-top: 0; /* leave content placement as-is — adjust if needed */
}