/* Minaise Group — Premium UI */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --gold: #b8976a;
  --gold-hover: #d4ad72;
  --gold-dark: #9a7340;
  --gold-light: #e8d4b8;
  --gold-muted: rgba(196, 154, 92, 0.15);
  --ink: #0f1419;
  --ink-soft: #1e2832;
  --text: #4a5568;
  --text-light: #718096;
  --border: rgba(15, 20, 25, 0.08);
  --border-strong: rgba(15, 20, 25, 0.12);
  --white: #ffffff;
  --surface: #f7f8fa;
  --surface-elevated: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.04);
  --shadow: 0 8px 30px rgba(15, 20, 25, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 20, 25, 0.12);
  --shadow-gold: 0 12px 32px rgba(196, 154, 92, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
  --header-h: 76px;
  --max-w: 1200px;
  --section-pad: clamp(72px, 10vw, 110px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Sans', 'DM Sans', sans-serif;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.35rem); letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; }
h5 { font-size: 1rem; font-weight: 600; }

strong, .text-gold { color: var(--gold-dark); font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), height var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.logo:hover { transform: scale(1.02); opacity: 0.9; }

.logo img { height: 44px; width: auto; }

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

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  position: relative;
  transition: color 0.25s, background 0.25s;
}

.main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--ink);
  background: var(--gold-muted);
}

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

.main-nav .has-dropdown > a::after {
  display: none;
}

.main-nav .has-dropdown > a {
  padding-right: 28px;
}

.main-nav .has-dropdown > a::before {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: 1px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(-25%);
  transition: transform 0.25s;
}

.has-dropdown:hover > a::before {
  transform: translateY(-25%) rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s var(--ease-out), visibility 0.3s;
}

.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.sub-menu a:hover {
  background: var(--gold-muted);
  color: var(--gold-dark);
  padding-left: 18px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.menu-toggle:hover {
  background: var(--gold-muted);
  border-color: rgba(196, 154, 92, 0.3);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Hero ─── */
.hero-slider {
  position: relative;
  margin-top: var(--header-h);
  height: clamp(540px, 88vh, 760px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(202, 150, 83, 0.12) 0%, transparent 70%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 1.4s var(--ease-out), visibility 1.4s, z-index 0s 1.4s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 1.4s var(--ease-out), visibility 1.4s, z-index 0s;
}

.hero-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transition: opacity 1s var(--ease-out), visibility 1s;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 20, 25, 0.88) 0%, rgba(15, 20, 25, 0.5) 48%, rgba(15, 20, 25, 0.3) 100%),
    linear-gradient(to top, rgba(15, 20, 25, 0.65) 0%, transparent 45%);
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: -8%;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1.6s var(--ease-out), transform 8s var(--ease-out);
}

.hero-slide.active::after {
  opacity: 1;
  transform: scale(1);
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}

.hero-slide.is-leaving::after {
  animation: none;
  opacity: 0;
  transform: scale(1.04);
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.5%, -1%); }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px clamp(24px, 5vw, 64px) 100px;
  color: var(--white);
  pointer-events: none;
}

.hero-content.align-left {
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(24px, 10vw, 140px);
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 173, 114, 0.4);
  border-radius: var(--radius-pill);
  background: rgba(202, 150, 83, 0.12);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px);
}

.hero-content.hero-animate .hero-eyebrow {
  animation: heroFadeUp 0.7s 0.1s var(--ease-out) forwards;
}

.hero-content h2 {
  font-size: clamp(2.25rem, 6.5vw, 3.85rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(32px);
}

.hero-content.hero-animate h2 {
  animation: heroFadeUp 0.85s 0.2s var(--ease-out) forwards;
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(24px);
}

.hero-content.hero-animate .subtitle {
  animation: heroFadeUp 0.85s 0.4s var(--ease-out) forwards;
}

.hero-content.hero-animate .subtitle:nth-of-type(2) {
  animation-delay: 0.55s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-content .slide-num {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 173, 114, 0.6);
  margin-bottom: 4px;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-20px);
}

.hero-content.hero-animate .slide-num {
  animation: heroSlideIn 0.8s 0.05s var(--ease-out) forwards;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
    color: transparent;
  }
  to {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold-hover);
    -webkit-text-stroke: 0;
  }
}

.hero-content .highlight {
  color: var(--gold-hover);
  position: relative;
}

