/* ===================================================================
   BUSINESS WALKINS — PREMIUM SERVICES STYLESHEET
   Design System:
   - Primary Background: #0B0B0B (Pure Dark Charcoal)
   - Secondary Background: #10131A (Rich Midnight Charcoal)
   - Card Surface: #141824 (Elevated Slate Luxury)
   - Antique Gold: #C9A227
   - Champagne Gold: #E5C76B
   - White / Ivory Typography: #F7F2E7
   - Headings: Playfair Display, serif
   - Body: Inter, sans-serif
   =================================================================== */

:root {
  --bg-main: #0B0B0B;
  --bg-secondary: #10131A;
  --card-surface: #141824;
  --card-surface-hover: #191E2E;
  --gold-antique: #C9A227;
  --gold-champagne: #E5C76B;
  --gold-gradient: linear-gradient(135deg, #FFF1C5 0%, #E5C76B 45%, #C9A227 100%);
  --text-ivory: #F7F2E7;
  --text-body: #BFC3CC;
  --text-secondary: #BFC3CC;
  --text-muted: #8E909E;
  --border-gold: rgba(201, 162, 39, 0.15);
  --border-gold-hover: rgba(229, 199, 107, 0.55);
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================================================
   TYPOGRAPHY & SECTION UTILITIES
   =================================================================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--gold-antique);
  transform: translateY(-50%);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-ivory);
  line-height: 1.22;
  margin-bottom: 1.15rem;
}

.section-heading span.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-tag {
  padding-left: 0;
}

.text-center .section-tag::before {
  display: none;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Common Section Padding */
.section-py {
  padding: 6.5rem 0;
}

.section-dark {
  background-color: var(--bg-main);
  position: relative;
}

.section-secondary {
  background-color: var(--bg-secondary);
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0B0B0B;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(229, 199, 107, 0.45);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-antique);
}

.btn-outline-gold:hover {
  background: rgba(201, 162, 39, 0.1);
  color: #FFF;
  border-color: var(--gold-champagne);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.25);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
}

/* ===================================================================
   SITE HEADER / NAVIGATION (UNIFIED DESIGN)
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ---- Brand Logo: BW Circular Only ---- */
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-bw-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--gold-antique);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15), 0 4px 16px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover .brand-bw-logo {
  transform: scale(1.07);
  box-shadow: 0 0 0 4px rgba(229, 199, 107, 0.28), 0 6px 22px rgba(0, 0, 0, 0.6);
}

/* ---- Navigation Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Nav links (a and button) identical look */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #E8E2D8;
  padding: 9px 16px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-champagne), var(--gold-antique));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link.active,
.nav-dropdown-split .nav-link-main.active,
.nav-item-dropdown.active .nav-dropdown-split .nav-link-main {
  color: #E5C76B;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-dropdown-split .nav-link-main:hover::after,
.nav-dropdown-split .nav-link-main.active::after,
.nav-item-dropdown.active .nav-dropdown-split .nav-link-main::after {
  transform: scaleX(1);
}

/* ---- Dropdown Wrapper & Split Action ---- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-split {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-dropdown-split .nav-link-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #E8E2D8;
  padding: 9px 4px 9px 16px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-split .nav-link-main::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 16px;
  right: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-champagne), var(--gold-antique));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-dropdown-split .nav-link-main:hover {
  color: #FFFFFF;
}

.dropdown-chevron-btn {
  background: transparent;
  border: none;
  color: #E8E2D8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px 9px 2px;
  font-family: inherit;
  transition: color 0.2s ease;
}

.dropdown-chevron-btn:hover,
.nav-item-dropdown:hover .dropdown-chevron-btn {
  color: #FFFFFF;
}

.dropdown-chevron-btn.active,
.nav-item-dropdown.active .dropdown-chevron-btn {
  color: #E5C76B;
}

.dropdown-chevron {
  width: 12px;
  height: 7px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  display: inline-block;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

/* ---- Dropdown / Mega Menu Panel: Dark Luxury Theme ---- */
.dropdown-menu,
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 860px;
  max-width: 94vw;
  background: #10131A;
  background: linear-gradient(180deg, #141824 0%, #0D1017 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-top: 2px solid var(--gold-antique);
  border-radius: 12px;
  padding: 1.6rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(201, 162, 39, 0.08);
  z-index: 1020;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

/* Invisible gap-bridge */
.nav-item-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu,
.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown:focus-within .mega-menu,
.nav-item-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mega-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  margin-bottom: 0.9rem;
  display: block;
}

.mega-menu-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 0.4rem;
  border-left: 2px solid transparent;
}

.mega-menu-link:hover,
.mega-menu-link.active {
  background: rgba(201, 162, 39, 0.08);
  border-left-color: var(--gold-antique);
  transform: translateX(3px);
}

.mega-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  flex-shrink: 0;
  margin-top: 2px;
}

.mega-link-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-ivory);
  display: block;
  margin-bottom: 2px;
  transition: color 0.2s ease;
}

.mega-menu-link:hover .mega-link-title {
  color: var(--gold-champagne);
}

.mega-link-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  display: block;
}

.mega-menu-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(20, 24, 36, 0.6);
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
}

.mega-bottom-highlight {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.mega-bottom-highlight strong {
  color: var(--gold-champagne);
}

.mega-bottom-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-antique);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.mega-bottom-btn:hover {
  color: var(--gold-champagne);
  text-decoration: underline;
}

