/*
Theme Name:  Master Detailing Car Care
Author:      Master Detailing
Description: Ultra-Premium Car Detailing WordPress Theme — 2025 Edition
Version:     5.1.0
Text Domain: master-detailing
*/

/* ─────────────────────────────────────────────────────────────
   GOOGLE FONTS
───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

:root {
  /* Brand Colors – extracted from logo */
  --gold: #C8A84B;
  --gold-lt: #E8C870;
  --gold-dk: #96771F;
  --gold-a10: rgba(200, 168, 75, .10);
  --gold-a20: rgba(200, 168, 75, .20);
  --gold-a35: rgba(200, 168, 75, .35);

  /* Backgrounds */
  --bg-0: #080808;
  --bg-1: #0f0f0f;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --bg-4: #242424;

  /* Text */
  --tx-1: #ffffff;
  --tx-2: #d4d0c8;
  --tx-3: #8c8880;
  --tx-4: #4e4c48;

  /* Borders */
  --br-1: rgba(255, 255, 255, .06);
  --br-2: rgba(200, 168, 75, .18);
  --br-3: rgba(200, 168, 75, .40);

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Outfit', system-ui, sans-serif;
  --ff-stamp: 'Bebas Neue', Impact, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* Layout */
  --max-w: 1300px;
  --hdr-h: 82px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background: var(--bg-0);
  color: var(--tx-1);
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--gold-lt);
}

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

ul {
  list-style: none;
}

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

/* ─────────────────────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7px 28px;
}

.section-pad {
  padding: 20px 0;
}

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

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY COMPONENTS
───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  flex-shrink: 0;
  height: 1px;
  width: 28px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.display {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.03;
  color: var(--tx-1);
}

.display b,
.display strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 35%, var(--gold-lt) 65%, var(--gold) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: txt-shimmer 5s linear infinite;
}

@keyframes txt-shimmer {
  to {
    background-position: 200% center;
  }
}

.gold-glow {
  box-shadow: 0 0 20px rgba(200, 168, 75, 0.3);
}

.h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.07;
}

.h2 b,
.h2 strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.body-copy {
  font-size: 16px;
  line-height: 1.85;
  color: var(--tx-3);
}

.gold-bar {
  width: 56px;
  height: 2px;
  margin: 20px 0;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
  border-radius: 2px;
}

.gold-bar.center {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 30px;
  height: 50px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all .45s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  z-index: 1;
}

.btn span,
.btn i {
  position: relative;
  z-index: 2;
  transition: all .45s var(--ease);
}

/* Unified background slide fill */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* shine sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .18), transparent 65%);
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
  z-index: 3;
}

.btn:hover::after {
  transform: translateX(100%);
}

/* filled gold */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  background-size: 200%;
  color: var(--bg-0);
  border-radius: var(--r-sm);
  box-shadow: 0 6px 28px rgba(200, 168, 75, .30);
  border: 1px solid transparent;
}

.btn-primary::before {
  background: var(--bg-0);
}

.btn-primary:hover {
  background-position: right center;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 168, 75, .45);
  border-color: var(--gold);
}

.btn-primary:active {
  transform: translateY(0);
}

/* outline */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
}

.btn-outline::before {
  background: var(--gold);
}

.btn-outline:hover {
  color: var(--bg-0);
  border-color: var(--gold);
}

/* ghost */
.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--tx-1);
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
}

.btn-ghost::before {
  background: var(--gold);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--bg-0);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
#masthead {
  position: fixed;
  inset: 0 0 auto;
  height: var(--hdr-h);
  z-index: 999;
  transition: all .5s var(--ease);
}

#masthead.sticky {
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--br-1);
  box-shadow: 0 4px 36px rgba(0, 0, 0, .55);
  height: 68px;
}

.hdr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* logo */
.site-logo img {
  height: 52px;
  width: auto;
  transition: height .4s var(--ease);
}

#masthead.sticky .site-logo img {
  height: 42px;
}

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 8px 15px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  border-radius: var(--r-sm);
  transition: color .25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 30px);
}

