/* ============================================================
   AUREUM CONSTRUCTIONS – COMPONENTS CSS
   Navbar, Footer, Cards, Hero, Packages, Testimonials, etc.
   ============================================================ */

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  animation: navReveal 0.8s ease forwards;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15,15,15,0.9);
  border-bottom-color: rgba(201,168,76,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  z-index: 1001;
  color: white;
  transition: color 0.4s ease;
}
.navbar.scrolled .navbar-logo {
  color: var(--c-navy);
}
.navbar-logo-name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.04em;
  transition: color var(--t-base);
}
.navbar-logo-name span { color: var(--c-gold); }
.navbar.scrolled .navbar-logo-name { color: var(--c-charcoal); }
.navbar-logo-tagline {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--t-base);
}
.navbar.scrolled .navbar-logo-tagline { color: var(--c-text-muted); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-base);
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--t-base);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--c-gold); }
.navbar.scrolled .nav-link { color: var(--c-text-muted); }
.navbar.scrolled .nav-link:hover { color: var(--c-gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--t-base);
  border: 1px solid rgba(201,168,76,0.12);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-text);
  transition: all var(--t-fast);
}
.nav-dropdown a:hover {
  color: var(--c-gold);
  background: var(--c-gold-bg);
  padding-left: var(--sp-6);
}
[data-theme="dark"] .nav-dropdown { background: var(--c-surface); }

.navbar-cta { display: flex; align-items: center; gap: var(--sp-3); }

/* Dark mode toggle */
.dark-toggle {
  width: 44px; height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  position: relative;
  cursor: none;
  transition: background var(--t-base);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.dark-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--c-white);
  border-radius: 50%;
  transition: transform var(--t-base);
}
[data-theme="dark"] .dark-toggle { background: var(--c-gold); border-color: var(--c-gold); }
[data-theme="dark"] .dark-toggle::after { transform: translateX(18px); }
.navbar.scrolled .dark-toggle { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.15); }
.navbar.scrolled .dark-toggle::after { background: var(--c-charcoal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.navbar.scrolled .hamburger span { background: var(--c-charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-navy);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  font-size: var(--fs-2xl);
  color: var(--c-white);
  font-family: var(--f-display);
}

@media (max-width: 960px) {
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--c-white);
  padding-bottom: 5rem;
  padding-top: 8rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out alternate infinite;
  transform-origin: center center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.6) 0%,
    rgba(13,27,42,0.15) 20%,
    transparent 40%,
    rgba(13,27,42,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--c-gold-light);
  padding: 0.375rem 1rem;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInDown 0.8s 0.3s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: var(--sp-6);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: inline-block;
  animation: slideInUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.65s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.8s; }
.hero-title .gold { color: var(--c-gold-light); font-style: italic; }

.hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeInUp 0.8s 1s ease forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s ease forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.4s ease forwards;
}
.hero-stat {
  text-align: center;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-4));
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.hero-stat-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: floating 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: var(--c-gold);
  border-radius: var(--r-full);
  animation: floating 1.5s ease-in-out infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--c-white);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--c-beige-dark);
  border-bottom: 1px solid var(--c-beige-dark);
}
[data-theme="dark"] .trust-bar {
  background: var(--c-surface);
  border-color: rgba(255,255,255,0.06);
}
.trust-bar-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-text-light);
  transition: color var(--t-base), opacity var(--t-base);
  opacity: 0.5;
  letter-spacing: 0.04em;
}
.trust-logo-item:hover { color: var(--c-gold); opacity: 1; }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--c-gold-bg);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  transition: all var(--t-base);
}
.service-card:hover .service-card-icon {
  background: var(--c-gold);
  color: var(--c-white);
  transform: scale(1.1) rotate(-5deg);
}
.service-card-body { padding: var(--sp-6); }
.service-card-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  transition: color var(--t-base);
}
.service-card:hover .service-card-title { color: var(--c-gold); }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-gold);
  margin-top: var(--sp-4);
  transition: gap var(--t-base);
}
.service-card-link:hover { gap: var(--sp-3); }
[data-theme="dark"] .service-card { background: var(--c-surface); }

