/* ===================================================
   HOME PAGE — LUXURY GLASS OVERHAUL
   Layered glassmorphism, ambient orbs, gradient
   section backgrounds for a premium, pleasant feel.
   =================================================== */

/* =========================================
   HERO — FROSTED DARK GLASS PANEL
   ========================================= */

.hero__glass-panel {
  background: rgba(6, 14, 28, 0.42);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(2rem, 4.5vw, 3.5rem) clamp(2.5rem, 7vw, 5rem);
  box-shadow:
    0 12px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Gold top hairline shimmer */
.hero__glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.7), transparent);
}

/* Subtle bottom highlight */
.hero__glass-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* =========================================
   TRUST STRIP — PEARL GLASS BADGES
   ========================================= */

.trust-strip {
  background: linear-gradient(155deg, #fdfaf4 0%, #f8f5ee 35%, #f2f6fd 70%, #fdfaf4 100%);
  overflow: hidden;
}

/* Ambient gold orb */
.trust-strip::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.07), transparent 65%);
  top: -350px;
  right: 5%;
  pointer-events: none;
}

.trust-strip .logo-row__item {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 6px 32px rgba(27, 58, 107, 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.trust-strip .logo-row__item:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 44px rgba(27, 58, 107, 0.13),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  transform: translateY(-6px) perspective(1200px) rotateZ(1.5deg);
  filter: drop-shadow(0 10px 20px rgba(27, 58, 107, 0.12));
}

/* =========================================
   WHAT WE DO — HUMAN DEVELOPMENT CATALYSTS
   ========================================= */

.what-we-do-section {
  background: linear-gradient(140deg, #ffffff 0%, #f8f5ee 40%, #eef3fc 80%, #f8f5ee 100%);
  overflow: hidden;
}

/* Ambient navy orb — bottom left */
.what-we-do-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(27, 58, 107, 0.04), transparent 65%);
  bottom: -300px;
  left: -200px;
  pointer-events: none;
}

/* Ambient gold orb — top right */
.what-we-do-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.055), transparent 65%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

/* ---- Section Header ---- */
.hdc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--spacing-4xl);
  position: relative;
  z-index: 1;
}

.hdc-heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-dark);
  margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.hdc-heading em {
  color: var(--accent-gold);
  font-style: italic;
}

.hdc-subtext {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-mid);
}

/* ---- 4 Pillar Cards ---- */
.hdc-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.hdc-pillar {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  padding: var(--spacing-2xl) var(--spacing-xl);
  transition: all 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 4px 24px rgba(27, 58, 107, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  position: relative;
  overflow: hidden;
}

/* Gold sweep line at top on hover */
.hdc-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}

/* Shimmer sweep on hover */
.hdc-pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.hdc-pillar:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 151, 58, 0.2);
  box-shadow:
    0 20px 56px rgba(27, 58, 107, 0.13),
    0 0 0 1px rgba(201, 151, 58, 0.1),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.hdc-pillar:hover::before {
  opacity: 1;
}

.hdc-pillar:hover::after {
  left: 160%;
}

/* Large faint watermark number */
.hdc-pillar__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.07;
  display: block;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
  transition: opacity 0.32s ease;
}

.hdc-pillar:hover .hdc-pillar__num {
  opacity: 0.12;
}

/* Gold accent rule */
.hdc-pillar__rule {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(201, 151, 58, 0.2));
  margin-bottom: var(--spacing-lg);
  border: none;
  transition: width 0.32s ease;
}

.hdc-pillar:hover .hdc-pillar__rule {
  width: 4rem;
}

/* Pillar title */
.hdc-pillar__title {
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

/* Pillar description */
.hdc-pillar__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-mid);
}

/* Responsive */
@media (max-width: 900px) {
  .hdc-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hdc-pillars {
    grid-template-columns: 1fr;
  }

  .hdc-header {
    margin-bottom: var(--spacing-2xl);
  }
}

/* =========================================
   PRODUCT SOLUTIONS — DEEP GLASS CARDS
   ========================================= */