/* Fallback simple dropdown-item support */
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-ivory);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(201, 162, 39, 0.1);
  border-left-color: var(--gold-antique);
  color: var(--gold-champagne);
}

/* ---- Benefits Section Grid ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 39, 0.12);
}

.benefit-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-ivory);
  margin-bottom: 0.85rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mega-menu {
    position: static;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0;
  }
  .nav-item-dropdown.open .mega-menu {
    display: block;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mega-menu-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Header Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-enquiry-btn {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 4px;
  padding: 7px 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 38px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #E8E2D8;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================================
   SECTION 1: HERO / PAGE BANNER (PREMIUM LUXURY INTERNATIONAL FORMAT)
   =================================================================== */
.services-hero,
.page-banner {
  position: relative;
  height: 550px;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 75px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: #040712;
  text-align: center;
  box-sizing: border-box;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.52) contrast(1.18) saturate(1.15);
  transform: scale(1.04);
  transition: transform 10s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-hero:hover .hero-bg-img,
.page-banner:hover .hero-bg-img {
  transform: scale(1.0);
}

/* Dark cinematic overlay with subtle navy-blue gradients */
.page-banner .hero-overlay,
.services-hero .hero-overlay,
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 34, 72, 0.55) 0%, rgba(8, 14, 32, 0.82) 55%, rgba(4, 7, 16, 0.96) 100%),
    linear-gradient(180deg, rgba(4, 7, 16, 0.85) 0%, rgba(10, 18, 42, 0.35) 45%, rgba(4, 7, 16, 0.95) 100%),
    linear-gradient(90deg, rgba(4, 7, 16, 0.65) 0%, transparent 50%, rgba(4, 7, 16, 0.65) 100%);
  z-index: 2;
}

.hero-content,
.banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

/* Luxury Page Title: 60px–80px on desktop with generous breathing space */
.page-banner-title,
.hero-title {
  font-family: 'Cinzel', 'Playfair Display', 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(3.2rem, 5.5vw, 4.75rem);
  font-weight: 700 !important;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 1.75rem 0;
  letter-spacing: 0.05em !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.page-banner-title span.gold-text,
.hero-title span.gold-text {
  color: #E5C76B !important;
  background: linear-gradient(135deg, #FFF1C5 0%, #E5C76B 45%, #C9A227 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline !important;
}

/* Page & Service Breadcrumbs: Centered Below Title with Dark Luxury Branding */
.page-breadcrumb,
.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0.55rem 1.4rem;
  background: rgba(14, 22, 45, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin: 0 auto;
  text-transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.page-breadcrumb a,
.service-breadcrumb a {
  color: #E2E8F0;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.page-breadcrumb a:hover,
.service-breadcrumb a:hover {
  color: var(--gold-champagne, #E5C76B);
}

.page-breadcrumb .bc-sep,
.service-breadcrumb span.sep {
  color: #F59E0B;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  margin: 0 3px;
  opacity: 1;
}

.page-breadcrumb .bc-current,
.service-breadcrumb span:last-child {
  color: #FFFFFF;
  font-weight: 600;
}

/* Responsive Breakpoints: Tablet (420px) & Mobile (320px) */
@media (max-width: 991px) {
  .services-hero,
  .page-banner {
    height: 420px;
    min-height: 420px;
    padding-top: 70px;
  }

  .page-banner-title,
  .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 1.25rem;
  }

  .page-breadcrumb,
  .service-breadcrumb {
    font-size: 0.88rem;
    padding: 0.45rem 1.15rem;
    gap: 8px;
    max-width: 90%;
  }
}

@media (max-width: 640px) {
  .services-hero,
  .page-banner {
    height: auto;
    min-height: 320px;
    padding-top: calc(70px + 2rem);
    padding-bottom: 2.2rem;
  }

  .banner-content,
  .hero-content {
    padding: 0 0.75rem;
  }

  .page-banner-title,
  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
    line-height: 1.18;
    margin-bottom: 1rem;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .page-breadcrumb,
  .service-breadcrumb {
    font-size: 0.82rem;
    padding: 0.42rem 1rem;
    gap: 6px;
    max-width: 96%;
    border-radius: 25px;
  }

  .page-breadcrumb .bc-sep,
  .service-breadcrumb span.sep {
    font-size: 0.95rem;
    margin: 0 2px;
  }

  .contact-hero-highlight {
    gap: 0.6rem;
  }

  .contact-pill-feature {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }
}

@media (max-width: 380px) {
  .services-hero,
  .page-banner {
    min-height: 290px;
    padding-top: 85px;
    padding-bottom: 1.8rem;
  }

  .page-banner-title,
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
  }

  .page-breadcrumb,
  .service-breadcrumb {
    font-size: 0.76rem;
    padding: 0.35rem 0.8rem;
    gap: 4px;
  }
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.35);
  margin-bottom: 1.5rem;
}

.hero-badge-top span {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #D6D6E0;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-decor-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2.8rem;
  max-width: 440px;
}

.hero-decor-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.65), transparent);
}

.hero-decor-line.left {
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.65));
}

.hero-decor-sparkle {
  color: var(--gold-champagne);
  font-size: 0.82rem;
  opacity: 0.9;
}

