/* =========================================================
   PRIVILEGE LIFTING SDN BHD — FAANG-Grade Ultra-Premium System
   Inspired by Apple, Stripe, and Vercel Industrial Design Architecture
   - Logo Height: 85px (Desktop) / 65px (Mobile) with Ambient Gold Glow
   - Palette: Gold Dust (#d4af37) + Corporate Polo Navy (#133c55) + White (#ffffff) + Obsidian Black (#06111c)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600;1,800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* FAANG-Grade Gold & Corporate Navy Palette */
  --gold-dust: #d4af37;
  --gold-dust-light: #f5e49e;
  --gold-dust-bright: #f8e185;
  --gold-dust-dark: #b3891d;
  --gold-border: rgba(212, 175, 55, 0.45);
  --gold-glow-soft: rgba(212, 175, 55, 0.3);
  
  --polo-navy: #133c55;
  --polo-navy-dark: #0c2338;
  --polo-navy-deeper: #06111c;
  --polo-navy-light: #1d4e6b;
  --polo-navy-card: #0d2539;
  
  --white: #ffffff;
  --silver-light: #f1f5f9;
  
  --slate-body: #334155;
  --slate-muted: #64748b;
  --slate-light: #94a3b8;
  
  --paper: #f8fafc;
  --paper-card: #ffffff;
  --paper-alt: #f1f5f9;
  
  --border-light: #cbd5e1;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1da851;

  /* Typography (Apple SF Pro & Plus Jakarta Sans) */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;

  /* Geometry & Shadows */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 16px 36px -5px rgba(19, 60, 85, 0.2), 0 8px 16px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 30px 60px -12px rgba(6, 17, 28, 0.65);
  --shadow-gold-glow: 0 12px 40px rgba(212, 175, 55, 0.5);
  --shadow-navy-glow: 0 12px 40px rgba(19, 60, 85, 0.55);
  
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   HIDE BROWSER SCROLLBARS (Ultra-Clean & Premium Canvas)
   ========================================================= */
html, body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

body.modal-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--slate-body);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--max-w, 1260px);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold-dust) !important;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}
.text-navy { color: var(--polo-navy) !important; }

/* ANIMATED LOGO PRELOADER SCREEN */
.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0d2539 0%, #06111c 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 650ms ease, visibility 650ms ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.logo-pulse-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  z-index: 2;
  background: transparent;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.7));
  animation: logo-float 3s ease-in-out infinite alternate;
}

@keyframes logo-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.preloader-ring {
  position: absolute;
  inset: -16px;
  border: 4.5px solid transparent;
  border-top-color: var(--gold-dust);
  border-right-color: var(--white);
  border-bottom-color: var(--gold-dust-dark);
  border-radius: 50%;
  animation: preloader-spin 1.2s linear infinite;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-bar {
  width: 280px;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 18px;
}
.preloader-progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dust-light), var(--white), var(--gold-dust));
  animation: preloader-fill 1s ease-in-out infinite alternate;
}

@keyframes preloader-fill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.preloader-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-dust);
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

/* Typography (FAANG Heavy Display Style) */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--polo-navy-dark);
}

h1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.45rem; font-weight: 800; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { color: var(--slate-body); font-size: 1.04rem; font-weight: 400; }
.lede {
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
  color: #334155;
  font-weight: 500;
  line-height: 1.65;
  max-width: 780px;
}
.hero-content .lede,
.page-hero .lede,
.section-dark .lede,
.cta-banner .lede {
  color: #e2e8f0;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gold-accent-highlight {
  color: var(--gold-dust);
  background: linear-gradient(135deg, #f8e185 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  font-weight: 800;
}

.eyebrow {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dust);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  background: rgba(212, 175, 55, 0.14);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--gold-dust);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-dust);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* HIGH-IMPACT DUSTY GOLD BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 650ms ease;
}
.btn:hover::before { left: 150%; }

.btn-gold, .btn-orange, .btn-jcb {
  background: linear-gradient(135deg, #f5e49e 0%, #d4af37 50%, #b3891d 100%);
  color: var(--polo-navy-deeper);
  box-shadow: var(--shadow-gold-glow);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
.btn-gold:hover, .btn-orange:hover, .btn-jcb:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.6);
  color: var(--polo-navy-deeper);
}