/* ── PACKAGE CARD ── */
.package-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  background: var(--c-navy);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.package-card:not(.featured):hover {
  border-color: var(--c-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.package-badge {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 0.25rem 0.875rem;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.package-tier {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}
.package-name {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.package-card.featured .package-name { color: var(--c-white); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.package-price-main {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--c-charcoal);
  line-height: 1;
}
.package-card.featured .package-price-main { color: var(--c-gold-light); }
.package-price-unit {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.package-card.featured .package-price-unit { color: rgba(255,255,255,0.5); }
.package-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  margin: var(--sp-6) 0;
  opacity: 0.3;
}
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.package-card.featured .package-feature { color: rgba(255,255,255,0.75); }
.package-feature-check {
  width: 18px; height: 18px;
  background: var(--c-gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-feature-check svg {
  width: 10px; height: 10px;
  color: var(--c-gold);
}
[data-theme="dark"] .package-card:not(.featured) { background: var(--c-surface); }

/* ── PROCESS / TIMELINE ── */
.process-step {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  padding: var(--sp-8);
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.1);
  transition: all var(--t-base);
  position: relative;
}
.process-step:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.process-step-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.25;
  min-width: 50px;
  transition: opacity var(--t-base);
}
.process-step:hover .process-step-num { opacity: 0.6; }
.process-step-content h4 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
[data-theme="dark"] .process-step { background: var(--c-surface); }

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}
[data-theme="dark"] .testimonial-card { background: var(--c-surface); }
.testimonial-quote {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.testimonial-text {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--sp-6);
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-4); }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
}
.testimonial-name { font-weight: 700; font-size: var(--fs-base); }
.testimonial-role { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: 2px; }
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}

/* ── BLOG CARD ── */
.blog-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: var(--sp-6); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-text-light);
}
.blog-card-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--sp-3);
  transition: color var(--t-base);
}
.blog-card:hover .blog-card-title { color: var(--c-gold); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-gold);
  transition: gap var(--t-base);
}
.blog-read-more:hover { gap: var(--sp-3); }
[data-theme="dark"] .blog-card { background: var(--c-surface); }

/* ── FOOTER ── */
footer {
  background: var(--c-navy);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.footer-top { padding: clamp(4rem, 8vw, 7rem) 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--sp-12);
}
.footer-brand-desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  line-height: 1.75;
  margin: var(--sp-4) 0 var(--sp-6);
}
.footer-heading {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-link:hover { color: var(--c-gold); transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.footer-contact-text { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); }
.footer-contact-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }

.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer-social {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--t-base);
}
.footer-social:hover {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-6) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-link {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-bottom-link:hover { color: var(--c-gold); }

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

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--c-navy) 0%, #0a1520 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border: 1px solid var(--c-beige-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  background: var(--c-white);
}
.faq-item.open { border-color: var(--c-gold); box-shadow: var(--shadow-gold); }
[data-theme="dark"] .faq-item { background: var(--c-surface); border-color: rgba(255,255,255,0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: none;
  transition: background var(--t-fast);
}
.faq-question:hover { background: var(--c-ivory); }
[data-theme="dark"] .faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question-text {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--c-charcoal);
  flex: 1;
  padding-right: var(--sp-4);
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
  color: var(--c-gold);
}
.faq-item.open .faq-icon { background: var(--c-gold); color: var(--c-white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* ── CALCULATOR ── */
.calculator-widget {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-border);
}
[data-theme="dark"] .calculator-widget { background: var(--c-surface); }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--c-beige-dark);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-gold);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-fast);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-result-box {
  background: linear-gradient(135deg, var(--c-navy), #162436);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  color: var(--c-white);
  margin-top: var(--sp-6);
}
.calc-result-amount {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-gold-light);
  display: block;
  animation: goldGlow 3s ease-in-out infinite;
}

/* ── AWARD CARDS ── */
.award-card {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.12);
  transition: all var(--t-base);
}
.award-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--c-gold); }
.award-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
[data-theme="dark"] .award-card { background: var(--c-surface); }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--t-base);
}
#lightbox.open #lightbox-img { transform: scale(1); }
#lightbox-close {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: none;
  transition: background var(--t-base);
}
#lightbox-close:hover { background: var(--c-gold); }

/* ── WHY US CARD ── */
.why-card {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--c-gold), var(--c-gold-light));
  transition: height var(--t-slow);
  border-radius: 0 0 var(--r-sm) 0;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { height: 100%; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--c-gold-bg), var(--c-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--sp-5);
  transition: transform var(--t-spring);
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-6deg); }
.why-title { font-size: var(--fs-xl); font-weight: 700; margin-bottom: var(--sp-3); }
[data-theme="dark"] .why-card { background: var(--c-surface); }

/* ── TEAM CARD ── */
.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
  opacity: 0;
  transition: opacity var(--t-base);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-body { padding: var(--sp-5) var(--sp-6); }
.team-name { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: var(--fs-sm); color: var(--c-gold); font-weight: 500; }
[data-theme="dark"] .team-card { background: var(--c-surface); }

/* ── PROJECT FILTER ── */
.filter-tabs {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-beige);
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  cursor: none;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
[data-theme="dark"] .filter-tab { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }

/* ================================================================
   DARK MODE – RICH LUXURY ENHANCEMENTS
   Warm charcoal + gold atmosphere
   ================================================================ */