/* ===================================================================
   SECTION 2: ABOUT OUR SERVICES
   =================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  transition: var(--transition-smooth);
}

.about-feature-item:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(201, 162, 39, 0.15);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-ivory);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.about-visual-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual-card:hover img {
  transform: scale(1.05);
}

.about-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(16, 19, 26, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
}

.about-visual-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  display: block;
}

.about-visual-badge strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-ivory);
}

/* ===================================================================
   SECTION 3: OUR SERVICES (SIX CARDS)
   =================================================================== */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 20px rgba(201, 162, 39, 0.2);
}

.service-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 36, 0.95) 0%, rgba(20, 24, 36, 0.2) 60%, transparent 100%);
}

.service-icon-floating {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--gold-antique);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-floating {
  background: var(--gold-antique);
  color: #0B0B0B;
  transform: scale(1.1) rotate(6deg);
}

.service-card-body {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-ivory);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.service-pill-tags {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.81rem;
  color: var(--text-body);
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.16);
  padding: 0.38rem 0.75rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.service-pill .pill-dot {
  color: var(--gold-champagne);
  font-size: 0.65rem;
  line-height: 1;
}

.service-card:hover .service-pill {
  border-color: rgba(201, 162, 39, 0.38);
  background: rgba(16, 19, 26, 0.95);
  color: var(--text-ivory);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1.5px solid transparent;
  transition: var(--transition-smooth);
  width: fit-content;
}

.btn-learn-more svg {
  transition: transform 0.3s ease;
}

.btn-learn-more:hover {
  color: #FFF;
  border-bottom-color: var(--gold-champagne);
}

.btn-learn-more:hover svg {
  transform: translateX(5px);
}

/* ===================================================================
   SECTION 4: WHY CHOOSE BUSINESS WALKINS (COUNTERS)
   =================================================================== */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-feature-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
}

.why-feature-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1;
}

.why-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-ivory);
  margin-bottom: 0.6rem;
}

.why-feature-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   SECTION 5: OUR PROCESS (TIMELINE)
   =================================================================== */
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.process-step-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.35);
  margin-bottom: 0.8rem;
  display: block;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.process-step-card:hover .step-num-badge {
  color: var(--gold-champagne);
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  color: var(--text-ivory);
  margin-bottom: 0.65rem;
}

.process-step-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 992px) {
  .process-step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.7), rgba(229, 199, 107, 0.2));
    box-shadow: 0 0 10px rgba(229, 199, 107, 0.5);
    z-index: 2;
    transform: translateY(-50%);
  }

  .process-step-card:nth-child(3)::before,
  .process-step-card:nth-child(6)::before {
    display: none;
  }
}


/* ===================================================================
   SECTION 6: EVENT GALLERY
   =================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B5B5C2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 24, 36, 0.5);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-antique);
  color: #0B0B0B;
  border-color: var(--gold-champagne);
  font-weight: 600;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-gold);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(201, 162, 39, 0.25) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-cat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-ivory);
}

/* ===================================================================
   SECTION 7: CLIENT BENEFITS (WHAT YOU GAIN)
   =================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-ivory);
  margin-bottom: 0.45rem;
}

.benefit-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===================================================================
   SECTION 8: FINAL CTA
   =================================================================== */
.final-cta-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 65%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 6.5rem 0;
  text-align: center;
}

.cta-box {
  max-width: 820px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--text-ivory);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* ===================================================================
   SECTION 9: CONTACT SECTION
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.contact-card-item:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text-wrap {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-link {
  font-size: 0.95rem;
  color: #FFF;
  line-height: 1.5;
}

.contact-link:hover {
  color: var(--gold-champagne);
}

.contact-form-panel {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-ivory);
  margin-bottom: 0.6rem;
}

.form-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CCC;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #0B0E14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #FFF;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-champagne);
  box-shadow: 0 0 12px rgba(229, 199, 107, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ===================================================================
   SECTION 10: FOOTER
   =================================================================== */
.site-footer {
  background-color: var(--bg-main);
  color: #E6E6E6;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding: 5.5rem 0 2.5rem;
  position: relative;
}

.site-footer .footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-footer .footer-col {
  min-width: 0;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.15fr 1.35fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.site-footer .footer-heading {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 1.4rem;
  position: relative;
  font-weight: 600;
  display: inline-block;
}

.footer-col-brand .footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.35rem;
}

.footer-col-brand .footer-bw-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-antique);
  box-shadow: 0 0 14px rgba(201, 162, 39, 0.25);
  background: #111;
  flex-shrink: 0;
}

.footer-col-brand .footer-brand-heading {
  font-family: var(--font-heading);
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.footer-col-brand .footer-brand-tagline {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--gold-antique);
  margin-top: 3px;
  font-weight: 500;
}

.site-footer .footer-subheading {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-antique);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-leadership-block,
.footer-network-block {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}