.btn-navy {
  background: linear-gradient(135deg, var(--polo-navy) 0%, var(--polo-navy-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-navy-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-navy:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px rgba(19, 60, 85, 0.65);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42);
}
.btn-whatsapp svg {
  fill: #ffffff !important;
  color: #ffffff !important;
  display: inline-block;
  vertical-align: middle;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.55);
}

.btn-outline-gold, .btn-outline-orange, .btn-outline-jcb {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-dust);
  color: var(--gold-dust);
}
.btn-outline-gold:hover, .btn-outline-orange:hover, .btn-outline-jcb:hover {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  box-shadow: var(--shadow-gold-glow);
}

.btn-lg { padding: 20px 42px; font-size: 1.08rem; border-radius: var(--radius-md); }
.btn-sm { padding: 10px 22px; font-size: 0.86rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }

/* Top Utility Bar */
.topbar {
  background: var(--polo-navy-deeper);
  color: var(--slate-light);
  font-size: 0.84rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 14px;
}
.topbar-left { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-phone { color: var(--white); font-weight: 700; }
.topbar-phone:hover { color: var(--gold-dust); }
.topbar-wa-btn {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-weight: 700;
}
.topbar-wa-btn:hover { background: var(--whatsapp-green); color: var(--white); }

/* SITE HEADER & ENLARGED LOGO (85px DESKTOP / 65px MOBILE) */
.site-header {
  background: rgba(6, 17, 28, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 14px 40px rgba(6, 17, 28, 0.7);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 18px; }

/* ENLARGED HIGH-IMPACT BRAND LOGO */
.brand-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.65)) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), filter 350ms ease;
}
.brand:hover .brand-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.85));
}

.brand-text .name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 55%, var(--gold-dust) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.brand-text .tag {
  font-size: 0.82rem;
  color: var(--gold-dust);
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav ul { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--slate-light);
  padding: 10px 0;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--gold-dust), var(--gold-dust-light));
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px var(--gold-dust);
}

/* Dropdown Menu */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 330px;
  background: var(--polo-navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: none;
  z-index: 120;
}
.has-dropdown:hover .dropdown { display: block; animation: fadeIn 200ms ease; }
.dropdown a {
  display: block;
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--slate-light);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: rgba(212, 175, 55, 0.18); color: var(--gold-dust); }

/* Mobile Toggle */
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 28px; height: 3.5px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* AMBIENT FAANG HERO SECTION */
.hero {
  background: radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.15) 0%, transparent 65%),
              radial-gradient(circle at 15% 70%, rgba(19, 60, 85, 0.3) 0%, transparent 60%),
              linear-gradient(135deg, var(--polo-navy-deeper) 0%, var(--polo-navy-dark) 100%);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-dust), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 70px;
}

.hero-content h1 { color: var(--white); margin-top: 16px; margin-bottom: 22px; text-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.hero-cta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 36px; margin-bottom: 36px; }

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--slate-light);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
}
.badge-item { display: flex; align-items: center; gap: 9px; font-weight: 600; }

/* HERO IMAGE CARD WITH SHIMMER GOLD BORDER */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.35);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold-dust), var(--polo-navy-light), var(--gold-dust-dark)) border-box;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 450ms ease;
}
.hero-image-card:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 0 40px 85px rgba(0, 0, 0, 0.75), 0 0 50px rgba(212, 175, 55, 0.55);
}