.hero-content .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: heroUnderline 0.8s 0.9s var(--ease-out) forwards;
}

@keyframes heroUnderline {
  to { transform: scaleX(1); }
}

/* Hero UI controls */
.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-counter {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: 48px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Instrument Sans', sans-serif;
  pointer-events: none;
}

.hero-counter-current {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.hero-slider.is-transitioning .hero-counter-current {
  transform: translateY(-8px);
  opacity: 0;
}

.hero-counter-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  align-self: center;
  position: relative;
  overflow: hidden;
}

.hero-counter-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--slide-progress, 33%);
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.hero-counter-total {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

.hero-bullets {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.hero-bullets button {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-bullets button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}

.hero-bullets button {
  position: relative;
  z-index: 1;
}

.hero-bullets button:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateX(6px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-bullets button.active {
  color: var(--white);
  border-color: var(--gold);
  transform: translateX(8px) scale(1.06);
  box-shadow: var(--shadow-gold);
}

.hero-bullets button.active::before {
  opacity: 1;
}

.hero-arrows {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: 48px;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.hero-arrow:active {
  transform: scale(0.96);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 11;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-hover), var(--gold));
  box-shadow: 0 0 12px rgba(202, 150, 83, 0.5);
  transition: width 0.08s linear;
}

.hero-decor {
  position: absolute;
  z-index: 2;
  max-width: min(400px, 42vw);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
  transform: translate(-50%, -50%) scale(0.92);
}

.hero-slide.active .hero-decor {
  animation: heroDecorIn 1.2s 0.3s var(--ease-out) forwards, heroFloat 7s 1.5s ease-in-out infinite;
}

@keyframes heroDecorIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88) rotate(-4deg);
  }
  to {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

.hero-decor.center {
  left: 50%;
  top: 50%;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  opacity: 0;
  animation: heroHintFade 1s 1.2s var(--ease-out) forwards;
  pointer-events: none;
}

.hero-scroll-hint::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold-hover);
  border-radius: 4px;
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes heroHintFade {
  to { opacity: 0.85; }
}

@keyframes scrollHint {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.25; transform: translateY(12px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(196, 154, 92, 0.4);
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-black {
  background: var(--ink);
  color: var(--white);
}

.btn-black:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.6875rem;
  margin-top: 12px;
  width: 100%;
}

/* ─── Services strip ─── */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin-top: -1px;
}

.service-card {
  padding: clamp(36px, 5vw, 48px) 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:last-child { border-right: none; }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}

.service-card:hover {
  background: var(--surface);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  z-index: 1;
}

.service-card:hover::before { width: 60%; }

.service-card img {
  width: 64px;
  margin: 0 auto 18px;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover img { transform: scale(1.08) translateY(-4px); }

.service-card h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.3s;
}

.service-card:hover h4 { color: var(--gold-dark); }