.footer-leaders-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-leader-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-leader-name {
  color: #F5F5F7;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-leader-sep {
  color: var(--gold-antique);
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-leader-role {
  color: var(--gold-champagne);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-network-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-network-card,
.network-brand-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.network-brand-link:hover .network-brand-name {
  color: var(--gold-champagne);
}

.footer-network-bullet,
.network-bullet {
  color: var(--gold-antique);
  font-size: 0.75rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.footer-network-name,
.network-brand-name {
  color: #E6E6EA;
  font-weight: 600;
  font-size: 0.84rem;
  transition: color 0.25s ease;
}

.footer-network-desc,
.network-brand-desc {
  color: #8E8E9A;
  font-size: 0.74rem;
  line-height: 1.35;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0.45rem;
}

.gold-social-icon,
.social-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-antique);
  color: var(--gold-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.04);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.gold-social-icon:hover,
.social-icon-circle:hover {
  background: var(--gold-antique);
  color: #040712;
  border-color: var(--gold-champagne);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.45);
}

.social-icon-circle svg {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.social-icon-circle:hover svg {
  transform: scale(1.1);
}

/* Footer Nav */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-gold-link {
  position: relative;
  display: inline-block;
  font-size: 0.94rem;
  color: #CFCFD6;
  font-weight: 500;
  padding-bottom: 4px;
}

.footer-gold-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.footer-gold-link:hover {
  color: var(--gold-champagne);
  transform: translateX(5px);
}

.footer-gold-link:hover::after {
  width: 100%;
}

/* Footer Services */
.footer-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #C5C5CE;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.service-item-link .service-icon {
  color: var(--gold-antique);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-item-link:hover {
  color: var(--gold-champagne);
  background: rgba(201, 162, 39, 0.05);
  transform: translateX(6px);
}

.service-item-link:hover .service-icon {
  color: var(--gold-champagne);
  transform: scale(1.22);
}

/* Footer Contact Cards */
.footer-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.luxury-contact-card {
  background: #121212;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition-smooth);
}

.luxury-contact-card:hover {
  background: #161616;
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 14px rgba(201, 162, 39, 0.16);
}

.luxury-contact-card .card-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.luxury-contact-card:hover .card-icon-wrap {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--gold-champagne);
  color: #FFF;
  transform: scale(1.08);
}

.luxury-contact-card .card-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.luxury-contact-card .card-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-antique);
  font-weight: 700;
  margin-bottom: 2px;
}

.luxury-contact-card .card-value-link {
  font-size: 0.86rem;
  color: #E2E2E8;
  line-height: 1.45;
}

.luxury-contact-card .card-value-link:hover {
  color: var(--gold-champagne);
}

.luxury-contact-card .card-address-text {
  font-size: 0.83rem;
  color: #D1D1D8;
  line-height: 1.45;
  font-style: normal;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  padding-top: 1.8rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: #9A9AA6;
}

.footer-bottom-left {
  color: #A0A0AA;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-bottom-right {
  color: #A0A0AA;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-bottom-right .dev-brand {
  color: var(--gold-champagne);
  font-weight: 600;
}

.footer-bottom-right a.dev-brand:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(229, 199, 107, 0.4);
}

/* ===================================================================
   MODALS (CONSULTATION & SERVICE DETAIL)
   =================================================================== */
.service-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-card {
  background: var(--card-surface);
  border: 1px solid var(--gold-antique);
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 162, 39, 0.2);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-backdrop.active .service-modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--gold-antique);
  color: #0B0B0B;
  border-color: var(--gold-champagne);
}

.modal-header-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.modal-header-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-ivory);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.modal-body-text {
  font-size: 0.94rem;
  color: #D6D6E0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-deliverables-title {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.modal-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.modal-deliverables-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #E2E2EA;
}

.modal-deliverables-list li::before {
  content: '✦';
  color: var(--gold-champagne);
  font-size: 0.8rem;
}

