/* ============================================
   BALI GRAND OUTLET — Master Stylesheet
   Luxury Outlet Mall Website | baligrandoutlet.com
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-gold: #C9A96E;
  --color-gold-light: #E8D5A8;
  --color-gold-dark: #A68B4B;
  --color-navy: #1A1F3D;
  --color-navy-light: #2A3050;
  --color-charcoal: #2C2C2C;
  --color-white: #FFFFFF;
  --color-off-white: #F9F7F2;
  --color-cream: #F5F0E8;
  --color-gray: #6B7280;
  --color-gray-light: #E5E7EB;
  --color-green-wa: #25D366;
  --color-sunset: #E8734A;
  --color-ocean: #0EA5E9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-navy); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-cream { background: var(--color-cream); }
.section-navy { background: var(--color-navy); color: var(--color-white); }
.section-navy h2, .section-navy h3 { color: var(--color-gold-light); }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; gap: 1rem; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }

/* --- Top Bar --- */
.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.top-bar a { color: var(--color-gold-light); }
.top-bar span { margin: 0 1rem; opacity: 0.4; }

/* --- Header / Navigation --- */
.header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-gray-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo .gold { color: var(--color-gold); }
.nav { display: flex; align-items: center; gap: 0; }
.nav a, .nav-dropdown > span {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}
.nav a:hover, .nav-dropdown:hover > span { color: var(--color-gold); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 100;
  border: 1px solid var(--color-gray-light);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #f3f3f3;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--color-cream); color: var(--color-gold-dark); }
.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-xl);
  padding: 0.6rem 1.4rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--color-gold-dark) !important; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--color-navy); background: none; border: none; }

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0f1225 100%);
  color: var(--color-white);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C9A96E" stroke-width="0.3" opacity="0.15"/></svg>') repeat;
  background-size: 200px;
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--color-white); font-size: clamp(2.2rem, 5.5vw, 3.5rem); margin-bottom: 0.5rem; }
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-style: italic;
}
.hero .location {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #141833 100%);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--color-gold-light); }
.page-hero .lead { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-gold { background: var(--color-gold); color: var(--color-white); }
.btn-gold:hover { background: var(--color-gold-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 2px solid var(--color-gold-light); color: var(--color-gold-light); }
.btn-outline:hover { background: var(--color-gold); color: var(--color-white); border-color: var(--color-gold); }
.btn-navy { background: var(--color-navy); color: var(--color-white); }
.btn-navy:hover { background: var(--color-navy-light); color: var(--color-white); }
.btn-wa { background: var(--color-green-wa); color: var(--color-white); }
.btn-wa:hover { background: #1fb855; color: var(--color-white); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-gray-light);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; background: var(--color-cream); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.92rem; color: var(--color-gray); margin-bottom: 1rem; }
.card-tag {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-gold-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Card */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-gray-light);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-md); }
.service-card .icon {
  width: 60px; height: 60px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--color-gray); }

/* --- Fact Table --- */
.fact-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}
.fact-table th, .fact-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.92rem;
}
.fact-table thead { background: var(--color-navy); color: var(--color-white); }
.fact-table thead th { font-weight: 600; color: var(--color-gold-light); }
.fact-table tbody tr { border-bottom: 1px solid var(--color-gray-light); }
.fact-table tbody tr:nth-child(even) { background: var(--color-off-white); }
.fact-table tbody tr:hover { background: var(--color-cream); }
.fact-table .label { font-weight: 600; color: var(--color-navy); min-width: 180px; }