/* Logo Text Style if no image */
.site-logo a {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1.1;
  font-size: 20px;
}

.site-logo a span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

/* header actions */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hdr-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: all .3s;
}

.hdr-phone:hover {
  background: var(--gold-a20);
  color: var(--gold);
  border-color: var(--br-3);
}

.hdr-phone i {
  font-size: 11px;
}

/* burger */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  border-radius: var(--r-sm);
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .4s var(--ease);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.8px, 4.8px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.8px, -4.8px);
}

/* ─────────────────────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────────────────────── */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px) scale(.98);
  transition: all .5s var(--ease);
}

.mobile-nav-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.mobile-nav-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200, 168, 75, .05) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav-panel a {
  font-family: var(--ff-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.3;
  letter-spacing: -.01em;
  transition: all .3s;
  display: block;
  text-align: center;
}

.mobile-nav-panel a:hover {
  color: var(--gold);
  transform: translateX(10px);
}

.mobile-nav-panel .mob-footer {
  position: absolute;
  bottom: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--hdr-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
      rgba(8, 8, 8, .95) 0%, rgba(8, 8, 8, .78) 38%,
      rgba(8, 8, 8, .50) 60%, rgba(8, 8, 8, .88) 100%);
}

/* canvas for particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0 100px;
  width: 100%;
}

/* Left text */
.hero-text {}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  padding: 7px 18px 7px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .7s var(--ease) .1s both;
}

.hero-kicker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-kicker-dot i {
  font-size: 11px;
  color: var(--bg-0);
}

.hero-kicker span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: 1.0;
  margin-bottom: 26px;
  animation: fadeUp .85s var(--ease) .25s both;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, .42);
  font-size: .65em;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

.hero-title strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 30%, var(--gold-lt) 60%, var(--gold) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: txt-shimmer 4s linear infinite;
}

.hero-desc {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--tx-2);
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) .4s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1s var(--ease) .55s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  animation: fadeUp 1s var(--ease) .7s both;
}

.hs-num {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hs-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-top: 4px;
}

/* Right visual card */
.hero-card {
  position: relative;
  animation: fadeUp 1.1s var(--ease) .3s both;
}

.hero-card-inner {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  background: var(--bg-2);
  position: relative;
}

.hero-card-inner img,
.hero-card-ph {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-card-ph {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.hero-card-badge {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--br-2);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hcb-name {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hcb-sub {
  font-size: 12px;
  color: var(--tx-3);
}

.hcb-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.hcb-score {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

/* Decorative ring */
/* Hero Overlays */
.hero-overlays {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.hero-overlay-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--br-3);
  padding: 10px 20px;
  border-radius: var(--r-md);
  min-width: 260px;
}

.hero-overlay-card img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.ho-txt {
  display: flex;
  flex-direction: column;
}

.ho-txt strong {
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--gold);
}

.ho-txt span {
  font-size: 12px;
  color: var(--tx-3);
}

.hero-ring::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, .20);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero-scroll-cue span {
  font-size: 15px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(200, 168, 75, .55), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─────────────────────────────────────────────────────────────
   TICKER STRIP
───────────────────────────────────────────────────────────── */
.ticker-strip {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerMove 24s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bg-0);
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, .25);
  border-radius: 50%;
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT / DESCRIPTION SECTION
───────────────────────────────────────────────────────────── */
#about-desc {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

#about-desc::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, .04) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: text */
.about-text {}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--tx-2);
}

.feat-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  transition: background .3s;
}

.feat-row:hover .feat-icon {
  background: var(--gold-a20);
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-md);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--br-2);
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-top: 3px;
}

/* Right: image */
.about-imagery {
  position: relative;
}

.about-main-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--br-1);
  position: relative;
}

.about-main-wrap img,
.about-img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.about-main-wrap:hover img {
  transform: scale(1.04);
}

.about-img-ph {
  min-height: 480px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--gold);
  padding: 24px 20px;
  text-align: center;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(200, 168, 75, .40);
  z-index: 2;
}