/* ─── About intro ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
}

.about-intro .content-side {
  padding: var(--section-pad) clamp(24px, 6vw, 80px) var(--section-pad) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 248, 250, 0.95) 100%),
    url('../images/bg-sec2.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro h5 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-intro h5 strong { color: var(--ink); }

.about-intro h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.65;
}

.about-intro p {
  margin-bottom: 16px;
  color: var(--text);
}

.stats-side {
  position: relative;
  padding: clamp(64px, 9vw, 96px) clamp(24px, 5vw, 48px);
  background: url('../images/bg-sec2-r-copy-2.jpg') center/cover no-repeat;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.stats-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(25, 18, 10, 0.22) 0%, rgba(55, 42, 28, 0.08) 42%, rgba(25, 18, 10, 0.18) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.stats-side::after {
  content: '';
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.stats-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 56px rgba(15, 20, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stats-highlight {
  margin-bottom: clamp(28px, 4vw, 36px);
  padding-bottom: clamp(24px, 3.5vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.progress-ring-wrap { text-align: center; }

.progress-ring-visual {
  position: relative;
  width: clamp(160px, 24vw, 188px);
  height: clamp(160px, 24vw, 188px);
  margin: 0 auto 20px;
}

.progress-ring-visual::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.progress-ring {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
}

.progress-ring circle {
  fill: none;
  stroke-width: 8;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring .bg { stroke: rgba(255, 255, 255, 0.28); }
.progress-ring .fg {
  stroke: url(#statsRingGradient);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.progress-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.15rem, 5.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.progress-label sup {
  font-size: 0.52em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  vertical-align: super;
}

.stats-side .progress-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: 4px;
}

.stat-item {
  padding: clamp(18px, 2.5vw, 22px) clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: calc(var(--radius) + 2px);
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  box-shadow:
    0 4px 20px rgba(15, 20, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-item:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(15, 20, 25, 0.12),
    0 0 0 1px rgba(184, 151, 106, 0.25);
}

.stat-item h5 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.03em;
}

.stat-item h5 span {
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .label {
  margin: 12px 0 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
}

.stats-buttons {
  margin-top: clamp(22px, 3.5vw, 30px);
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.stats-buttons .btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  padding: 14px 16px;
}

.btn-outline-gold {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.1);
}

.btn-outline-gold:hover {
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 20, 25, 0.14);
  border-color: var(--gold-light);
}

.stats-buttons .btn-gold {
  background: var(--ink);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(15, 20, 25, 0.22);
}

.stats-buttons .btn-gold:hover {
  background: var(--ink-soft);
  box-shadow: 0 10px 28px rgba(15, 20, 25, 0.28);
}

.about-intro.reveal.visible .stat-item {
  animation: statCardIn 0.65s var(--ease-out) backwards;
}

.about-intro.reveal.visible .stat-item:nth-child(1) { animation-delay: 0.08s; }
.about-intro.reveal.visible .stat-item:nth-child(2) { animation-delay: 0.16s; }
.about-intro.reveal.visible .stat-item:nth-child(3) { animation-delay: 0.24s; }
.about-intro.reveal.visible .stat-item:nth-child(4) { animation-delay: 0.32s; }

@keyframes statCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Sections ─── */
.section { padding: var(--section-pad) 0; }

.section-alt { background: var(--surface); }

.section-title { text-align: center; margin-bottom: 20px; }

.section-title h3 strong { color: var(--gold-dark); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 4px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 4px;
}

.section-desc {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}

/* Service tiles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-tile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-tile .bg-side {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.service-tile:hover .bg-side { transform: scale(1.06); }

.service-tile .text-side {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-tile img.icon {
  width: 56px;
  margin-bottom: 14px;
  transition: transform 0.4s var(--ease-out);
}

.service-tile:hover img.icon { transform: scale(1.1); }

.service-tile h2 {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Gallery */
.gallery-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--ink) url('../images/bg-galery-copy-1.png') center/cover no-repeat;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.88) 0%, rgba(15, 20, 25, 0.7) 100%);
}

.gallery-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.gallery-heading h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.gallery-heading h3 strong { color: var(--gold-hover); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}

.gallery-grid .item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-grid .item.large { grid-row: span 2; }
.gallery-grid .item.wide { grid-column: span 2; }

.gallery-grid .item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(196, 154, 92, 0.75);
  color: white;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-grid .item:hover::after { opacity: 1; }

/* Subsidiaries */
.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.subsidiary-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.subsidiary-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 154, 92, 0.25);
}