/* --- Pricing Table --- */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--color-gray-light);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-gold);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card h3 { margin-bottom: 0.3rem; }
.pricing-card .price { font-size: 2rem; color: var(--color-gold-dark); font-weight: 700; margin: 1rem 0; font-family: var(--font-heading); }
.pricing-card .price small { font-size: 0.9rem; color: var(--color-gray); }
.pricing-card ul { text-align: left; margin: 1.5rem 0; }
.pricing-card ul li { padding: 0.4rem 0; font-size: 0.9rem; padding-left: 1.5rem; position: relative; }
.pricing-card ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-gold); font-weight: bold; }

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  transition: var(--transition);
  font-size: 0.95rem;
}
.faq-question:hover { background: var(--color-off-white); }
.faq-question .arrow { transition: transform 0.3s; font-size: 1.2rem; color: var(--color-gold); }
.faq-item.active .faq-question { background: var(--color-cream); }
.faq-item.active .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  color: var(--color-gray);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.2rem; }

/* --- Countdown --- */
.countdown { display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0; }
.countdown-item { text-align: center; }
.countdown-item .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.countdown-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

/* --- Comparison Table --- */
.comparison-table { overflow-x: auto; }
.comparison-table table { min-width: 600px; }
.comparison-table th { background: var(--color-navy); color: var(--color-gold-light); padding: 1rem; font-size: 0.9rem; }
.comparison-table td { padding: 0.8rem 1rem; font-size: 0.88rem; border-bottom: 1px solid var(--color-gray-light); }
.comparison-table tr:nth-child(even) { background: var(--color-off-white); }
.check { color: var(--color-gold); font-weight: bold; }

/* --- Testimonial --- */
.testimonial {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--color-gold);
  margin: 2rem 0;
}
.testimonial blockquote { font-style: italic; font-size: 1.05rem; margin-bottom: 0.8rem; }
.testimonial .author { font-weight: 600; font-size: 0.9rem; color: var(--color-navy); }

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--color-green-wa);
  color: var(--color-white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); background: #1fb855; color: white; }

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer h4 { color: var(--color-gold-light); font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer a { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: block; padding: 0.3rem 0; }
.footer a:hover { color: var(--color-gold-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Blog/Content --- */
.content-body { max-width: 800px; margin: 0 auto; }
.content-body h2 { margin-top: 2.5rem; }
.content-body h3 { margin-top: 1.8rem; }
.content-body ul, .content-body ol { margin: 1rem 0; padding-left: 1.5rem; }
.content-body li { margin-bottom: 0.5rem; list-style: disc; }
.content-body ol li { list-style: decimal; }

/* --- Sidebar (for blog) --- */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.sidebar-widget { background: var(--color-cream); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 0.8rem; }

/* --- Responsive --- */
/* --- Responsive: Tablet (1024px) --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* --- Responsive: Mobile (768px) --- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Mobile Navigation */
.nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); flex-direction: column;
  padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg);
  z-index: 999; overflow-y: auto;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.nav.active { display: flex; }
.nav a, .nav-dropdown > span {
  padding: 1rem 1.25rem; width: 100%; font-size: 1.1rem;
  border-bottom: 1px solid var(--color-gray-light);
  text-align: left !important;
  color: var(--color-navy) !important;
  text-decoration: none;
  display: block;
}
.nav a:hover, .nav-dropdown > span:hover { color: var(--color-gold) !important; }
.nav a.active, .nav .current { color: var(--color-navy) !important; font-weight: 600; }
.nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; display: none; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-cta { width: 100%; padding: 1rem 1.25rem; margin-top: 1rem; text-align: center !important; display: block; }
.hamburger { display: block; z-index: 1001; }

  /* Header */
  .header .container { padding: 0.5rem 1rem; }
  .header .logo { font-size: 1.1rem; }
  .header .logo-icon { width: 30px; height: 30px; }
  .top-bar { font-size: 0.7rem; padding: 0.4rem 0.5rem; }
  .top-bar span { margin: 0 0.3rem; }

  /* Hero */
  .hero { padding: 3rem 0 2.5rem; min-height: auto; }
  .hero h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero p, .hero .subtitle { font-size: 0.95rem; }

  /* Countdown */
  .countdown { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
  .countdown-item { min-width: 65px; padding: 0.75rem 0.5rem; }
  .countdown .num { font-size: 1.6rem; }
  .countdown .label { font-size: 0.65rem; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-sm { padding: 2rem 0; }
  .container { padding: 0 1rem; }

  /* Cards */
  .card, .service-card, .pricing-card, .blog-card { padding: 1.25rem; }
  .pricing-card.featured { transform: none; }

  /* Tables */
  .fact-table, .pricing-table, table {
    font-size: 0.8rem; display: block; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fact-table td, .fact-table th { padding: 0.6rem 0.75rem; }
  .comparison-table { margin: 0 -1rem; padding: 0 1rem; overflow-x: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding: 2rem 0 1rem; }

  /* FAQ */
  .faq-question { padding: 1rem; font-size: 0.95rem; }
  .faq-answer { padding: 0 1rem 1rem; font-size: 0.9rem; }

  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; width: 100%; text-align: center; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; }

  /* Service/Pricing grids */
  .fleet-grid, .route-grid, .package-grid { grid-template-columns: 1fr; }

  /* Images */
  .service-icon, .feature-icon { width: 48px; height: 48px; }

  /* SEO keyword sections */
  .seo-keywords { padding: 2rem 1rem !important; }

  /* WhatsApp float */
  .wa-float, .whatsapp-float {
    bottom: 20px; right: 15px; width: 50px; height: 50px; font-size: 1.5rem;
  }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  .hero-section, .section, section { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }

  /* Fix long text overflow */
  h1, h2, h3, h4, p, a, span, td, th {
    word-wrap: break-word; overflow-wrap: break-word;
  }
}

/* --- Responsive: Small Mobile (480px) --- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.5rem; }
  .hero p, .hero .subtitle { font-size: 0.85rem; }
  .countdown-item { min-width: 58px; }
  .countdown .num { font-size: 1.3rem; }
  .container { padding: 0 0.75rem; }
  .section { padding: 2rem 0; }
  .card, .service-card { padding: 1rem; }
  .top-bar { font-size: 0.65rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .fact-table td, .fact-table th { padding: 0.5rem; font-size: 0.75rem; }
  .btn { padding: 0.7rem 1.25rem; font-size: 0.85rem; }
  .wa-float, .whatsapp-float { bottom: 15px; right: 10px; width: 45px; height: 45px; font-size: 1.3rem; }
}

/* --- Responsive: Very Small (360px) --- */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.3rem; }
  .countdown { gap: 0.5rem; }
  .countdown-item { min-width: 50px; padding: 0.5rem 0.25rem; }
  .
  .countdown .num { font-size: 1.1rem; }
}