.about-exp-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--bg-0);
  line-height: 1;
}

.about-exp-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .60);
}

.about-thumb {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 160px;
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--bg-1);
  z-index: 2;
}

.about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thumb-ph {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* ─────────────────────────────────────────────────────────────
   BRAND SLIDER
───────────────────────────────────────────────────────────── */
#brands {
  background: var(--bg-2);
  border-top: 1px solid var(--br-1);
  border-bottom: 1px solid var(--br-1);
  padding: 52px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .20);
  margin-bottom: 28px;
}

.brands-overflow {
  position: relative;
  overflow: hidden;
}

.brands-overflow::before,
.brands-overflow::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-overflow::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}

.brands-overflow::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-2), transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  animation: brandScroll 30s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandScroll {
  to {
    transform: translateX(-50%);
  }
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 90px;
  padding: 15px 35px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  white-space: nowrap;
  transition: all .4s var(--ease);
}

.brand-pill:hover {
  border-color: var(--br-3);
  background: var(--gold-a10);
}

.brand-pill img {
  max-height: 250px;
  width: auto;
  max-width: 150px;
  filter: brightness(1.1) contrast(1.1);
  opacity: 0.9;
  object-fit: contain;
  transition: all 0.4s var(--ease);
}

.brand-pill:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 75, 0.1);
}

.brand-pill:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.brand-pill span {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, .38);
  transition: color .3s;
  letter-spacing: .03em;
}

.brand-pill:hover span {
  color: var(--gold);
}

.brand-sep {
  color: var(--gold);
  opacity: .35;
  font-size: 9px;
  padding: 0 2px;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────────────────────── */
#services {
  background: var(--bg-0);
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}

.services-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.services-top-desc {
  font-size: 15px;
  color: var(--tx-3);
  line-height: 1.8;
  text-align: right;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: var(--bg-1);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .55s var(--ease);
  position: relative;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.svc-card:hover {
  transform: translateY(-10px);
  border-color: var(--br-3);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .5), 0 0 50px rgba(200, 168, 75, .1);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

/* Image */
.svc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.svc-card:hover .svc-img img {
  transform: scale(1.09);
}

.svc-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  transition: transform .8s var(--ease);
}

.svc-card:hover .svc-img-ph {
  transform: scale(1.05);
}

.svc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--bg-0);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

/* Card number stamp */
.svc-stamp {
  position: absolute;
  top: 220px;
  right: 16px;
  transform: translateY(-55%);
  font-family: var(--ff-stamp);
  font-size: 72px;
  color: rgba(200, 168, 75, .07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Body */
.svc-body {
  padding: 26px 26px 30px;
}

.svc-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 15px;
  color: var(--tx-3);
  line-height: 1.75;
  margin-bottom: 18px;
}

.svc-feats {
  margin-bottom: 22px;
}

.svc-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tx-3);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.svc-feat i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.svc-price {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--tx-3);
  -webkit-text-fill-color: var(--tx-3);
}

/* ─────────────────────────────────────────────────────────────
   SPECIALIZED SERVICES LAYOUT
───────────────────────────────────────────────────────────── */
.svc-section-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 4vw, 36px);
  margin: 100px 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  /* Prevent line from pushing out */
}

.svc-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--br-2), transparent);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.package-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  padding: 40px 32px;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-2) 10%, rgba(200, 168, 75, 0.05) 100%);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.p-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.p-name {
  font-family: var(--ff-display);
  font-size: 28px;
  margin-bottom: 24px;
}

.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.p-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--tx-3);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p-features li i {
  color: var(--gold);
  font-size: 15px;
}

.p-pricing {
  margin-top: auto;
}