.subsidiary-card .thumb {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.subsidiary-card .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 25, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.subsidiary-card:hover .thumb::after { opacity: 1; }

.subsidiary-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.subsidiary-card:hover .thumb img { transform: scale(1.08); }

.subsidiary-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.subsidiary-card p {
  font-size: 0.875rem;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
  flex: 1;
  min-height: 4.8em;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subsidiary-card .btn-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 6px;
  width: auto;
  max-width: 9.5rem;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.subsidiary-card .btn-read:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Pillars */
.pillars-section {
  padding-top: 0;
  padding-bottom: var(--section-pad);
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 clamp(16px, 3vw, 32px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.35) 0%, rgba(15, 20, 25, 0.65) 100%);
  transition: background 0.4s;
}

.pillar-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.pillar-card:hover::before {
  background: linear-gradient(180deg, rgba(196, 154, 92, 0.25) 0%, rgba(15, 20, 25, 0.7) 100%);
}

.pillar-card img,
.pillar-card h3 { position: relative; z-index: 1; }

.pillar-card img {
  width: 72px;
  margin-bottom: 14px;
  transition: transform 0.4s var(--ease-out);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

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

.pillar-card h3 {
  font-size: 0.9375rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Page hero */
.page-hero {
  margin-top: var(--header-h);
  padding: clamp(100px, 18vw, 140px) 0 clamp(80px, 12vw, 100px);
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 20, 25, 0.78) 0%, rgba(15, 20, 25, 0.55) 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.breadcrumb {
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
}

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

.breadcrumb span { opacity: 0.5; margin: 0 4px; }

/* About page */
.about-hero-text {
  text-align: center;
  padding: clamp(56px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.about-hero-text h3 {
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-text .tagline {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.video-section {
  background: url('../images/41064584_thumb5_690x400.jpg') center/cover;
  padding: 72px 0;
  text-align: center;
  margin: 48px 0;
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-w) - 64px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.4);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 20px 48px rgba(196, 154, 92, 0.45);
}

.about-blocks { padding: 0 0 var(--section-pad); }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 56px) 0;
}

.about-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.about-block:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-block h3 {
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.about-block p { margin-bottom: 16px; }

.about-block ol {
  padding-left: 22px;
  margin: 18px 0;
}

.about-block ol li {
  list-style: decimal;
  margin-bottom: 10px;
  color: var(--text);
}

.story-banner {
  background: url('../images/about_us-1.png') center/cover;
  padding: clamp(100px, 14vw, 140px) 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.story-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.55);
}

.story-banner h3,
.story-banner h5 {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.story-banner h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 10px;
}

.story-banner h5 { font-weight: 400; opacity: 0.9; }

/* Partners */
.partners-carousel {
  overflow: hidden;
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-track {
  display: flex;
  gap: 48px;
  animation: scroll-partners 45s linear infinite;
  width: max-content;
}

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

.partners-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.4s, transform 0.4s var(--ease-out), opacity 0.4s;
}

.partners-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

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

/* Companies listing */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: clamp(48px, 8vw, 72px) 0 var(--section-pad);
}

.company-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(202, 150, 83, 0.35);
}

.company-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(202, 150, 83, 0.08) 100%);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}

.company-card:hover .company-card-brand {
  background: linear-gradient(180deg, #fff 0%, rgba(202, 150, 83, 0.12) 100%);
}

.company-card-logo {
  max-width: 88%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out);
}

.company-card:hover .company-card-logo { transform: scale(1.05); }

.company-card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.company-card h2 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.company-card h2:hover { color: var(--gold-dark); }

.company-card p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  min-height: 5.1em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.3s, color 0.25s;
}

.view-detail:hover {
  gap: 14px;
  color: var(--ink);
}

.view-detail .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.view-detail:hover .icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

/* Contact */
.contact-section-wrap {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.contact-box {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.35s;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(196, 154, 92, 0.25);
}

.contact-box img {
  width: 44px;
  margin-bottom: 18px;
  opacity: 0.85;
  transition: transform 0.35s var(--ease-out);
}

.contact-box:hover img { transform: scale(1.08); }

.contact-box p {
  color: var(--text);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.contact-box a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-box a:hover { color: var(--ink); }

.contact-form-section {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-section h3 {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-form-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.9375rem;
}

.form-message {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  min-height: 1.5em;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .full { grid-column: 1 / -1; }

.contact-form .field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(196, 154, 92, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-muted);
}

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

.contact-form .submit-wrap {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 8px;
}

.contact-form .btn-gold {
  min-width: 200px;
  padding: 16px 40px;
  font-size: 0.875rem;
}

/* CTA */
.cta-bar {
  position: relative;
  background: var(--ink) url('../images/bg-action-1024x201-2.png') center/cover no-repeat;
  padding: clamp(64px, 10vw, 88px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.75) 100%);
}

.cta-bar .container { position: relative; z-index: 1; }

.cta-bar h4 {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
}

.cta-bar a {
  color: var(--gold-hover);
  font-weight: 600;
  transition: color 0.25s, text-decoration 0.25s;
}

.cta-bar a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--text);
  padding: 0;
}

.footer-main {
  padding: clamp(56px, 8vw, 72px) 0 clamp(40px, 6vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact a {
  color: var(--gold-hover);
  font-weight: 500;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.copyright {
  color: var(--text);
  font-size: 0.875rem;
}

.copyright a {
  color: var(--gold-dark);
  transition: color 0.25s;
}

.copyright a:hover { color: var(--ink); }

/* Company detail */
.company-detail {
  padding: clamp(56px, 8vw, 80px) 0 var(--section-pad);
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 55%);
}

.company-detail .container {
  max-width: 960px;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.45s var(--ease-out), border-color 0.35s;
}

.company-profile:hover {
  box-shadow: 0 28px 60px rgba(15, 20, 25, 0.12);
  border-color: rgba(202, 150, 83, 0.3);
}

.company-profile-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 56px) clamp(28px, 4vw, 40px);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(202, 150, 83, 0.1) 100%);
  border-right: 1px solid var(--border);
  position: relative;
}