/* ===================================================================
   FLOATING ELEMENTS (WHATSAPP & BACK TO TOP)
   =================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-trigger-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-trigger-btn:hover {
  transform: scale(1.08);
}

.whatsapp-popup-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #141414;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.2rem;
  width: 290px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-popup-menu.active {
  display: flex;
}

.popup-title {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 600;
  margin-bottom: 4px;
}

.popup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  font-size: 0.82rem;
  color: #FFF;
  text-decoration: none;
  transition: background 0.2s ease;
}

.popup-item:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  left: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 24, 36, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-antique);
  color: #0B0B0B;
  border-color: var(--gold-champagne);
}

/* ===================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   =================================================================== */
@media (max-width: 1100px) {
  .services-cards-grid,
  .why-cards-grid,
  .process-timeline-grid,
  .gallery-masonry-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.8rem 2rem !important;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.08);
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-toggle:hover,
  .mobile-toggle.open,
  .mobile-toggle.active {
    background: rgba(201, 162, 39, 0.2);
    border-color: #E5C76B;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
  }

  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #E5C76B;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.25s ease;
  }

  .mobile-toggle.open span:nth-child(1),
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #FFFFFF;
  }

  .mobile-toggle.open span:nth-child(2),
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle.open span:nth-child(3),
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #FFFFFF;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.99) 0%, rgba(18, 22, 34, 0.99) 100%);
    border-bottom: 2px solid rgba(201, 162, 39, 0.45);
    flex-direction: column;
    padding: 1.8rem 1.4rem 3.5rem 1.4rem;
    gap: 0.75rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1005;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(201, 162, 39, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    display: flex;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    list-style: none;
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.92rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link.active {
    color: #E5C76B;
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(229, 199, 107, 0.5);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
    font-weight: 700;
  }

  .nav-menu .nav-link:hover {
    color: #E5C76B;
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.35);
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-split {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.25s ease;
    overflow: hidden;
  }

  .nav-dropdown-split .nav-link-main {
    flex: 1;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.92rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
  }

  .nav-dropdown-split .nav-link-main::after {
    display: none !important;
  }

  .nav-dropdown-split .nav-link-main:hover {
    color: #E5C76B;
    background: rgba(201, 162, 39, 0.08) !important;
  }

  .nav-dropdown-split .nav-link-main.active,
  .nav-item-dropdown.active .nav-dropdown-split .nav-link-main {
    color: #E5C76B;
    font-weight: 700;
  }

  .nav-dropdown-split .dropdown-chevron-btn {
    width: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: #E5C76B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .nav-dropdown-split .dropdown-chevron-btn:hover,
  .nav-dropdown-split .dropdown-chevron-btn:active {
    background: rgba(201, 162, 39, 0.2);
  }

  .nav-item-dropdown.open .nav-dropdown-split {
    background: rgba(201, 162, 39, 0.14);
    border-color: rgba(229, 199, 107, 0.45);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
  }

  .nav-item-dropdown.open .nav-dropdown-split .nav-link-main {
    color: #E5C76B;
  }

  .nav-item-dropdown .dropdown-chevron {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-item-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
    color: #E5C76B;
  }

  /* Mega Menu & Dropdown on Mobile */
  .mega-menu,
  .dropdown-menu {
    position: static !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    background: rgba(14, 18, 28, 0.95);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.6rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
  }

  .nav-item-dropdown.open .mega-menu,
  .nav-item-dropdown.open .dropdown-menu {
    display: block;
    animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
  }
}

@media (max-width: 640px) {
  .section-py {
    padding: 4.5rem 0;
  }

  .services-cards-grid,
  .why-cards-grid,
  .process-timeline-grid,
  .gallery-masonry-grid,
  .benefits-grid,
  .about-features-list,
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-panel {
    padding: 1.8rem 1.4rem;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
  }

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .back-to-top {
    bottom: 80px;
    right: 18px;
    left: auto;
    width: 40px;
    height: 40px;
  }
}

/* ===================================================================
   FAQ ACCORDION & OFFERINGS STYLES (MULTI-PAGE ARCHITECTURE)
   =================================================================== */
.faq-accordion {
  max-width: 900px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--gold-champagne);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: transparent;
  color: var(--text-ivory);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border: none;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--gold-champagne);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold-champagne);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.8rem 1.6rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* What We Offer Grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.offering-card {
  background: var(--card-surface);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 18px rgba(201, 162, 39, 0.12);
}

.offering-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition-smooth);
}

.offering-card:hover .offering-icon-wrap {
  background: var(--gold-antique);
  color: #0B0B0B;
  transform: scale(1.05);
}

.offering-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-ivory);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.offering-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offering-card li {
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.offering-card li::before {
  content: '✦';
  color: var(--gold-champagne);
  font-size: 0.68rem;
}



@media (max-width: 991px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===================================================================
   GOOGLE REVIEWS SECTION (PREMIUM DARK LUXURY)
   =================================================================== */
.google-reviews-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #050814 0%, #0B1028 50%, #050814 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.google-reviews-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(18, 29, 66, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-title-wrap {
  flex: 1;
  min-width: 300px;
}

.reviews-main-title {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 0.8rem;
  line-height: 1.2;
}

/* Google Rating Aggregate Summary Card */
.google-rating-summary-card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: rgba(14, 22, 50, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(229, 199, 107, 0.2);
  flex-wrap: wrap;
}

.google-summary-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-g-logo-wrap {
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.google-rating-score-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-score-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.google-stars-row {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}

.google-stars-row .star-icon {
  width: 17px;
  height: 17px;
}

.google-count-text {
  font-size: 0.8rem;
  color: #CFCFD6;
  letter-spacing: 0.02em;
}

.google-count-text strong {
  color: #E5C76B;
}

.google-summary-right {
  border-left: 1px solid rgba(201, 162, 39, 0.2);
  padding-left: 1.4rem;
}

.verified-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* Review Filter Chips */
.reviews-filters-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.review-filter-chip {
  background: rgba(18, 26, 56, 0.7);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: #C5C5D2;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  font-family: inherit;
}

.review-filter-chip:hover {
  border-color: #E5C76B;
  color: #FFFFFF;
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-2px);
}

.review-filter-chip.active {
  background: linear-gradient(135deg, #C9A227 0%, #E5C76B 100%);
  color: #040712;
  font-weight: 700;
  border-color: #E5C76B;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35);
}

/* ===================================================================
   VERIFIED CLIENT FEEDBACK — CONTINUOUS MARQUEE & TRUST RIBBON
   =================================================================== */

.google-reviews-section {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  background: radial-gradient(circle at 50% 15%, rgba(20, 28, 54, 0.4) 0%, rgba(11, 11, 11, 0.98) 70%, #08080C 100%);
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A227 50%, transparent);
}

/* 1. Header with Aggregate Rating */
.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.reviews-title-wrap {
  max-width: 600px;
}

.reviews-title-wrap .section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-champagne, #E5C76B);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 20px;
}

.reviews-main-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-family: var(--font-heading, 'Cinzel', serif);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.reviews-main-title .gold-text {
  color: var(--gold-champagne, #E5C76B);
  background: linear-gradient(135deg, #C9A227 0%, #F3E0A2 50%, #C9A227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-title-wrap .section-subheading {
  font-size: 0.96rem;
  color: #A3A3B2;
  line-height: 1.65;
  margin: 0;
}

.google-rating-summary-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: rgba(20, 24, 36, 0.9);
  border: 1px solid rgba(229, 199, 107, 0.25);
  border-radius: 14px;
  padding: 1rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(229, 199, 107, 0.15);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.google-summary-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-g-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.google-rating-score-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-score-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading, 'Cinzel', serif);
  line-height: 1;
}

.google-stars-row {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.google-stars-row .star-icon {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.google-count-text {
  font-size: 0.74rem;
  color: #8E8E9A;
  letter-spacing: 0.02em;
}

.google-count-text strong {
  color: #E5C76B;
}

.google-summary-right {
  border-left: 1px solid rgba(201, 162, 39, 0.2);
  padding-left: 1.4rem;
}

.verified-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* 2. Requirement 5: Trust Metrics Counter Above Reviews */
.reviews-trust-ribbon {
  background: rgba(16, 20, 32, 0.85);
  border: 1px solid rgba(229, 199, 107, 0.18);
  border-radius: 16px;
  padding: 1.6rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(229, 199, 107, 0.12);
  backdrop-filter: blur(14px);
}

.reviews-trust-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A227 30%, #E5C76B 50%, #C9A227 70%, transparent);
}

.trust-ribbon-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.trust-ribbon-kicker .gold-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5));
}