.hero-image-card img { width: 100%; height: 460px; object-fit: cover; object-position: center; }
.hero-image-card .tag-plate {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(6, 17, 28, 0.95);
  backdrop-filter: blur(14px);
  color: var(--gold-dust);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 15px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  letter-spacing: 0.07em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

/* Manifest Strip */
.manifest-strip {
  background: linear-gradient(135deg, var(--polo-navy-card) 0%, var(--polo-navy-deeper) 100%);
  border-top: 1px solid var(--gold-border);
  padding: 40px 0;
  color: var(--white);
}
.manifest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.manifest-item { position: relative; padding-left: 24px; border-left: 4.5px solid var(--gold-dust); }
.manifest-item .val {
  display: block;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}
.manifest-item .lbl { font-size: 0.86rem; font-weight: 600; color: var(--slate-light); margin-top: 6px; }

/* Tagline Banner */
.tagline-strip {
  background: var(--polo-navy-deeper);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tagline-strip strong { color: var(--gold-dust); }

/* =========================================================
   F1-GRADE MINIMALIST ULTRA-PREMIUM PARTNERS MARQUEE
   Inspired by Formula 1 Official Partners System
   ========================================================= */
.partners-marquee-section {
  background: linear-gradient(180deg, #03080e 0%, #081624 50%, #03080e 100%);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid var(--gold-border);
  border-bottom: 1.5px solid var(--gold-border);
  box-shadow: inset 0 0 70px rgba(0,0,0,0.85);
}

.marquee-header {
  text-align: center;
  margin-bottom: 30px;
}

.marquee-title-f1 {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-title-f1 .gold-accent {
  color: var(--gold-dust);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.marquee-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 55px;
  width: max-content;
  animation: marquee-loop 36s linear infinite;
}

.marquee-track-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* F1 MINIMALIST FLOATING PARTNER BADGE */
.f1-partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 300ms ease;
}

.f1-partner-item img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
  opacity: 0.88;
  transition: all 300ms ease;
}

.f1-partner-name {
  font-family: var(--font-main);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 300ms ease;
}

.f1-partner-item:hover img {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.85));
  opacity: 1;
  transform: scale(1.08);
}

.f1-partner-item:hover .f1-partner-name {
  color: var(--gold-dust);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

/* Section Basics */
section { padding: 90px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark {
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 55%), var(--polo-navy-deeper);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: var(--slate-light); }

.section-head { margin-bottom: 60px; }
.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-head.center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* FAANG-GRADE INTERACTIVE SERVICE CARDS */
.grid-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 320px;
  max-width: 380px;
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-dust), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 48px rgba(19, 60, 85, 0.22), 0 0 24px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
}
.service-card:hover::before { opacity: 1; }

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.card-num { font-size: 1.95rem; font-weight: 800; color: var(--gold-dust); text-shadow: 0 0 12px rgba(212, 175, 55, 0.35); }
.card-tag { font-size: 0.76rem; background: var(--paper-alt); color: var(--polo-navy); padding: 6px 15px; border-radius: var(--radius-pill); font-weight: 700; }

.service-card h3 { margin-bottom: 14px; color: var(--polo-navy-dark); }
.service-card p { flex-grow: 1; margin-bottom: 30px; font-size: 1rem; color: var(--slate-body); }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--paper-alt); }
.card-link { font-size: 0.9rem; font-weight: 700; color: var(--polo-navy); }
.card-link:hover { color: var(--gold-dust-dark); }

/* Why Choose Section & Trade Cards */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.framed-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.experience-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, var(--gold-dust) 0%, var(--gold-dust-dark) 100%);
  color: var(--polo-navy-deeper);
  padding: 26px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold-glow);
  text-align: center;
}
.experience-badge .number { display: block; font-size: 2.85rem; font-weight: 800; line-height: 1; }
.experience-badge .label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }

.why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.why-list-item { display: flex; gap: 16px; align-items: flex-start; font-size: 1rem; color: var(--slate-body); }
.why-list-item strong { color: var(--polo-navy-dark); font-weight: 800; }
.section-dark .why-list-item { color: var(--slate-light); }
.section-dark .why-list-item strong { color: var(--white); }
.check-icon { color: var(--gold-dust); font-weight: 800; font-size: 1.25rem; filter: drop-shadow(0 0 8px rgba(212,175,55,0.7)); }