.p-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.p-price-lbl {
  font-size: 12px;
  color: var(--tx-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-price-val {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* New Interactive Images */
.p-card-img {
  width: calc(100% + 64px);
  height: 200px;
  margin: -40px -32px 32px;
  overflow: hidden;
  position: relative;
}

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

.package-card:hover .p-card-img img {
  transform: scale(1.1);
}

.wrap-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.wrap-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: transform 10s linear;
}

.wrap-banner:hover .wrap-banner-img img {
  transform: scale(1.1);
}

/* Vinyl Wrap specific */
.package-card.featured .p-card-img {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Full Detail Section Enhancement */
.wrap-banner {
  background: var(--bg-0);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  padding: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.wrap-banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.wrap-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  transition: transform 12s ease-out;
}

.wrap-banner:hover .wrap-banner-img img {
  transform: scale(1.15);
}

.wrap-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-0) 25%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.wrap-content {
  flex: 1.2;
  position: relative;
  z-index: 2;
  padding: 80px 60px;
}

.wrap-prices {
  flex: 0.8;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 60px;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.wrap-price-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.wrap-price-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}

.wrap-price-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 168, 75, 0.5);
  transform: translateX(10px);
}

.wrap-price-item:hover::before {
  height: 100%;
}

@media (max-width: 991px) {
  .wrap-banner {
    flex-direction: column;
  }

  .wrap-content {
    padding: 60px 40px;
    flex: none;
  }

  .wrap-prices {
    flex: none;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .wrap-content {
    padding: 40px 24px;
  }

  .wrap-prices {
    padding: 30px 20px;
  }

  .wrap-price-item {
    padding: 20px;
  }

  .wrap-price-item .p-price-val {
    font-size: 28px;
  }

  .wrap-content .svc-feats {
    grid-template-columns: 1fr !important;
  }
}

.wrap-price-item .p-tier {
  font-size: 15px;
  color: var(--tx-3);
  margin: 0;
}

.wrap-price-item .p-price-val {
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

@media (max-width: 991px) {
  .wrap-banner {
    flex-direction: column;
  }

  .wrap-content {
    padding: 60px 40px;
    flex: none;
  }

  .wrap-prices {
    flex: none;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
  }

  .svc-bottom-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .wrap-content {
    padding: 40px 24px;
  }

  .wrap-prices {
    padding: 30px 20px;
  }

  .wrap-price-item {
    padding: 24px 20px;
  }

  .wrap-price-item .p-price-val {
    font-size: 30px;
  }

  .wrap-content .svc-feats {
    grid-template-columns: 1fr !important;
  }
}

/* Global Mobile Polish */
@media (max-width: 576px) {

  .ppf-card-overlap,
  .int-price-tag {
    padding: 25px;
  }
}

/* Redesigned Brochure Styles Final Polish */
.brochure-section .h2 {
  font-size: 42px;
}

.brochure-section .body-copy {
  line-height: 1.8;
}

@media (max-width: 991px) {
  .brochure-section .h2 {
    font-size: 32px;
  }

  .int-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .int-subtitle-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 60px 0;
  }

  .h2 {
    font-size: 32px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .eyebrow {
    font-size: 15px;
  }

  .gold-bar {
    width: 40px;
  }

  .package-card {
    padding: 32px 24px;
  }
}

/* Redesigned Bottom Section: Vinyl & Add-ons */
.svc-bottom-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.vinyl-showcase-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vinyl-image-box {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.vinyl-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.vinyl-showcase-card:hover .vinyl-image-box img {
  transform: scale(1.1);
}

/* Gold Gradient Overlay on Image */
.vinyl-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-2) 0%, transparent 50%);
}

.vinyl-info {
  padding: 40px;
  flex: 1;
}

/* Add-ons Sleek Redesign */
.addons-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-1);
  border: 1px solid var(--br-1);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.addon-row:hover {
  background: var(--bg-0);
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.addon-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.addon-price {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--ff-display);
}

/* Mobile Breakpoints for Bottom section */
@media (max-width: 992px) {
  .svc-bottom-showcase {
    grid-template-columns: 1fr;
  }

  .vinyl-info {
    padding: 32px 24px;
  }

  .addons-card {
    padding: 32px 24px;
  }

  .addon-row:hover {
    transform: none;
  }
}

/* Ceramic Grid Polish for Mobile */
@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.svc-btn-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  transition: all .35s var(--ease);
  flex-shrink: 0;
  text-decoration: none;
}