.company-profile-aside::after {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.company-logo-wrap {
  width: 100%;
  max-width: 240px;
  padding: clamp(24px, 4vw, 32px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.company-profile:hover .company-logo-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.company-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.company-profile-main {
  padding: clamp(36px, 5vw, 52px) clamp(32px, 5vw, 48px);
}

.company-body p {
  margin-bottom: 18px;
  font-size: 1.0125rem;
  line-height: 1.8;
  color: var(--text);
}

.company-body p:last-of-type { margin-bottom: 0; }

.company-body strong { color: var(--ink); }

.company-body a:not(.btn) {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.company-body a:not(.btn):hover { color: var(--ink); }

.company-list {
  margin: 20px 0 28px 24px;
}

.company-list li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--text);
}

.company-visit {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.company-visit .btn-gold {
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.5;
  padding: 16px 24px;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  padding: 12px 24px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-out);
}

.back-link a:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateX(-4px);
}

.company-card:target {
  outline: 3px solid var(--gold);
  outline-offset: 8px;
  animation: targetPulse 1.5s ease;
}

@keyframes targetPulse {
  0%, 100% { outline-color: var(--gold); }
  50% { outline-color: transparent; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 20, 25, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  animation: lightboxIn 0.4s var(--ease-out) forwards;
}

@keyframes lightboxIn {
  to { transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.25s, transform 0.25s;
}

.lightbox-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

/* Animations */
.fade-up,
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.fade-up.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(n+9) { transition-delay: 0.45s; opacity: 1; transform: none; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(12px);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav > a {
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s, padding-left 0.25s;
}

.mobile-nav > a:hover {
  color: var(--gold-hover);
  padding-left: 8px;
}

.mobile-nav .sub-links {
  padding: 8px 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav .sub-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 10px 0;
  border: none;
}

.mobile-nav .sub-links a:hover {
  color: var(--gold-hover);
  padding-left: 8px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up, .reveal, .reveal-left, .reveal-scale,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .hero-slide::after { animation: none !important; }
  .hero-decor { opacity: 0.95 !important; animation: none !important; transform: translate(-50%, -50%) !important; }
  .hero-content h2,
  .hero-content .subtitle,
  .hero-content .hero-eyebrow,
  .hero-content .slide-num {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .subsidiaries-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
  .pillars-section { margin-top: 0; }
}

@media (max-width: 900px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro .content-side { padding: 56px 24px; }
  .stats-side { padding: 56px 20px; }
  .stats-panel { padding: 24px 20px; max-width: 100%; }
  .stats-grid { gap: 12px; }
  .stat-item { padding: 16px 14px; }
  .stats-buttons { flex-direction: column; }
  .stats-buttons .btn { width: 100%; }
  .gallery-section .container { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-tile { grid-template-columns: 1fr; }
  .service-tile .bg-side { min-height: 180px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .services-row { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .subsidiaries-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .about-block { grid-template-columns: 1fr; }
  .about-block:nth-child(even) img { order: -1; }
  .contact-info-row { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: 1fr; }
  .company-profile {
    grid-template-columns: 1fr;
  }
  .company-profile-aside {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
  }
  .company-profile-aside::after { display: none; }
  .hero-bullets {
    left: auto;
    right: 16px;
    top: auto;
    bottom: 120px;
    transform: none;
    flex-direction: row;
  }

  .hero-bullets button:hover,
  .hero-bullets button.active {
    transform: translateY(-4px) scale(1.04);
  }

  .hero-counter {
    left: 20px;
    bottom: 36px;
  }

  .hero-counter-current {
    font-size: 2rem;
  }

  .hero-arrows {
    right: 16px;
    bottom: 36px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-decor { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-content.align-left {
    padding-left: 24px;
    align-items: center;
    text-align: center;
  }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin-left: auto; margin-right: auto; }
  .footer-tagline { margin: 0 auto; }
}

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