.trade-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 32px; }
.trade-card {
  background: var(--paper-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.trade-card:hover { transform: translateY(-6px); border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.trade-icon { font-size: 2.4rem; margin-bottom: 16px; }
.trade-card h4 { font-size: 1.08rem; margin-bottom: 8px; color: var(--polo-navy-dark); }
.trade-card p { font-size: 0.92rem; color: var(--slate-body); }

/* Real Gallery */
.gallery-filters { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 45px; }
.filter-btn {
  background: var(--paper-card);
  border: 1px solid var(--border-light);
  color: var(--slate-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--polo-navy-deeper); color: var(--gold-dust); border-color: var(--polo-navy-deeper); box-shadow: 0 6px 22px rgba(6, 17, 28, 0.35); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 270px;
  background: var(--polo-navy-deeper);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 450ms ease; }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 28, 0.96) 0%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 300ms ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .category { font-size: 0.74rem; color: var(--gold-dust); text-transform: uppercase; font-weight: 800; letter-spacing: 0.05em; }
.gallery-overlay h4 { color: var(--white); font-size: 1rem; margin-top: 4px; }

/* FAQ Accordion */
.faq-accordion { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--paper-card); border-radius: var(--radius-md); margin-bottom: 18px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--polo-navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:hover { background: var(--paper-alt); }
.faq-icon { font-size: 1.35rem; color: var(--gold-dust); font-weight: 800; transition: transform var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease, padding 300ms ease; padding: 0 30px; }
.faq-item.active .faq-answer { max-height: 240px; padding: 0 30px 26px 30px; }

/* CTA Banner */
.cta-banner {
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 65%),
              linear-gradient(135deg, var(--polo-navy-deeper) 0%, var(--polo-navy-card) 100%);
  color: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gold-border);
}
.cta-box { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-text p { color: var(--slate-light); }
.cta-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Contact Form & Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.info-card {
  background: var(--paper-card);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition);
}
.info-card:hover { transform: translateY(-5px); }
.info-card .lbl {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.info-card .val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--polo-navy-dark);
}

.form-wrap {
  background: var(--paper-card);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--polo-navy-dark);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.96rem;
  background: var(--paper);
  color: var(--polo-navy-dark);
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dust);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dust);
  font-weight: 800;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.7));
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-badge {
  background: var(--paper-card);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.trust-badge .dot {
  width: 9px;
  height: 9px;
  background: var(--gold-dust);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-dust);
}

/* Page Hero */
.page-hero { background: var(--polo-navy-deeper); color: var(--white); padding: 80px 0 60px 0; border-bottom: 1px solid var(--gold-border); }
.breadcrumb { font-size: 0.84rem; color: var(--slate-light); margin-bottom: 16px; font-weight: 500; }
.breadcrumb a { color: var(--gold-dust); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }

/* FOOTER WITH ENLARGED LOGO (70px) & HIGH CONTRAST LOCATION */
.site-footer { background: var(--polo-navy-deeper); color: var(--slate-light); padding-top: 90px; border-top: 4.5px solid var(--gold-dust); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 45px; padding-bottom: 65px; }
.footer-brand { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}
.footer-brand .name { font-size: 1.65rem; color: var(--white); font-weight: 800; }
.company-sub { font-size: 0.84rem; color: var(--gold-dust); margin-bottom: 16px; font-weight: 700; }

.footer-col h4 { color: var(--white); font-size: 1.12rem; margin-bottom: 24px; border-bottom: 2px solid var(--gold-dust); padding-bottom: 6px; display: inline-block; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--silver-light); font-weight: 500; }
.footer-col ul li a:hover { color: var(--gold-dust); }

/* High Contrast Head Office Location Readability */
.footer-col.contact-col .address {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-dust);
}
.footer-col.contact-col .phone, .footer-col.contact-col .email {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--gold-dust-light);
  margin-bottom: 10px;
}
.footer-col.contact-col a { color: var(--gold-dust-bright); text-decoration: underline; text-underline-offset: 3px; }
.footer-col.contact-col a:hover { color: var(--white); }

/* Social Media Profile Buttons in Footer */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.footer-bottom { background: rgba(0, 0, 0, 0.65); padding: 26px 0; font-size: 0.84rem; color: var(--slate-light); }
.bottom-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* WAVE PULSE FLOATING WHATSAPP BUTTON */
.float-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp-green);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.5);
  z-index: 99;
  animation: wa-wave 3s infinite;
}
.float-wa-btn:hover { background: var(--whatsapp-hover); transform: translateY(-4px) scale(1.03); }

@keyframes wa-wave {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal & Lightbox Responsive Controls */
.modal-overlay, .lightbox-overlay {
  position: fixed; inset: 0; background: rgba(6, 17, 28, 0.94); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; z-index: 99999 !important; opacity: 0; pointer-events: none; transition: opacity 300ms ease; padding: 20px;
}
.modal-overlay.active, .lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--polo-navy-card); color: var(--white); max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border); box-shadow: var(--shadow-lg); padding: 40px; position: relative;
}
.modal-close { position: absolute; top: 22px; right: 26px; background: transparent; border: none; color: var(--slate-light); font-size: 1.9rem; cursor: pointer; }
.modal-badge { font-size: 0.8rem; color: var(--polo-navy-deeper); background: var(--gold-dust); padding: 5px 14px; border-radius: var(--radius-pill); font-weight: 800; }
.modal-header h3 { color: var(--white); margin-top: 12px; margin-bottom: 8px; }