.product-solutions-section {
  background: linear-gradient(155deg, #060e1c 0%, #0e1c33 45%, #111a2e 80%, #080f1e 100%);
  overflow: hidden;
}

/* Gold ambient orb top-right */
.product-solutions-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.07), transparent 65%);
  top: -250px;
  right: -200px;
  pointer-events: none;
}

/* Navy ambient orb bottom-left */
.product-solutions-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(42, 82, 152, 0.18), transparent 65%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

.product-solutions-section .luxury-card {
  background: rgba(20, 36, 64, 0.72);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(201, 151, 58, 0.16);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.product-solutions-section .luxury-card:hover {
  background: rgba(26, 46, 80, 0.82);
  border-color: rgba(201, 151, 58, 0.24);
  border-top-color: rgba(201, 151, 58, 0.5);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(201, 151, 58, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* =========================================
   INDUSTRIES — EDITORIAL SPLIT + GLASS PILLS
   ========================================= */

.industries-section {
  background: linear-gradient(155deg, #ffffff 0%, #f5f0e8 25%, #eef3fc 60%, #f8f5ee 100%);
  overflow: hidden;
}

/* Ambient navy orb — top center */
.industries-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(27, 58, 107, 0.03), transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Ambient gold orb — bottom right */
.industries-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.05), transparent 65%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

/* Two-column editorial layout */
.industries-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-4xl);
  align-items: start;
}

/* ---- Left: Sticky editorial ---- */
.industries-editorial {
  position: sticky;
  top: calc(60px + var(--spacing-2xl));
}

.industries-editorial__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.industries-editorial__rule {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-bottom: var(--spacing-xl);
  border: none;
}

.industries-editorial__body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-mid);
  margin-bottom: var(--spacing-2xl);
}

.industries-editorial__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gold-hairline);
}

.industries-editorial__stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent-gold);
}

.industries-editorial__stat-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
}

/* ---- Right: Flex-wrap pill cloud ---- */
.industries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-content: flex-start;
  padding-top: var(--spacing-sm);
}

/* Individual frosted glass pill */
.industries-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.35rem;
  box-shadow:
    0 2px 16px rgba(27, 58, 107, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  cursor: default;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Gold shimmer sweep on hover */
.industries-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.10), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.industries-pill:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(201, 151, 58, 0.35);
  box-shadow:
    0 8px 28px rgba(27, 58, 107, 0.11),
    0 0 0 1px rgba(201, 151, 58, 0.15),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  transform: translateY(-3px);
}

.industries-pill:hover::before {
  left: 150%;
}

.industries-pill__icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.industries-pill__name {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 960px) {
  .industries-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .industries-editorial {
    position: static;
  }

  .industries-editorial__heading {
    display: inline;
  }
}

@media (max-width: 600px) {
  .industries-pill__name {
    white-space: normal;
  }

  .industries-pill {
    width: 100%;
  }
}

/* =========================================
   STATS — WARM GLASS CARDS
   ========================================= */

.stats-section {
  background: linear-gradient(155deg, #fdf9f0 0%, #fbf4e8 50%, #f8f5ee 100%);
  overflow: hidden;
}

/* Center ambient gold halo */
.stats-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.05), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-section .stat-luxury-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.90);
  box-shadow:
    0 4px 28px rgba(27, 58, 107, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  margin: var(--spacing-md);
}

.stats-section .stat-luxury-item:hover {
  background: rgba(255, 255, 255, 0.90);
  box-shadow:
    0 10px 40px rgba(27, 58, 107, 0.11),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  transform: translateY(-8px);
}

/* Glass tiles provide their own separation — hide the divider rule */
.stats-section .stat-luxury-item + .stat-luxury-item::before {
  display: none;
}

/* =========================================
   TESTIMONIALS — DEEP FROSTED GLASS
   ========================================= */

.testimonials-section {
  background: linear-gradient(155deg, #141e2e 0%, #0e1c33 40%, #0a1420 75%, #141e2e 100%);
  overflow: hidden;
}

/* Gold ambient orb top-right */
.testimonials-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.07), transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* Navy ambient orb bottom-left */
.testimonials-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(42, 82, 152, 0.12), transparent 65%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.testimonials-section .testimonial-luxury-slide {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(36px) saturate(150%);
  -webkit-backdrop-filter: blur(36px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 8px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 80px rgba(201, 151, 58, 0.04);
  position: relative;
}

/* Gold top hairline on testimonial slide */
.testimonials-section .testimonial-luxury-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.48), transparent);
}