.trust-ribbon-kicker .gold-line:last-child {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.5), transparent);
}

.trust-ribbon-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #E5C76B;
  text-transform: uppercase;
}

.trust-metrics-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  flex: 1;
  min-width: 140px;
}

.trust-metric-number {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #E5C76B;
  font-family: var(--font-heading, 'Cinzel', serif);
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #E5C76B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-metric-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.trust-metric-sub {
  font-size: 0.72rem;
  color: #8E8E9A;
  letter-spacing: 0.01em;
}

.trust-metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 162, 39, 0.2);
}

/* 3. Requirement 1: Continuous Marquee Scrolling (Infinite Loop) */
.reviews-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 1.5rem 0 3rem;
  padding: 14px 0 24px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: continuousReviewsMarquee 44s linear infinite;
  will-change: transform;
}

.reviews-marquee-viewport:hover .reviews-marquee-track,
.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes continuousReviewsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee-group {
  display: flex;
  gap: 1.6rem;
  flex-shrink: 0;
}

/* 4. Requirement 4: Glass Reflection Effect & Dark Luxury Card */
.review-card {
  width: 380px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: rgba(20, 24, 36, 0.95);
  border: 1px solid rgba(229, 199, 107, 0.15);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(229, 199, 107, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top gold shine glass reflection */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.8) 30%, rgba(229, 199, 107, 1) 50%, rgba(201, 162, 39, 0.8) 70%, transparent 100%);
  z-index: 1;
}