.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img, .lightbox-content video { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: var(--white); font-size: 2.2rem; cursor: pointer; }
.lightbox-caption { color: var(--white); margin-top: 14px; text-align: center; font-size: 1rem; }

.quote-form .form-group label { color: var(--slate-light); }
.quote-form .form-group select, .quote-form .form-group input { background: var(--polo-navy-deeper); color: var(--white); border-color: rgba(255, 255, 255, 0.18); }

/* AUTO-SWAPPING SHOWCASE CAROUSEL */
.showcase-carousel-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.showcase-carousel {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.25);
  border: 1px solid var(--gold-border);
}
.showcase-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, transform 700ms ease, visibility 700ms ease;
  transform: scale(1.03);
}
.showcase-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.showcase-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 35px 30px 25px 30px;
  background: linear-gradient(0deg, rgba(6, 17, 28, 0.95) 0%, rgba(6, 17, 28, 0.6) 70%, transparent 100%);
  color: var(--white);
}
.showcase-card-overlay .category {
  font-size: 0.8rem;
  color: var(--gold-dust);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.showcase-card-overlay h4 {
  color: var(--white);
  font-size: 1.35rem;
  margin-top: 6px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.carousel-arrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-dust);
  border: 1px solid var(--gold-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.carousel-arrow:hover {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  transform: scale(1.1);
}
.carousel-dots { display: flex; gap: 10px; }
.carousel-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dots .dot.active {
  background: var(--gold-dust);
  width: 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px var(--gold-dust);
}

/* Animations & Ultra-Responsive Breakpoints */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-card img { height: 380px; }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .trade-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { height: 75px; }
}

/* Mobile Breakpoint (< 768px) */
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  section { padding: 65px 0; }
  .hero { padding-top: 45px; }
  .topbar-left { gap: 12px; font-size: 0.78rem; }
  
  /* Mobile Header Alignment Fix */
  .site-header { padding: 12px 0; }
  .nav-wrap { flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 10px; width: 100%; }
  .brand { max-width: calc(100% - 50px); display: flex; align-items: center; gap: 10px; }
  .brand-logo { height: 54px; width: auto; flex-shrink: 0; }
  .brand-text .name { font-size: 1.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-text .tag { font-size: 0.68rem; display: block; }
  .nav-toggle { margin-left: auto; flex-shrink: 0; }

  .main-nav { position: absolute; top: 100%; left: 0; width: 100%; background: var(--polo-navy-card); border-top: 1px solid rgba(255,255,255,0.12); display: none; padding: 22px; z-index: 150; box-shadow: var(--shadow-lg); }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; }
  .dropdown { position: static; width: 100%; display: none; margin-top: 10px; }
  .has-dropdown.active .dropdown { display: block; }
  .nav-toggle { display: block; }
  
  .grid-services { grid-template-columns: 1fr; }
  .trade-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  
  .manifest-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-group.full { grid-column: span 1; }
  .form-wrap { padding: 26px 20px; }
  .modal-card { padding: 26px 20px; }
  
  .btn-lg { padding: 16px 28px; font-size: 0.98rem; width: 100%; }
  .hero-cta-row { flex-direction: column; gap: 14px; }
  
  .float-wa-btn { bottom: 20px; right: 20px; padding: 13px 20px; font-size: 0.88rem; }
}

/* Small Smartphone Breakpoint (< 480px) */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-item { padding-left: 16px; }
  .manifest-item .val { font-size: 2rem; }
  .brand-logo { height: 48px; }
  .brand-text .name { font-size: 1.05rem; }
}

/* =========================================================
   CLIENT REVIEW PANELS (TESTIMONIALS) — ULTRA PREMIUM
   ========================================================= */