/* =========================================
   GOOGLE REVIEWS — LIGHT GLASS CARDS
   ========================================= */

.reviews-section {
  background: linear-gradient(155deg, #eef3fc 0%, #f4f0e8 40%, #f0f4fa 80%, #f8f5ee 100%);
  overflow: hidden;
}

/* Ambient gold orb top-right */
.reviews-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.05), transparent 65%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.reviews-section .google-review-card {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 4px 28px rgba(27, 58, 107, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
}

.reviews-section .google-review-card:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 48px rgba(27, 58, 107, 0.11),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

/* =========================================
   LET'S CONNECT — DARK SPLIT REDESIGN
   ========================================= */

.contact-section {
  background: linear-gradient(155deg, #060e1c 0%, #0e1c33 45%, #111a2e 80%, #080f1e 100%);
  overflow: hidden;
}

/* Gold ambient orb top-left */
.contact-section::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 58, 0.08), transparent 65%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

/* Navy ambient orb bottom-right */
.contact-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(42, 82, 152, 0.15), transparent 65%);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

/* Two-column split */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

/* ---- Left: Info Panel ---- */
.contact-info-panel {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: var(--spacing-2xl) var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

/* Gold top hairline */
.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.65), transparent);
}

.contact-info__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-white);
  margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.contact-info__body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: var(--spacing-2xl);
}

.contact-info__items {
  border-top: 1px solid rgba(201, 151, 58, 0.18);
  padding-top: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 151, 58, 0.12);
  border: 1px solid rgba(201, 151, 58, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-normal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a.contact-info__value:hover {
  color: var(--accent-gold);
}

/* Override btn-primary colors for dark context — keep the gold */
.contact-info-panel .btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  box-shadow: 0 4px 24px rgba(201, 151, 58, 0.25);
}

.contact-info-panel .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201, 151, 58, 0.40);
  transform: translateY(-2px);
}

/* ---- Right: Form Panel ---- */
.contact-form-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

/* Gold top hairline */
.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.5), transparent);
}

/* Form labels */
.contact-form-panel .form-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

/* Inputs — dark glass style */
.contact-form-panel .form-input,
.contact-form-panel .form-textarea,
.contact-form-panel .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--fs-base);
  font-family: var(--font-body);
  color: var(--text-white);
  width: 100%;
  transition: all var(--transition-normal);
}

.contact-form-panel .form-input::placeholder,
.contact-form-panel .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form-panel .form-input:focus,
.contact-form-panel .form-textarea:focus,
.contact-form-panel .form-select:focus {
  outline: none;
  border-color: rgba(201, 151, 58, 0.65);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 2px rgba(201, 151, 58, 0.18), 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.contact-form-panel .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9973A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-lg) center;
  padding-right: var(--spacing-3xl);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-panel .form-select option {
  background: #0e1c33;
  color: var(--text-white);
}

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

.contact-form-panel .form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.contact-form-panel .form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form-panel .form-checkbox label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  line-height: var(--lh-normal);
}

/* Full-width gold submit button with shimmer */
.contact-submit-btn {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  font-family: var(--font-label);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent-gold), #b8862e);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 151, 58, 0.38);
}

.contact-submit-btn:hover::before {
  left: 160%;
}

.contact-form__note {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-top: var(--spacing-md);
}

/* Dark-context micro-label */
.contact-section .text-micro-label {
  background: rgba(201, 151, 58, 0.12);
  border-color: rgba(201, 151, 58, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

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

/* =========================================
   GLOBAL MICRO-LABEL GLASS PILL
   ========================================= */

/* Upgrade .text-micro-label to a glass pill */
.text-micro-label {
  display: inline-block;
  background: rgba(201, 151, 58, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 151, 58, 0.30);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
}

/* On dark section backgrounds, the pill uses light glass */
.bg-navy .text-micro-label,
.bg-charcoal .text-micro-label,
.product-solutions-section .text-micro-label,
.testimonials-section .text-micro-label {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 151, 58, 0.40);
}