.svc-card:hover .svc-btn-ico {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
}

/* Brochure Style Sections */
.brochure-section {
  padding: 50px 0;
  position: relative;
}

/* Premium Interior Showcase (Rectangular) */
.int-image-showcase {
  position: relative;
  width: 100%;
  padding: 20px;
}

.int-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid var(--br-1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.6s var(--ease);
}

.int-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.int-image-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 2px solid var(--gold-a20);
  border-radius: var(--r-xl);
  z-index: 1;
  transform: translate(-10px, -10px);
  transition: all 0.6s var(--ease);
}

.int-image-showcase:hover .int-img-box {
  transform: translateY(-15px) rotate(1deg);
  border-color: var(--gold);
}

.int-image-showcase:hover .int-img-box img {
  transform: scale(1.1);
}

/* ——————————————————————————————————————————————————————————————————————
   BROCHURE SECTIONS (Interior, PPF, Tinting)
   —————————————————————————————————————————————————————————————————————— */
.brochure-section {
  padding: 100px 0;
  overflow: visible;
  position: relative;
}

.int-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.int-grid.brochure-reverse {
  grid-template-columns: 1.2fr 1fr;
}

/* On Desktop, flip the order for 'reverse' layout */
@media (min-width: 992px) {
  .brochure-reverse>.reveal:first-child {
    order: 2;
  }

  .brochure-reverse>.reveal:last-child {
    order: 1;
  }
}

.int-image-showcase {
  position: relative;
  width: 100%;
}

.int-img-box {
  position: relative;
  z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--br-1);
  height: 480px;
}

.int-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease);
}

.int-image-showcase:hover img {
  transform: scale(1.05);
}

/* Removed background gold borders as per request */
.int-image-showcase::after {
  display: none;
}

/* Subtitle with gold lines */
.int-subtitle-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  /* Prevent lines from pushing out on mobile */
  justify-content: flex-start;
}

.int-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}

.int-subtitle {
  font-family: var(--ff-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tx-1);
  white-space: nowrap;
}

.int-price-tag {
  background: #080808;
  border: 1px solid var(--br-2);
  padding: 40px;
  border-radius: var(--r-xl);
  margin-top: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.p-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p-price-row:last-child {
  border-bottom: none;
}

.p-price-lbl {
  color: var(--tx-2);
  font-size: 15px;
}

.p-price-val {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--ff-display);
  font-size: 20px;
}

@media (max-width: 991px) {
  .brochure-section {
    padding: 60px 0;
  }

  .int-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .int-price-tag {
    padding: 30px;
  }

  .int-subtitle-wrap {
    justify-content: center;
  }

  .int-img-box {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    /* Keep it square/circular on mobile */
  }
}

@media (max-width: 576px) {
  .int-price-tag {
    padding: 25px;
  }

  .p-price-val {
    font-size: 18px;
  }
}

/* Additional Services Showcase */
.ext-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.ext-service-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ext-svc-content {
  padding: 40px;
  flex: 1;
}

.ext-svc-img-wrap {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.ext-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .int-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .brochure-img-circle {
    max-width: 400px;
    margin: 0 auto;
  }

  .ext-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   FAQs
───────────────────────────────────────────────────────────── */
#faqs {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

#faqs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200, 168, 75, .025) 0%, transparent 70%);
  pointer-events: none;
}

.faqs-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.faqs-left {
  position: sticky;
  top: 96px;
}

.faqs-left-img {
  margin-top: 32px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--br-2);
}

.faqs-left-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.faqs-left-img-ph {
  height: 280px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--br-1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--br-2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  gap: 14px;
}

.faq-q-txt {
  font-size: 15px;
  font-weight: 500;
  color: var(--tx-1);
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--br-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 300;
  transition: all .4s var(--ease);
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  transform: rotate(45deg);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.faq-ans-inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--tx-3);
  line-height: 1.82;
  border-top: 1px solid var(--br-1);
  padding-top: 16px;
}

.faq-item.open .faq-ans {
  max-height: 350px;
}