/* ── Body & global background ── */
[data-theme="dark"] body {
  background: #1A1815;
}

/* ── Navbar ── */
[data-theme="dark"] .navbar.scrolled {
  background: rgba(19,18,16,0.94);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(201,168,76,0.15);
  border-bottom-color: rgba(201,168,76,0.15);
}
[data-theme="dark"] .nav-link {
  color: rgba(237,232,223,0.8);
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: var(--c-gold-light);
}
[data-theme="dark"] .nav-dropdown {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
[data-theme="dark"] .nav-dropdown a {
  color: rgba(237,232,223,0.75);
  border-bottom-color: rgba(255,255,255,0.05);
}
[data-theme="dark"] .nav-dropdown a:hover {
  color: var(--c-gold-light);
  background: rgba(201,168,76,0.06);
}

/* ── Section backgrounds ── */
[data-theme="dark"] .about-section,
[data-theme="dark"] section[style*="background:var(--c-ivory)"],
[data-theme="dark"] section[style*="background: var(--c-ivory)"] {
  background: #1A1815 !important;
}
[data-theme="dark"] .services-section,
[data-theme="dark"] section[style*="background:var(--c-white)"],
[data-theme="dark"] section[style*="background: var(--c-white)"] {
  background: #131210 !important;
}
[data-theme="dark"] .packages-section,
[data-theme="dark"] section[style*="background:var(--c-beige)"],
[data-theme="dark"] section[style*="background: var(--c-beige)"] {
  background: #201E1A !important;
}
[data-theme="dark"] .testimonials-section {
  background: #1A1815;
}
[data-theme="dark"] .blog-section {
  background: #131210;
}
[data-theme="dark"] .faq-section {
  background: #201E1A;
}

/* ── Cards – warm surface glow ── */
[data-theme="dark"] .why-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
[data-theme="dark"] .why-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
}
[data-theme="dark"] .service-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
[data-theme="dark"] .service-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}
[data-theme="dark"] .package-card:not(.featured) {
  background: #1F1D1A;
  border-color: rgba(201,168,76,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
[data-theme="dark"] .package-card:not(.featured):hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 56px rgba(0,0,0,0.6);
}
[data-theme="dark"] .blog-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
[data-theme="dark"] .blog-card:hover {
  border-color: rgba(201,168,76,0.2);
}
[data-theme="dark"] .testimonial-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
[data-theme="dark"] .team-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.1);
}
[data-theme="dark"] .award-card {
  background: #1F1D1A;
  border-left: 3px solid var(--c-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
[data-theme="dark"] .value-card {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.1);
}

/* ── FAQ ── */
[data-theme="dark"] .faq-item {
  background: #1F1D1A;
  border-color: rgba(201,168,76,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
[data-theme="dark"] .faq-item.open {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(201,168,76,0.15);
}
[data-theme="dark"] .faq-question:hover {
  background: rgba(201,168,76,0.04);
}
[data-theme="dark"] .faq-answer-inner {
  color: rgba(237,232,223,0.7);
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* ── Calculator ── */
[data-theme="dark"] .calculator-widget {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
}

/* ── Forms ── */
[data-theme="dark"] .form-control {
  background: #272420;
  border-color: rgba(201,168,76,0.15);
  color: var(--c-text);
}
[data-theme="dark"] .form-control:focus {
  border-color: var(--c-gold);
  background: #2A2724;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
[data-theme="dark"] .form-control::placeholder {
  color: rgba(237,232,223,0.3);
}

/* ── Process steps ── */
[data-theme="dark"] .process-step {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.1);
}

/* ── Trust bar ── */
[data-theme="dark"] .trust-bar {
  background: #131210;
  border-color: rgba(201,168,76,0.1);
}

/* ── Mobile menu ── */
[data-theme="dark"] .mobile-menu {
  background: #131210;
  border-top: 2px solid var(--c-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
[data-theme="dark"] .mobile-menu .nav-link {
  border-bottom-color: rgba(255,255,255,0.06);
  color: rgba(237,232,223,0.75);
}

/* ── Hero section ── */
[data-theme="dark"] .hero::after {
  background: linear-gradient(
    to bottom,
    rgba(13,10,7,0.45) 0%,
    rgba(13,10,7,0.6) 60%,
    rgba(13,10,7,0.85) 100%
  );
}

/* ── Hero stats ── */
[data-theme="dark"] .hero-stat {
  border-right-color: rgba(201,168,76,0.15);
}

/* ── Scroll indicator ── */
[data-theme="dark"] .scroll-mouse {
  border-color: rgba(201,168,76,0.5);
}

/* ── Section labels ── */
[data-theme="dark"] .section-label {
  color: var(--c-gold);
}
[data-theme="dark"] .section-label::before {
  background: var(--c-gold);
}

/* ── Divider ── */
[data-theme="dark"] .divider {
  background: linear-gradient(90deg, var(--c-gold), rgba(201,168,76,0.2));
}

/* ── Masonry overlay ── */
[data-theme="dark"] .masonry-item:hover img {
  filter: brightness(0.8);
}

/* ── Badges ── */
[data-theme="dark"] .badge-gold {
  background: rgba(201,168,76,0.15);
  color: var(--c-gold-light);
  border: 1px solid rgba(201,168,76,0.25);
}

/* ── Lightbox ── */
[data-theme="dark"] #lightbox {
  background: rgba(10,8,6,0.96);
}

/* ── Before/After slider ── */
[data-theme="dark"] .slider-label {
  background: rgba(20,17,14,0.85);
  color: rgba(237,232,223,0.9);
}

/* ── Contact info card ── */
[data-theme="dark"] .contact-info-card {
  background: linear-gradient(145deg, #0D1520 0%, #0A1018 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(201,168,76,0.1);
}

/* ── Map container ── */
[data-theme="dark"] .map-container {
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* ── Footer enhanced ── */
[data-theme="dark"] .footer-top {
  background: #0D0B09;
  border-top: 1px solid rgba(201,168,76,0.1);
}
[data-theme="dark"] .footer-bottom {
  background: #080706;
  border-top-color: rgba(255,255,255,0.04);
}
[data-theme="dark"] .footer-link:hover {
  color: var(--c-gold-light);
}
[data-theme="dark"] .footer-social {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.15);
}
[data-theme="dark"] .footer-social:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #0D0B09;
}
[data-theme="dark"] .footer-contact-icon {
  background: rgba(201,168,76,0.1);
  color: var(--c-gold-light);
}

/* ── Floating buttons ── */
[data-theme="dark"] .floating-call {
  background: #1F1D1A;
  border: 1.5px solid rgba(201,168,76,0.25);
  color: var(--c-gold-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
[data-theme="dark"] .floating-call:hover {
  background: var(--c-gold);
  color: #131210;
  border-color: var(--c-gold);
}

/* ── Back to top ── */
[data-theme="dark"] .back-to-top {
  background: var(--c-gold);
  color: #131210;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}

/* ── Custom cursor ring in dark mode ── */
[data-theme="dark"] #cursor-ring {
  border-color: var(--c-gold-light);
}
[data-theme="dark"] #cursor-dot {
  background: var(--c-gold-light);
}

/* ── Blog featured card ── */
[data-theme="dark"] .blog-featured-card {
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}

/* ── Comparison table ── */
[data-theme="dark"] .comparison-table {
  background: #1F1D1A;
  border-color: rgba(201,168,76,0.1);
}
[data-theme="dark"] .comparison-table th {
  background: #131210;
  color: var(--c-gold-light);
  border-bottom-color: rgba(201,168,76,0.2);
}
[data-theme="dark"] .comparison-table tr:nth-child(even) {
  background: rgba(201,168,76,0.02);
}
[data-theme="dark"] .comparison-table tr:hover {
  background: rgba(201,168,76,0.04);
}
[data-theme="dark"] .comparison-table td,
[data-theme="dark"] .comparison-table th {
  border-color: rgba(255,255,255,0.05);
}
[data-theme="dark"] .featured-col {
  background: rgba(201,168,76,0.05) !important;
}

/* ── Why-card grid items on dark inline styles ── */
[data-theme="dark"] [style*="background:var(--c-white)"],
[data-theme="dark"] [style*="background: var(--c-white)"] {
  background: #1F1D1A !important;
}
[data-theme="dark"] [style*="background:var(--c-beige)"],
[data-theme="dark"] [style*="background: var(--c-beige)"] {
  background: #272420 !important;
}
[data-theme="dark"] [style*="background:var(--c-navy)"],
[data-theme="dark"] [style*="background: var(--c-navy)"] {
  background: #0D1520 !important;
}

/* ── Gold ambient glow on section headings ── */
[data-theme="dark"] .section-title span,
[data-theme="dark"] .hero-title .gold {
  text-shadow: 0 0 40px rgba(201,168,76,0.2);
}

/* ── Page hero dark ── */
[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, #0D1520 0%, #131210 50%, #1A1815 100%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
[data-theme="dark"] .page-hero::before {
  opacity: 0.04;
}

/* ── Breadcrumb dark ── */
[data-theme="dark"] .breadcrumb a {
  color: rgba(201,168,76,0.7);
}
[data-theme="dark"] .breadcrumb span:last-child {
  color: rgba(237,232,223,0.5);
}

/* ── Toast notification ── */
[data-theme="dark"] .toast {
  background: #1F1D1A;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
  color: var(--c-text);
}