/* ===== MOBILE NAV ALIGNMENT FIX (2026-03-20) ===== */
@media (max-width: 768px) {
  /* Ensure ALL nav items are left-aligned consistently */
  .nav a,
  .nav .nav-dropdown > span,
  .nav .nav-link,
  .nav .nav-cta {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    font-size: 1.1rem !important;
    color: var(--color-navy) !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--color-gray-light) !important;
    box-sizing: border-box !important;
  }

  /* Dropdown arrow indicator */
  .nav .nav-dropdown > span::after {
    content: ' \25BC';
    font-size: 0.7rem;
    float: right;
    transition: transform 0.3s ease;
  }
  .nav .nav-dropdown.open > span::after {
    transform: rotate(180deg);
  }

  /* Dropdown sub-items indented */
  .nav .nav-dropdown-menu a {
    padding-left: 2.5rem !important;
    font-size: 1rem !important;
    background: var(--color-cream, #f9f6f1) !important;
  }
  .nav .nav-dropdown-menu a:hover {
    background: var(--color-gold-dark, #b8943f) !important;
    color: white !important;
  }

  /* CTA button styling in mobile menu */
  .nav .nav-cta {
    background: var(--color-gold) !important;
    color: white !important;
    text-align: center !important;
    border-radius: 8px !important;
    margin: 1rem !important;
    width: calc(100% - 2rem) !important;
    border-bottom: none !important;
    font-weight: 600 !important;
  }

  /* Hamburger positioned in header */
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