/* PPF Section Specific Spacing */
.ppf-grid-section .cer-title-wrap {
  margin-bottom: 90px !important;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────────────────── */
#contact-sec {
  background: var(--bg-1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}

/* Info column */
.contact-info-wrap {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--br-2);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  height: fit-content;
}

.cinfo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.cinfo-item:last-child {
  border-bottom: none;
}

.cinfo-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  transition: all .3s;
}

.cinfo-item:hover .cinfo-ico {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
}

.cinfo-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-bottom: 4px;
}

.cinfo-val {
  font-size: 15px;
  color: var(--tx-2);
  font-weight: 500;
}

.cinfo-val a {
  color: var(--tx-2);
}

.cinfo-val a:hover {
  color: var(--gold);
}

.social-chips {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.soc-chip {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--br-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx-3);
  font-size: 15px;
  transition: all .3s;
}

.soc-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-a10);
  transform: translateY(-3px);
}

/* Form column */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  padding: 44px 40px;
}

.form-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 15px;
  color: var(--tx-3);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
}

.form-grp.span-2 {
  grid-column: span 2;
}

.form-grp label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tx-3);
}

.form-grp input,
.form-grp textarea,
.form-grp select {
  background: var(--bg-1);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--tx-1);
  outline: none;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
}

.form-grp input:focus,
.form-grp textarea:focus,
.form-grp select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, .10);
}

.form-grp input::placeholder,
.form-grp textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

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

.form-grp select option {
  background: var(--bg-1);
}

.form-submit {
  width: 100%;
  height: 54px;
  font-size: 15px;
  margin-top: 22px;
}

.form-ok {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-ok .ok-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 14px;
}

.form-ok h4 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-ok p {
  color: var(--tx-3);
  font-size: 15px;
}

/* CF7 Overrides */
.cf7-style-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf7-style-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf7-style-wrap .form-grp {
  margin-bottom: 0px;
}

.cf7-style-wrap .wpcf7-form-control-wrap {
  width: 100%;
}

.cf7-style-wrap input:not([type="submit"]),
.cf7-style-wrap textarea,
.cf7-style-wrap select {
  background: var(--bg-1);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--tx-1);
  outline: none;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
}

.cf7-style-wrap input:focus,
.cf7-style-wrap textarea:focus,
.cf7-style-wrap select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, .10);
}

.cf7-style-wrap .wpcf7-submit {
  width: 100%;
  height: 54px;
  margin-top: 10px;
  cursor: pointer;
  /* Re-applying btn styles as CF7 might not have the span/i for advanced animation if user just pastes a standard [submit] */
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  background-size: 200%;
  color: var(--bg-0);
  border-radius: var(--r-sm);
  box-shadow: 0 6px 28px rgba(200, 168, 75, .30);
  border: none;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .45s var(--ease);
}

.cf7-style-wrap .wpcf7-submit:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 168, 75, .45);
}

/* Response messaging */
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px 20px !important;
  border-radius: var(--r-md) !important;
  font-size: 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--br-1) !important;
  color: var(--tx-3) !important;
  text-align: center !important;
}

.wpcf7-mail-sent-ok {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.wpcf7-not-valid-tip {
  color: #ff4d4d !important;
  font-size: 12px !important;
  margin-top: 5px !important;
}

@media (max-width: 768px) {
  .cf7-style-wrap .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
#colophon {
  background: var(--bg-0);
  border-top: 1px solid var(--br-1);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--br-1);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 16px;
  color: var(--tx-3);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--tx-3);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .25s;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s;
}

.footer-links a:hover {
  color: var(--tx-1);
  padding-left: 5px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--tx-3);
}

.footer-copy a {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--tx-3);
  font-size: 15px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 11px;
  width: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--tx-3);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: var(--hdr-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .95) 0%, rgba(8, 8, 8, .55) 60%, rgba(8, 8, 8, .28) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-hero-content h1 strong {
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
}

.breadcrumb a {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE EXTRAS
───────────────────────────────────────────────────────────── */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.val-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}