.reviews-section {
  padding: 95px 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, var(--polo-navy-deeper) 0%, #06121f 100%);
  color: var(--white);
  position: relative;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.reviews-section .section-head h2 {
  color: var(--white) !important;
  font-size: 2.2rem;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.reviews-section .eyebrow {
  color: var(--gold-dust) !important;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 45px;
}

.review-card {
  background: rgba(13, 37, 57, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dust);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
}

.star-rating {
  color: var(--gold-dust);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-quote {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--polo-navy-light), var(--gold-dust-dark));
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--gold-dust);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.reviewer-details h5 {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.reviewer-details p {
  color: var(--slate-light);
  font-size: 0.82rem;
  margin: 0;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 4px;
}

/* ORIGINAL SVG BRAND & SYSTEM ICONS */
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

.ui-icon-wa {
  color: var(--whatsapp-green);
  fill: var(--whatsapp-green);
}

/* =========================================================
   HERO SLIDER & INTERACTIVE SWIPER GALLERY CARDS
   ========================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Service Category Cards in Gallery Grid */
.category-card {
  background: var(--polo-navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dust);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

.category-card-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #06111c;
}

.category-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-card:hover .category-card-thumb img {
  transform: scale(1.08);
}

.category-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(6, 17, 28, 0.88);
  border: 1px solid var(--gold-dust);
  color: var(--gold-dust);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.category-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.category-card-body h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.category-card-btn {
  color: var(--gold-dust);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

/* Lightbox Swiper Modal Navigation */
.lightbox-swiper-header {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  color: var(--white);
}

.lightbox-swiper-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dust);
}

.lightbox-swiper-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-light);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(6, 17, 28, 0.82);
  border: 2px solid var(--gold-dust);
  color: var(--gold-dust);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.lightbox-nav-btn:hover {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.lightbox-nav-prev { left: 24px; }
.lightbox-nav-next { right: 24px; }

/* Custom Modern Gold Dust Dropdown Component */
.gallery-dropdown-wrap {
  position: relative;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-select-label {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.custom-dropdown-container {
  position: relative;
  z-index: 500;
  display: inline-block;
  min-width: 360px;
}

.custom-dropdown-trigger {
  width: 100%;
  background: rgba(12, 35, 56, 0.95);
  border: 2px solid var(--gold-dust);
  color: var(--gold-dust);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
  transition: all var(--transition);
}

.custom-dropdown-trigger:hover,
.custom-dropdown-container.open .custom-dropdown-trigger {
  background: var(--polo-navy-card);
  border-color: var(--gold-light);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.dropdown-chevron {
  color: var(--gold-dust);
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.custom-dropdown-container.open .dropdown-chevron {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(6, 17, 28, 0.98);
  border: 2px solid var(--gold-dust);
  border-radius: var(--radius-md);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(16px);
}

.custom-dropdown-container.open .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-dust);
}

.dropdown-item.active {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  font-weight: 800;
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dust);
  pointer-events: none;
  font-size: 0.8rem;
}

/* Gallery Highlights Slider ("All Service Categories" Slideshow) */
.gallery-highlights-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: #06111c;
}

.gallery-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(6, 17, 28, 0.95), rgba(6, 17, 28, 0.4), transparent);
  color: var(--white);
}

.slide-tag {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-dust);
  color: var(--gold-dust);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.slide-caption h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(6, 17, 28, 0.85);
  border: 2px solid var(--gold-dust);
  color: var(--gold-dust);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.gallery-arrow:hover {
  background: var(--gold-dust);
  color: var(--polo-navy-deeper);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

.gallery-dots {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.g-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--gold-dust);
  cursor: pointer;
  transition: all var(--transition);
}

.g-dot.active {
  background: var(--gold-dust);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--gold-dust);
}

@media (max-width: 768px) {
  .gallery-highlights-slider { height: 340px; }
  .slide-caption h3 { font-size: 1.1rem; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
}

.ui-icon-gold {
  color: var(--gold-dust);
  fill: var(--gold-dust);
}

.ui-icon-white {
  color: var(--white);
  fill: var(--white);
}

/* Mobile-First & All-Screen Responsive Refinements */
@media (max-width: 600px) {
  .custom-select-box {
    width: 100%;
    min-width: 100%;
  }

  .gallery-filter-select {
    font-size: 0.88rem;
    padding: 12px 36px 12px 16px;
  }

  .gallery-highlights-slider {
    height: 280px;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }

  .gallery-dots {
    bottom: 12px;
    right: 14px;
    gap: 6px;
  }

  .g-dot {
    width: 9px;
    height: 9px;
  }

  .float-wa-btn {
    bottom: 20px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