/* Specular light highlight */
.review-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(229, 199, 107, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 199, 107, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 24px rgba(201, 162, 39, 0.22);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.reviewer-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* 5. Requirement 2: Real Google Profile Photos */
.reviewer-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.reviewer-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(229, 199, 107, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  display: block;
}

.google-badge-mini {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10131A;
  border: 1px solid rgba(229, 199, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.reviewer-name {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
}

.verified-client-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.reviewer-role {
  font-size: 0.74rem;
  color: var(--gold-antique, #C9A227);
  font-weight: 500;
  line-height: 1.3;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.review-stars {
  display: flex;
  gap: 1px;
  color: #F59E0B;
  font-size: 0.88rem;
  letter-spacing: -1px;
}

.review-stars .star-fill {
  color: #F59E0B;
}

.review-date {
  font-size: 0.72rem;
  color: #8E8E9A;
}

.google-icon-stamp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}

.review-comment {
  font-size: 0.88rem;
  color: #D6D6E0;
  line-height: 1.6;
  margin: 0 0 1.2rem;
  font-style: normal;
  flex-grow: 1;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 162, 39, 0.14);
  padding-top: 0.85rem;
  margin-top: auto;
  font-size: 0.74rem;
}

.review-tag {
  color: var(--gold-champagne, #E5C76B);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.review-helpful {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8E8E9A;
  font-size: 0.72rem;
}

/* 6. Requirement 3: Google Review Bottom CTA Box */
.google-reviews-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.google-cta-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #FFFFFF;
  flex-wrap: wrap;
}

.google-cta-rating-line .google-stars-row {
  font-size: 1.05rem;
}

.google-cta-score {
  font-weight: 700;
  color: #FFFFFF;
}

.google-cta-dot {
  color: rgba(201, 162, 39, 0.6);
}

.google-cta-based {
  color: #A3A3B2;
}

.google-cta-based strong {
  color: #E5C76B;
}

.btn-gold-outline-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(20, 24, 36, 0.6);
  border: 1.5px solid #C9A227;
  color: #E5C76B;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.btn-gold-outline-google:hover {
  background: linear-gradient(135deg, #C9A227 0%, #E5C76B 100%);
  color: #040712 !important;
  border-color: #E5C76B;
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
}

.btn-gold-outline-google:active {
  transform: translateY(-1px);
}

.btn-gold-outline-google .google-cta-g-icon {
  flex-shrink: 0;
}

/* Responsive Media Queries for Marquee & Trust Ribbon */
@media (max-width: 992px) {
  .review-card {
    width: 340px;
    padding: 1.4rem;
  }
  .reviews-marquee-track {
    animation-duration: 36s;
  }
}

@media (max-width: 768px) {
  .google-reviews-section {
    padding: 4.5rem 0;
  }

  .reviews-header-block {
    flex-direction: column;
    align-items: stretch;
    gap: 1.8rem;
  }

  .google-rating-summary-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .google-summary-right {
    border-left: none;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    padding-left: 0;
    padding-top: 0.75rem;
    width: 100%;
  }

  .reviews-trust-ribbon {
    padding: 1.4rem 1.2rem;
  }

  .trust-metrics-grid {
    gap: 1.2rem;
  }

  .trust-metric-divider {
    display: none;
  }

  .trust-metric-box {
    flex: 0 0 calc(50% - 0.6rem);
  }
}

@media (max-width: 600px) {
  .review-card {
    width: 290px;
    padding: 1.25rem 1.15rem;
  }
  .reviews-marquee-track {
    gap: 1rem;
    animation-duration: 30s;
  }
  .reviews-marquee-group {
    gap: 1rem;
  }
}

/* ===================================================================
   FAQ ACCORDION (#faq)
   =================================================================== */
/* ===================================================================
   6. CLIENT BENEFITS & VALUE PROPOSITION (#benefits)
   =================================================================== */
#benefits {
  background-color: var(--bg-secondary);
  padding: 6.5rem 0;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.benefit-card {
  background: rgba(18, 22, 35, 0.95);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 16px;
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A227, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-card:hover {
  border-color: rgba(229, 199, 107, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8), 0 0 32px rgba(201, 162, 39, 0.25);
  background: linear-gradient(145deg, rgba(26, 34, 58, 0.98) 0%, rgba(14, 18, 32, 1) 100%);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #E5C76B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: all 0.35s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: #C9A227;
  color: #080A10;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.4);
}

.benefit-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E5C76B;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.32);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.benefit-card p {
  font-size: 0.91rem;
  color: #A8A8BE;
  line-height: 1.72;
  margin-bottom: 1.9rem;
  flex-grow: 1;
}

.benefit-points-list {
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  padding-top: 1.35rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.benefit-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #D6D6E4;
  font-weight: 500;
}

.benefit-point-item svg {
  color: #E5C76B;
  flex-shrink: 0;
}

/* ===================================================================
   8. FREQUENTLY ASKED QUESTIONS (#faq / STRATEGIC COUNSEL)
   =================================================================== */
#faq {
  background-color: var(--bg-secondary);
  padding: 6.5rem 0;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.faq-accordion {
  max-width: 880px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: rgba(18, 22, 35, 0.95);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(229, 199, 107, 0.65);
  background: rgba(24, 30, 48, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201, 162, 39, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #E5C76B;
}

.faq-icon {
  font-size: 1.4rem;
  color: #E5C76B;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.8rem;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.8rem 1.6rem 1.8rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #A8A8C0;
  line-height: 1.72;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

/* Strategic Advisory CTA Card */
.faq-advisory-card {
  max-width: 880px;
  margin: 3.5rem auto 0;
  background: linear-gradient(135deg, rgba(26, 34, 58, 0.95) 0%, rgba(14, 18, 30, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 162, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.faq-advisory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A227, #E5C76B, #9E7D1A);
}

.faq-advisory-content {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.faq-advisory-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #E5C76B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-advisory-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.faq-advisory-text p {
  font-size: 0.88rem;
  color: #A8A8BE;
  line-height: 1.6;
  margin: 0;
}

.faq-advisory-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===================================================================
   RESPONSIVE REFINEMENTS ACROSS ALL DEVICES
   =================================================================== */
@media (max-width: 1199px) {
  .services-cards-grid,
  .why-cards-grid,
  .process-timeline-grid,
  .gallery-masonry-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .faq-advisory-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  .faq-advisory-content {
    flex-direction: column;
    text-align: center;
  }
  .faq-advisory-actions {
    flex-direction: column;
    width: 100%;
  }
  .faq-advisory-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .trophy-spec-list {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .about-visual-card img {
    height: 380px !important;
  }

  .services-cards-grid,
  .why-cards-grid,
  .process-timeline-grid,
  .gallery-masonry-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .faq-question {
    padding: 1.2rem 1.4rem;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 1.4rem 1.4rem 1.4rem;
    font-size: 0.88rem;
  }

  .faq-advisory-card {
    padding: 1.6rem 1.2rem;
  }

  .faq-advisory-text h4 {
    font-size: 1rem;
  }
}

/* ===================================================================
   FLOATING BURNING DIYA & EVENT BADGE (GLOBAL LUXURY COMPONENT)
   =================================================================== */

.floating-diya-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  filter: drop-shadow(0 6px 22px rgba(255, 170, 0, 0.38));
  text-decoration: none;
}

.floating-diya-widget:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 8px 28px rgba(255, 190, 40, 0.5));
}

.diya-container {
  position: relative;
  width: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Ambient Radial Glow Halo */
.diya-aura-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, rgba(255, 190, 40, 0.48) 0%, rgba(255, 120, 0, 0.22) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  animation: diyaAuraPulse 2.8s ease-in-out infinite alternate;
}

/* Multi-layered Burning Flame */
.diya-flame-wrapper {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 30px;
  z-index: 3;
}

.diya-flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 28px;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 230, 80, 0.98) 0%, rgba(255, 140, 0, 0.92) 45%, rgba(220, 40, 0, 0.8) 80%, transparent 100%);
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  box-shadow: 0 0 16px rgba(255, 160, 0, 0.85), 0 0 32px rgba(255, 90, 0, 0.45);
  animation: diyaFlameFlicker 1.4s ease-in-out infinite alternate;
  transform-origin: 50% 90%;
}

.diya-flame-inner {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 17px;
  background: radial-gradient(ellipse at 50% 80%, #ffffff 0%, #fffbe0 40%, rgba(255, 215, 0, 0.85) 85%, transparent 100%);
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  box-shadow: 0 0 8px #ffffff;
  animation: diyaFlameCore 0.8s ease-in-out infinite alternate;
  transform-origin: 50% 90%;
}

.diya-flame-blue {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 5px;
  background: radial-gradient(circle, rgba(70, 160, 255, 0.85) 0%, transparent 80%);
  border-radius: 50%;
}

/* Diya Wick */
.diya-wick {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: linear-gradient(180deg, #1a0a00 0%, #4a2200 100%);
  border-radius: 2px;
  z-index: 2;
}

/* Brass / Terracotta Diya SVG Bowl */
.diya-base-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 25px;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
}

/* Floating Glassmorphism Event Badge Card */
.diya-label-card {
  background: linear-gradient(135deg, rgba(18, 22, 36, 0.96) 0%, rgba(10, 14, 24, 0.96) 100%);
  border: 1px solid rgba(229, 199, 107, 0.45);
  padding: 7px 14px;
  border-radius: 16px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 162, 39, 0.22);
  white-space: nowrap;
  pointer-events: auto;
  opacity: 0.95;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  max-width: 90vw;
  box-sizing: border-box;
}

.floating-diya-widget:hover .diya-label-card {
  opacity: 1;
  transform: translateX(3px);
  border-color: rgba(229, 199, 107, 0.85);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 162, 39, 0.35);
}

.diya-label-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #E5C76B;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.25;
}