.val-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0);
  transition: transform .45s var(--ease);
}

.val-card:hover {
  transform: translateY(-6px);
  border-color: var(--br-2);
}

.val-card:hover::after {
  transform: scaleX(1);
}

.val-ico {
  font-size: 38px;
  margin-bottom: 14px;
}

.val-card h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.val-card p {
  font-size: 13.5px;
  color: var(--tx-3);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--bg-2);
  border: 1px solid var(--br-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .5s var(--ease);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--br-2);
  box-shadow: 0 36px 72px rgba(0, 0, 0, .4);
}

.team-photo {
  height: 310px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.07);
}

.team-photo-ph {
  height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.team-info {
  padding: 22px 22px 26px;
}

.team-info h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-bio {
  font-size: 13.5px;
  color: var(--tx-3);
  line-height: 1.7;
  margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────────
   GALLERY FILTER & GRID
───────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--br-1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx-3);
  transition: all .3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform .5s var(--ease);
}

.g-item:hover {
  transform: scale(1.015);
  z-index: 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

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

.g-item-ph {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--tx-4);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .90) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

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

.g-cap {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.g-sub {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.g-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 8, 8, .55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx-1);
  font-size: 13px;
  opacity: 0;
  transform: scale(.7);
  transition: all .35s var(--ease);
}

.g-item:hover .g-zoom {
  opacity: 1;
  transform: scale(1);
}

.g-item.wide {
  grid-column: span 2;
}

.g-item.tall {
  grid-row: span 2;
}

/* ─────────────────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────────────────── */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.lb.show {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-lg);
}

.lb-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx-1);
  font-size: 18px;
  cursor: pointer;
  transition: all .3s;
}

.lb-close:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--bg-0);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px) scale(.85);
  transition: all .4s var(--ease);
  box-shadow: 0 6px 24px rgba(200, 168, 75, .35);
}

#btt.visible {
  opacity: 1;
  transform: none;
}

#btt:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(200, 168, 75, .50);
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL CLASSES
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-r {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-s {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.is-visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .10s;
}

.d2 {
  transition-delay: .20s;
}

.d3 {
  transition-delay: .30s;
}

.d4 {
  transition-delay: .40s;
}

.d5 {
  transition-delay: .50s;
}

/* ─────────────────────────────────────────────────────────────
   ENTRY CONTENT (default page)
───────────────────────────────────────────────────────────── */
.entry-content h2,
.entry-content h3 {
  font-family: var(--ff-display);
  color: var(--tx-1);
  margin: 28px 0 12px;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIAL SECTION (PREMIUM INTERACTIVE)
───────────────────────────────────────────────────────────── */
#testimonials {
  background: #080808;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testi-bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.testimonial-head {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.gold-quote {
  font-size: 50px;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 10px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.testimonial-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
}

.gold-underline {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.testimonial-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 580px;
  position: relative;
}

.testimonial-card {
  position: absolute;
  text-align: center;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 60px 40px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.6s var(--ease);
}

.testimonial-card.active {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-card:hover {
  border-color: var(--gold-a35);
  transform: translateY(-10px);
}

.t-avatar-inner {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-a35);
  color: var(--gold);
}

.t-avatar-icon {
  font-size: 80px;
}

.t-avatar-icon-small {
  font-size: 100px;
  color: var(--gold);
  opacity: 0.5;
}

.t-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 5px;
}

.t-loc {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tx-3);
  margin-bottom: 25px;
}

.t-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--tx-2);
  font-style: italic;
  margin-bottom: 30px;
}

.t-rating-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.t-rating-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
}

.t-rating-score {
  font-size: 15px;
  color: var(--tx-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.t-preview {
  position: absolute;
  opacity: 0.15;
  transform: scale(0.6);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}

.t-preview.left {
  left: 0;
}

.t-preview.right {
  right: 0;
}

.t-avatar-preview {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-1);
}

.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 20;
}

.t-prev,
.t-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-a10);
  border: 1px solid var(--br-2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  cursor: pointer;
}

.t-prev:hover,
.t-next:hover {
  background: var(--gold);
  color: var(--bg-0);
  transform: scale(1.1);
}

.t-dots {
  display: flex;
  gap: 12px;
}

.t-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.t-dots span.active {
  background: var(--gold);
  width: 24px;
  border-radius: 10px;
}

@media(max-width: 900px) {
  .t-preview {
    display: none;
  }

  .testimonial-card {
    padding: 40px 25px;
  }
}

.entry-content p {
  color: var(--tx-2);
  margin-bottom: 16px;
  line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
  padding-left: 20px;
  color: var(--tx-3);
  margin-bottom: 16px;
  line-height: 1.8;
}

.entry-content a {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media(max-width:1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-top {
    grid-template-columns: 1fr;
  }

  .services-top-right {
    align-items: flex-start;
  }

  .services-top-desc {
    text-align: left;
  }

  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .faqs-left {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  :root {
    --hdr-h: 66px;
  }

  .page-hero {
    height: 280px;
    padding-bottom: 30px;
  }

  .main-nav,
  .hdr-phone,
  .hdr-actions .btn-primary {
    display: none;
  }

  .burger {
    display: flex;
  }

  .container {
    padding: 0 18px;
  }

  .section-pad {
    padding: 10px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand img,
  .footer-desc,
  .footer-links,
  .footer-contact-item {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-grp.span-2 {
    grid-column: span 1;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .contact-info-wrap {
    padding: 30px 22px;
  }

  .about-exp-badge {
    right: 8px;
    bottom: -12px;
  }

  .about-thumb {
    display: none;
  }

  .g-item.wide {
    grid-column: span 1;
  }

  .g-item.tall {
    grid-row: span 1;
  }

  .vals-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .page-hero {
    height: 240px;
    padding-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:360px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn {
    padding: 0 18px;
    height: 44px;
    font-size: 11px;
  }

  .hero-btns {
    gap: 10px;
  }

  .contact-info-wrap,
  .contact-form-wrap {
    padding: 28px 18px;
  }

  .cinfo-val {
    word-break: break-all;
    font-size: 14px;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-brand img,
  .footer-desc,
  .footer-links,
  .footer-contact-item {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .footer-contact-item {
    word-break: break-all;
    font-size: 14px;
  }

  .gallery-nav {
    gap: 10px;
  }

  .gallery-prev,
  .gallery-next {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .gallery-dots {
    gap: 6px;
  }

  .gallery-dots span.active {
    width: 18px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-stat-num {
    font-size: 38px;
  }
}

/* ─────────────────────────────────────────────────────────────
   GALLERY SLIDER (About Page)
   ───────────────────────────────────────────────────────────── */
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.gallery-slider {
  overflow: hidden;
  cursor: grab;
}

.gallery-slider:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  gap: 20px;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
}

.gallery-img-inner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--br-1);
  background: var(--bg-3);
}

.gallery-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

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

.gallery-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.gallery-img-overlay i {
  color: var(--gold);
  font-size: 24px;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}

.gallery-slide:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-slide:hover .gallery-img-overlay i {
  transform: translateY(0);
}

/* About Stats */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.about-stat-num {
  font-family: var(--ff-display);
  font-size: 54px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-top: 8px;
}

/* End of brochure styles consolidated above */

/* Nav */
.gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.gallery-prev,
.gallery-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-size: 16px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  /* Centered in flex nav now */
}

.gallery-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.gallery-dots span.active {
  background: var(--gold);
  width: 32px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-nav {
    gap: 15px;
    margin-top: 40px;
  }

  .gallery-prev,
  .gallery-next {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .gallery-dots {
    gap: 8px;
  }

  .gallery-dots span.active {
    width: 24px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────
   LIGHTBOX MODAL
   ───────────────────────────────────────────────────────────── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
  margin: 0 -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 1400px) {
  .lightbox-prev {
    margin-left: 10px;
  }

  .lightbox-next {
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    height: 60vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .lightbox-close {
    top: -50px;
    font-size: 24px;
  }
}