.diya-label-sub {
  font-size: 0.66rem;
  color: #E2E8F0;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.25;
}

@keyframes diyaFlameFlicker {
  0% { transform: translateX(-50%) rotate(-1.5deg) scale(1, 1); }
  25% { transform: translateX(-50%) rotate(2deg) scale(0.96, 1.05); border-radius: 45% 55% 35% 35% / 60% 60% 40% 40%; }
  50% { transform: translateX(-50%) rotate(-2deg) scale(1.03, 0.97); }
  75% { transform: translateX(-50%) rotate(1deg) scale(0.98, 1.03); border-radius: 55% 45% 35% 35% / 60% 60% 40% 40%; }
  100% { transform: translateX(-50%) rotate(-1deg) scale(1.02, 1); }
}

@keyframes diyaFlameCore {
  0% { transform: translateX(-50%) scale(1, 1); }
  50% { transform: translateX(-50%) scale(0.92, 1.08); }
  100% { transform: translateX(-50%) scale(1.05, 0.95); }
}

@keyframes diyaAuraPulse {
  0% { opacity: 0.6; transform: translateX(-50%) scale(0.92); }
  100% { opacity: 0.98; transform: translateX(-50%) scale(1.15); }
}

/* Tablet Responsiveness (768px – 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .floating-diya-widget {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
  .diya-container {
    width: 54px;
    height: 45px;
  }
  .diya-base-svg {
    width: 50px;
    height: 23px;
  }
  .diya-label-card {
    padding: 6px 12px;
    max-width: calc(100vw - 120px);
  }
  .diya-label-title {
    font-size: 0.72rem;
  }
  .diya-label-sub {
    font-size: 0.64rem;
  }
}

/* Mobile Responsiveness (< 768px) */
@media (max-width: 768px) {
  .floating-diya-widget {
    position: fixed !important;
    left: 14px !important;
    bottom: 18px !important;
    width: auto !important;
    max-width: calc(100vw - 90px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    z-index: 995 !important;
    box-sizing: border-box !important;
  }

  .diya-container {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-top: -2px !important;
  }

  .diya-aura-glow {
    width: 46px !important;
    height: 46px !important;
    top: -4px !important;
  }

  .diya-flame-wrapper {
    width: 15px !important;
    height: 22px !important;
    top: 3px !important;
  }

  .diya-flame-outer {
    width: 14px !important;
    height: 20px !important;
  }

  .diya-flame-inner {
    width: 7px !important;
    height: 12px !important;
  }

  .diya-wick {
    bottom: 11px !important;
    width: 2px !important;
    height: 5px !important;
  }

  .diya-base-svg {
    width: 38px !important;
    height: 17px !important;
    bottom: 3px !important;
  }

  .diya-label-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 5px 12px !important;
    border-radius: 12px !important;
    gap: 1px !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    max-width: 100% !important;
  }

  .diya-label-title {
    font-family: 'Cinzel', serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #E5C76B !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.25 !important;
    display: block !important;
    width: 100% !important;
    letter-spacing: 0.04em !important;
  }

  .diya-label-sub {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #E2E8F0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.25 !important;
    display: block !important;
    width: 100% !important;
    letter-spacing: 0.02em !important;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .floating-diya-widget {
    transform: scale(0.88) !important;
    transform-origin: left bottom !important;
    left: 14px !important;
    bottom: 18px !important;
    max-width: calc((100vw - 88px) / 0.88) !important;
  }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
  .floating-diya-widget {
    transform: scale(0.78) !important;
    transform-origin: left bottom !important;
    left: 12px !important;
    bottom: 16px !important;
    max-width: calc((100vw - 76px) / 0.78) !important;
  }
}


