/* ============================================================
   URBAN GROUP OF HOSPITALITY — v2 REDESIGN
   Bold. Luxe. Unforgettable.
   Fonts: Playfair Display + Space Grotesk
   Palette: Deep black + Warm rose-gold + Cream
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* New bolder palette */
  --color-black:      #09090B;
  --color-dark:       #111114;
  --color-dark-card:  #18181B;
  --color-accent:     #D4A373;   /* warm rose-gold */
  --color-accent-2:   #E8C49A;   /* lighter rose-gold */
  --color-accent-glow: rgba(212, 163, 115, 0.15);
  --color-cream:      #FAF7F2;
  --color-white:      #FFFFFF;
  --color-text:       #09090B;
  --color-text-soft:  #52525B;
  --color-border:     #E4E4E7;
  --color-glass:      rgba(255, 255, 255, 0.6);
  --color-glass-dark: rgba(9, 9, 11, 0.7);

  /* Gradient accents */
  --gradient-accent: linear-gradient(135deg, #D4A373 0%, #c08a58 50%, #E8C49A 100%);
  --gradient-dark:   linear-gradient(180deg, #09090B 0%, #18181B 100%);
  --gradient-hero:   linear-gradient(135deg, #09090B 0%, #1a1520 40%, #1c1118 70%, #09090B 100%);
  --gradient-glow:   radial-gradient(ellipse at 50% 0%, rgba(212, 163, 115, 0.12) 0%, transparent 60%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;

  --nav-height:     88px;
  --nav-height-sm:  68px;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     0.4s var(--ease-out);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-card:    0 8px 40px rgba(0,0,0,0.08);
  --shadow-elevated:0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow:    0 0 40px rgba(212, 163, 115, 0.2);
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s ease, background 0.3s ease;
  opacity: 0;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover {
  width: 48px; height: 48px;
  background: rgba(212, 163, 115, 0.18);
  border: 2px solid var(--color-accent);
  mix-blend-mode: normal;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  height: var(--nav-height-sm);
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 40px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .nav-logo-img {
  height: 44px;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.footer-brand .nav-logo-img {
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition), left var(--transition);
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-spring), color 0.3s ease;
  letter-spacing: -0.02em;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--color-accent); }

.mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.35s; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 20px; display: inline-block; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  position: relative;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover {
  color: var(--color-white);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item i { color: var(--color-accent); margin-top: 4px; font-size: 0.9rem; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom span { color: var(--color-accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--gradient-accent);
  color: var(--color-black);
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 163, 115, 0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  background: transparent;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(212, 163, 115, 0.06);
  transform: translateY(-3px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-anim 0.7s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- PAGE HERO (inner) ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover { color: var(--color-accent); }
.page-hero .breadcrumb .sep { color: var(--color-accent); opacity: 0.5; }
.page-hero .breadcrumb .current { color: var(--color-accent); }
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero h1 .gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-accent);
  margin-top: 20px;
  border-radius: 2px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* About Hero Image */
/* ========== ABOUT HERO — PREMIUM REDESIGN ========== */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06060a;
  padding: 0;
}

/* ---------- Animated gradient orbs ---------- */
.about-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}
.about-hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,163,115,0.25) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: aboutOrbFloat1 14s ease-in-out infinite;
}
.about-hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180,120,80,0.18) 0%, transparent 70%);
  bottom: -20%;
  right: -8%;
  animation: aboutOrbFloat2 18s ease-in-out infinite;
}
.about-hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,196,154,0.12) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: aboutOrbFloat3 20s ease-in-out infinite;
}

@keyframes aboutOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, 40px) scale(1.08); }
  66%      { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes aboutOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-50px, -30px) scale(1.1); }
  66%      { transform: translate(40px, -50px) scale(0.96); }
}
@keyframes aboutOrbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 30px) scale(1.12); }
}

/* ---------- Noise texture ---------- */
.about-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Subtle grid lines ---------- */
.about-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,163,115,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,163,115,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
}

/* ---------- Content ---------- */
.about-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  animation: aboutFadeUp 0.8s var(--ease-out) 0.1s both;
}
.about-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.about-hero .breadcrumb a:hover { color: var(--color-accent); }
.about-hero .breadcrumb .sep { color: var(--color-accent); opacity: 0.5; }
.about-hero .breadcrumb .current { color: var(--color-accent); }

/* Label */
.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 100px;
  background: rgba(212,163,115,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: aboutFadeUp 0.8s var(--ease-out) 0.2s both;
}

/* Title */
.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 900px;
  margin-bottom: 32px;
  animation: aboutFadeUp 0.9s var(--ease-out) 0.35s both;
}

/* Gradient text highlight */
.about-hero__gradient-text {
  background: linear-gradient(135deg, #D4A373 0%, #f0d4a8 40%, #c08a58 70%, #E8C49A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aboutGradientShift 6s ease-in-out infinite, aboutFadeUp 0.9s var(--ease-out) 0.35s both;
}

@keyframes aboutGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Description */
.about-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 620px;
  margin-bottom: 48px;
  animation: aboutFadeUp 0.9s var(--ease-out) 0.5s both;
}

/* Actions */
.about-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  animation: aboutFadeUp 0.9s var(--ease-out) 0.65s both;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Primary CTA */
.about-hero__cta:first-child {
  background: var(--gradient-accent);
  color: #09090B;
  box-shadow: 0 0 0 0 rgba(212,163,115,0), 0 4px 20px rgba(212,163,115,0.25);
}
.about-hero__cta:first-child:hover {
  box-shadow: 0 0 30px rgba(212,163,115,0.3), 0 8px 32px rgba(212,163,115,0.3);
  transform: translateY(-2px);
}
.about-hero__cta:first-child svg {
  transition: transform 0.3s var(--ease-out);
}
.about-hero__cta:first-child:hover svg {
  transform: translateX(4px);
}

/* Ghost CTA */
.about-hero__cta--ghost {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.about-hero__cta--ghost:hover {
  color: var(--color-white);
  border-color: rgba(212,163,115,0.4);
  background: rgba(212,163,115,0.08);
  transform: translateY(-2px);
}

/* Trust line */
.about-hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  animation: aboutFadeUp 0.9s var(--ease-out) 0.8s both;
}
.about-hero__trust strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.about-hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: aboutPulse 2s ease-in-out infinite;
}

@keyframes aboutPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
  50%      { opacity: 0.6; box-shadow: 0 0 16px rgba(34,197,94,0.3); }
}

/* Fade-up animation */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bottom fade to page background */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  pointer-events: none;
  z-index: 2;
}

/* ---------- ABOUT HERO — RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-hero {
    min-height: 0;
  }
  .about-hero__content {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .about-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .about-hero__desc {
    font-size: 0.98rem;
  }
  .about-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .about-hero__cta {
    width: 100%;
    justify-content: center;
  }
  .about-hero__orb--1 { width: 350px; height: 350px; }
  .about-hero__orb--2 { width: 300px; height: 300px; }
  .about-hero__orb--3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .about-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .about-hero__label {
    font-size: 0.7rem;
    margin-bottom: 24px;
  }
  .about-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 24px;
  }
  .about-hero__desc {
    margin-bottom: 36px;
  }
}
/* ========== END ABOUT HERO ========== */

/* ========== INDUSTRIES HERO — PREMIUM REDESIGN ========== */
.ind-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06060a;
  padding: 0;
}

/* ---------- Gradient orbs ---------- */
.ind-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  will-change: transform;
}
.ind-hero__orb--1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212,163,115,0.22) 0%, transparent 70%);
  top: -20%;
  right: -5%;
  animation: indOrbDrift1 16s ease-in-out infinite;
}
.ind-hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,138,88,0.18) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation: indOrbDrift2 20s ease-in-out infinite;
}
.ind-hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,196,154,0.14) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: indOrbDrift3 22s ease-in-out infinite;
}

@keyframes indOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-50px, 40px) scale(1.06); }
  66%      { transform: translate(30px, -30px) scale(0.94); }
}
@keyframes indOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-20px, 50px) scale(0.95); }
}
@keyframes indOrbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -40px) scale(1.1); }
}

/* ---------- Noise overlay ---------- */
.ind-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* ---------- SVG connectivity mesh ---------- */
.ind-hero__mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.ind-mesh-line {
  stroke: rgba(212,163,115,0.12);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  animation: indMeshDash 30s linear infinite;
}
.ind-mesh-line--d1 {
  stroke: rgba(192,138,88,0.1);
  animation-delay: -8s;
}
.ind-mesh-line--d2 {
  stroke: rgba(232,196,154,0.1);
  animation-delay: -16s;
}
.ind-mesh-dot {
  fill: rgba(212,163,115,0.6);
  animation: indDotPulse 3s ease-in-out infinite;
}
.ind-mesh-dot:nth-child(odd) {
  fill: rgba(232,196,154,0.6);
  animation-delay: -1.5s;
}

@keyframes indMeshDash {
  to { stroke-dashoffset: -200; }
}
@keyframes indDotPulse {
  0%, 100% { r: 3; opacity: 0.6; }
  50%      { r: 5; opacity: 1; }
}

/* ---------- Content ---------- */
.ind-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ind-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  animation: indFadeUp 0.8s var(--ease-out) 0.1s both;
}
.ind-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.ind-hero .breadcrumb a:hover { color: var(--color-accent); }
.ind-hero .breadcrumb .sep { color: var(--color-accent); opacity: 0.5; }
.ind-hero .breadcrumb .current { color: var(--color-accent); }

/* Label pill */
.ind-hero__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  padding: 8px 22px;
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 100px;
  background: rgba(212,163,115,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: indFadeUp 0.8s var(--ease-out) 0.2s both;
}

/* Title */
.ind-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 860px;
  margin-bottom: 32px;
  animation: indFadeUp 0.9s var(--ease-out) 0.35s both;
}

/* Gradient keyword */
.ind-hero__gradient-text {
  background: linear-gradient(135deg, #D4A373 0%, #f0d4a8 40%, #c08a58 70%, #E8C49A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: indGradientShift 8s ease-in-out infinite, indFadeUp 0.9s var(--ease-out) 0.35s both;
}

@keyframes indGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Description */
.ind-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 600px;
  margin-bottom: 48px;
  animation: indFadeUp 0.9s var(--ease-out) 0.5s both;
}

/* Actions */
.ind-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  animation: indFadeUp 0.9s var(--ease-out) 0.65s both;
}

.ind-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Primary CTA — indigo-gold blend */
.ind-hero__cta:first-child {
  background: var(--gradient-accent);
  color: #09090B;
  box-shadow: 0 0 0 0 rgba(212,163,115,0), 0 4px 20px rgba(212,163,115,0.25);
}
.ind-hero__cta:first-child:hover {
  box-shadow: 0 0 30px rgba(212,163,115,0.3), 0 8px 32px rgba(212,163,115,0.3);
  transform: translateY(-2px) scale(1.02);
}
.ind-hero__cta:first-child svg {
  transition: transform 0.3s var(--ease-out);
}
.ind-hero__cta:first-child:hover svg {
  transform: translateY(3px);
}

/* Ghost CTA */
.ind-hero__cta--ghost {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.ind-hero__cta--ghost:hover {
  color: var(--color-white);
  border-color: rgba(212,163,115,0.4);
  background: rgba(212,163,115,0.08);
  transform: translateY(-2px);
}

/* ---------- Industry tags ---------- */
.ind-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  animation: indFadeUp 0.9s var(--ease-out) 0.85s both;
}

.ind-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.ind-hero__tag i {
  font-size: 0.72rem;
  opacity: 0.6;
  transition: all 0.4s var(--ease-out);
}

.ind-hero__tag:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(212,163,115,0.35);
  background: rgba(212,163,115,0.08);
  box-shadow: 0 0 20px rgba(212,163,115,0.15);
  transform: translateY(-2px);
}
.ind-hero__tag:hover i {
  opacity: 1;
  color: var(--color-accent);
}

/* Bottom fade */
.ind-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  pointer-events: none;
  z-index: 2;
}

/* Fade-up keyframe */
@keyframes indFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- INDUSTRIES HERO — RESPONSIVE ---------- */
@media (max-width: 768px) {
  .ind-hero {
    min-height: 0;
  }
  .ind-hero__content {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .ind-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .ind-hero__desc {
    font-size: 0.98rem;
  }
  .ind-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .ind-hero__cta {
    width: 100%;
    justify-content: center;
  }
  .ind-hero__mesh {
    opacity: 0.25;
  }
  .ind-hero__orb--1 { width: 350px; height: 350px; }
  .ind-hero__orb--2 { width: 300px; height: 300px; }
  .ind-hero__orb--3 { width: 200px; height: 200px; }
  .ind-hero__tags {
    gap: 8px;
  }
  .ind-hero__tag {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .ind-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .ind-hero__label {
    font-size: 0.7rem;
    margin-bottom: 24px;
  }
  .ind-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 24px;
  }
  .ind-hero__desc {
    margin-bottom: 36px;
  }
}
/* ========== END INDUSTRIES HERO ========== */

/* ========== PROCESS HERO — PREMIUM REDESIGN ========== */
.proc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06060a;
  padding: 0;
}

/* ---------- Gradient orbs ---------- */
.proc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}
.proc-hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,163,115,0.2) 0%, transparent 70%);
  top: -25%;
  left: -10%;
  animation: procOrbFloat1 18s ease-in-out infinite;
}
.proc-hero__orb--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(192,138,88,0.16) 0%, transparent 70%);
  bottom: -20%;
  right: -8%;
  animation: procOrbFloat2 22s ease-in-out infinite;
}

@keyframes procOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, 30px) scale(1.05); }
  66%      { transform: translate(-30px, 50px) scale(0.96); }
}
@keyframes procOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, -20px) scale(1.07); }
  66%      { transform: translate(30px, -40px) scale(0.95); }
}

/* ---------- Noise ---------- */
.proc-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* ---------- SVG flowing path ---------- */
.proc-hero__path-svg {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.proc-hero__path-bg {
  fill: none;
  stroke: rgba(212,163,115,0.08);
  stroke-width: 2;
}
.proc-hero__path-glow {
  fill: none;
  stroke: url(#procPathGrad);
  stroke: rgba(212,163,115,0.3);
  stroke-width: 2;
  stroke-dasharray: 12 8;
  animation: procPathFlow 20s linear infinite;
}

@keyframes procPathFlow {
  to { stroke-dashoffset: -400; }
}

/* ---------- Content ---------- */
.proc-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proc-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  animation: procFadeUp 0.8s var(--ease-out) 0.1s both;
}
.proc-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.proc-hero .breadcrumb a:hover { color: var(--color-accent); }
.proc-hero .breadcrumb .sep { color: var(--color-accent); opacity: 0.5; }
.proc-hero .breadcrumb .current { color: var(--color-accent); }

/* Label pill */
.proc-hero__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  padding: 8px 22px;
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 100px;
  background: rgba(212,163,115,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: procFadeUp 0.8s var(--ease-out) 0.2s both;
}

/* Title */
.proc-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 820px;
  margin-bottom: 28px;
  animation: procFadeUp 0.9s var(--ease-out) 0.3s both;
}

.proc-hero__gradient-text {
  background: linear-gradient(135deg, #D4A373 0%, #f0d4a8 35%, #c08a58 70%, #E8C49A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: procGradShift 7s ease-in-out infinite, procFadeUp 0.9s var(--ease-out) 0.3s both;
}

@keyframes procGradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Description */
.proc-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  margin-bottom: 56px;
  animation: procFadeUp 0.9s var(--ease-out) 0.45s both;
}

/* ========== Step nodes row ========== */
.proc-hero__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  animation: procFadeUp 0.9s var(--ease-out) 0.6s both;
}

.proc-hero__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* Node circle */
.proc-hero__node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,163,115,0.08);
  border: 1.5px solid rgba(212,163,115,0.2);
  position: relative;
  transition: all 0.5s var(--ease-out);
  cursor: default;
}
.proc-hero__node i {
  font-size: 1.3rem;
  color: rgba(212,163,115,0.7);
  transition: all 0.4s var(--ease-out);
  z-index: 2;
  position: relative;
}

/* Pulse ring */
.proc-hero__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212,163,115,0.15);
  animation: procNodePulse 3s ease-in-out infinite;
}

/* Stagger pulse per step */
.proc-hero__step[data-step="1"] .proc-hero__pulse { animation-delay: 0s; }
.proc-hero__step[data-step="2"] .proc-hero__pulse { animation-delay: 0.75s; }
.proc-hero__step[data-step="3"] .proc-hero__pulse { animation-delay: 1.5s; }
.proc-hero__step[data-step="4"] .proc-hero__pulse { animation-delay: 2.25s; }

@keyframes procNodePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.35); opacity: 0; }
}

/* Hover state */
.proc-hero__step:hover .proc-hero__node {
  background: rgba(212,163,115,0.15);
  border-color: rgba(212,163,115,0.45);
  box-shadow: 0 0 30px rgba(212,163,115,0.2), 0 0 60px rgba(212,163,115,0.08);
  transform: translateY(-4px);
}
.proc-hero__step:hover .proc-hero__node i {
  color: var(--color-accent-2);
  transform: scale(1.1);
}
.proc-hero__step:hover .proc-hero__step-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Step label */
.proc-hero__step-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s var(--ease-out);
}

/* ---------- Connectors ---------- */
.proc-hero__connector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  margin-bottom: 28px; /* align with node center */
}
.proc-hero__connector span {
  display: block;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  background: rgba(212,163,115,0.25);
  animation: procConnectorPulse 2s ease-in-out infinite;
}
.proc-hero__connector span:nth-child(2) {
  animation-delay: 0.3s;
  width: 14px;
}
.proc-hero__connector span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes procConnectorPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; background: rgba(212,163,115,0.6); }
}

/* ========== CTA ========== */
.proc-hero__actions {
  animation: procFadeUp 0.9s var(--ease-out) 0.75s both;
}

.proc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  color: #09090B;
  background: var(--gradient-accent);
  box-shadow: 0 4px 20px rgba(212,163,115,0.25);
  transition: all 0.4s var(--ease-out);
}
.proc-hero__cta:hover {
  box-shadow: 0 0 30px rgba(212,163,115,0.3), 0 8px 32px rgba(212,163,115,0.25);
  transform: translateY(-2px) scale(1.02);
}
.proc-hero__cta svg {
  transition: transform 0.3s var(--ease-out);
}
.proc-hero__cta:hover svg {
  transform: translateY(3px);
}

/* Bottom fade */
.proc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  pointer-events: none;
  z-index: 2;
}

/* Fade-up */
@keyframes procFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- PROCESS HERO — RESPONSIVE ---------- */
@media (max-width: 768px) {
  .proc-hero {
    min-height: 0;
  }
  .proc-hero__content {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .proc-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .proc-hero__steps {
    gap: 0;
  }
  .proc-hero__node {
    width: 56px;
    height: 56px;
  }
  .proc-hero__node i {
    font-size: 1rem;
  }
  .proc-hero__connector {
    padding: 0 8px;
  }
  .proc-hero__connector span {
    width: 5px;
  }
  .proc-hero__connector span:nth-child(2) {
    width: 10px;
  }
  .proc-hero__step-label {
    font-size: 0.72rem;
  }
  .proc-hero__path-svg {
    opacity: 0.3;
  }
  .proc-hero__orb--1 { width: 400px; height: 400px; }
  .proc-hero__orb--2 { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
  .proc-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .proc-hero__label {
    font-size: 0.7rem;
    margin-bottom: 24px;
  }
  .proc-hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    margin-bottom: 20px;
  }
  .proc-hero__desc {
    margin-bottom: 40px;
    font-size: 0.95rem;
  }
  .proc-hero__node {
    width: 48px;
    height: 48px;
  }
  .proc-hero__node i {
    font-size: 0.88rem;
  }
  .proc-hero__connector {
    padding: 0 5px;
  }
  .proc-hero__connector span:nth-child(2) {
    width: 8px;
  }
}
/* ========== END PROCESS HERO ========== */

/* ========== GALLERY HERO — PREMIUM REDESIGN ========== */
.gal-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06060a;
  padding: 0;
}

/* ---------- Gradient orbs ---------- */
.gal-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}
.gal-hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,163,115,0.2) 0%, transparent 70%);
  top: -15%;
  right: -5%;
  animation: galOrbDrift1 16s ease-in-out infinite;
}
.gal-hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,138,88,0.16) 0%, transparent 70%);
  bottom: -20%;
  left: -10%;
  animation: galOrbDrift2 20s ease-in-out infinite;
}

@keyframes galOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.06); }
  66%      { transform: translate(25px, -25px) scale(0.95); }
}
@keyframes galOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(35px, -25px) scale(1.07); }
  66%      { transform: translate(-20px, 40px) scale(0.96); }
}

/* ---------- Noise ---------- */
.gal-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* ========== Floating image collage ========== */
.gal-hero__collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gal-hero__img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  animation: galImgReveal 1s var(--ease-out) both;
}
.gal-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.85) sepia(0.15);
  transition: filter 0.6s var(--ease-out), transform 8s ease-in-out;
  animation: galKenBurns 20s ease-in-out infinite alternate;
}

/* Individual image positions — asymmetric gallery layout */
.gal-hero__img--1 {
  width: 280px;
  height: 360px;
  top: 8%;
  right: 6%;
  animation-delay: 0.3s;
  transform: rotate(3deg);
}
.gal-hero__img--2 {
  width: 220px;
  height: 280px;
  top: 15%;
  left: 4%;
  animation-delay: 0.5s;
  transform: rotate(-2deg);
}
.gal-hero__img--3 {
  width: 200px;
  height: 260px;
  bottom: 12%;
  right: 12%;
  animation-delay: 0.7s;
  transform: rotate(-3deg);
}
.gal-hero__img--4 {
  width: 240px;
  height: 180px;
  bottom: 8%;
  left: 8%;
  animation-delay: 0.9s;
  transform: rotate(2deg);
}
.gal-hero__img--5 {
  width: 180px;
  height: 230px;
  top: 50%;
  right: 30%;
  transform: translateY(-50%) rotate(1.5deg);
  animation-delay: 1.1s;
}

/* Stagger Ken Burns per image */
.gal-hero__img--1 img { animation-delay: 0s; }
.gal-hero__img--2 img { animation-delay: -4s; }
.gal-hero__img--3 img { animation-delay: -8s; }
.gal-hero__img--4 img { animation-delay: -12s; }
.gal-hero__img--5 img { animation-delay: -16s; }

/* Rose-gold border glow on images */
.gal-hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,163,115,0.15);
  pointer-events: none;
}

@keyframes galImgReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Preserve individual rotations on reveal */
.gal-hero__img--1 { animation: galImgReveal1 1s var(--ease-out) 0.3s both; }
.gal-hero__img--2 { animation: galImgReveal2 1s var(--ease-out) 0.5s both; }
.gal-hero__img--3 { animation: galImgReveal3 1s var(--ease-out) 0.7s both; }
.gal-hero__img--4 { animation: galImgReveal4 1s var(--ease-out) 0.9s both; }
.gal-hero__img--5 { animation: galImgReveal5 1s var(--ease-out) 1.1s both; }

@keyframes galImgReveal1 {
  from { opacity: 0; transform: rotate(3deg) translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: rotate(3deg) translateY(0) scale(1); }
}
@keyframes galImgReveal2 {
  from { opacity: 0; transform: rotate(-2deg) translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: rotate(-2deg) translateY(0) scale(1); }
}
@keyframes galImgReveal3 {
  from { opacity: 0; transform: rotate(-3deg) translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: rotate(-3deg) translateY(0) scale(1); }
}
@keyframes galImgReveal4 {
  from { opacity: 0; transform: rotate(2deg) translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: rotate(2deg) translateY(0) scale(1); }
}
@keyframes galImgReveal5 {
  from { opacity: 0; transform: translateY(-50%) rotate(1.5deg) translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: translateY(-50%) rotate(1.5deg) translateY(0) scale(1); }
}

@keyframes galKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* ---------- Content overlay ---------- */
.gal-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gal-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  animation: galFadeUp 0.8s var(--ease-out) 0.1s both;
}
.gal-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.gal-hero .breadcrumb a:hover { color: var(--color-accent); }
.gal-hero .breadcrumb .sep { color: var(--color-accent); opacity: 0.5; }
.gal-hero .breadcrumb .current { color: var(--color-accent); }

/* Label pill */
.gal-hero__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  padding: 8px 22px;
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 100px;
  background: rgba(212,163,115,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: galFadeUp 0.8s var(--ease-out) 0.2s both;
}

/* Title */
.gal-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 800px;
  margin-bottom: 28px;
  animation: galFadeUp 0.9s var(--ease-out) 0.35s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.gal-hero__gradient-text {
  background: linear-gradient(135deg, #D4A373 0%, #f0d4a8 40%, #c08a58 70%, #E8C49A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: galGradShift 6s ease-in-out infinite, galFadeUp 0.9s var(--ease-out) 0.35s both;
}

@keyframes galGradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Description */
.gal-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin-bottom: 48px;
  animation: galFadeUp 0.9s var(--ease-out) 0.5s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* CTA */
.gal-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  color: #09090B;
  background: var(--gradient-accent);
  box-shadow: 0 4px 20px rgba(212,163,115,0.25);
  transition: all 0.4s var(--ease-out);
  animation: galFadeUp 0.9s var(--ease-out) 0.65s both;
}
.gal-hero__cta:hover {
  box-shadow: 0 0 30px rgba(212,163,115,0.3), 0 8px 32px rgba(212,163,115,0.25);
  transform: translateY(-2px) scale(1.02);
}
.gal-hero__cta svg {
  transition: transform 0.3s var(--ease-out);
}
.gal-hero__cta:hover svg {
  transform: translateY(3px);
}

/* Bottom fade */
.gal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  pointer-events: none;
  z-index: 2;
}

/* Fade-up */
@keyframes galFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- GALLERY HERO — RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .gal-hero__img--1 { width: 200px; height: 260px; }
  .gal-hero__img--2 { width: 160px; height: 210px; }
  .gal-hero__img--3 { width: 150px; height: 200px; }
  .gal-hero__img--4 { width: 180px; height: 140px; }
  .gal-hero__img--5 { width: 140px; height: 180px; }
}

@media (max-width: 768px) {
  .gal-hero {
    min-height: 0;
  }
  .gal-hero__content {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .gal-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .gal-hero__collage {
    opacity: 0.3;
  }
  .gal-hero__img--1 { width: 140px; height: 180px; top: 10%; right: 2%; }
  .gal-hero__img--2 { width: 120px; height: 155px; top: 15%; left: 2%; }
  .gal-hero__img--3 { width: 110px; height: 145px; bottom: 15%; right: 5%; }
  .gal-hero__img--4 { width: 130px; height: 100px; bottom: 10%; left: 3%; }
  .gal-hero__img--5 { display: none; }
  .gal-hero__orb--1 { width: 350px; height: 350px; }
  .gal-hero__orb--2 { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
  .gal-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .gal-hero__label {
    font-size: 0.7rem;
    margin-bottom: 24px;
  }
  .gal-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 20px;
  }
  .gal-hero__desc {
    margin-bottom: 36px;
    font-size: 0.95rem;
  }
  .gal-hero__collage {
    opacity: 0.2;
  }
}
/* ========== END GALLERY HERO ========== */

/* ---------- PAGE HERO SLIDER ---------- */
.page-hero-slider {
  min-height: 75vh;
  min-height: 75dvh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  padding: 0;
}
.page-hero-slider .container {
  padding-top: 160px;
  padding-bottom: 100px;
}

/* Slider Track */
.phs-slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.phs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.phs-slide.active {
  opacity: 1;
}
.phs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}
.phs-slide.active img {
  animation: phsKenBurns 18s ease-in-out forwards;
}

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

/* Overlay */
.phs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 35%,
      transparent 65%,
      rgba(0, 0, 0, 0.4) 100%
    );
  pointer-events: none;
}

/* Override page-hero pseudo elements for slider variant */
.page-hero-slider::before {
  z-index: 1;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 60%,
      rgba(212, 163, 115, 0.08) 0%,
      transparent 60%
    );
}
.page-hero-slider::after {
  z-index: 4;
}

/* Navigation Arrows */
.phs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0;
}
.page-hero-slider:hover .phs-arrow {
  opacity: 1;
}
.phs-arrow:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 0 24px rgba(212, 163, 115, 0.15);
}
.phs-arrow-prev { left: 24px; }
.phs-arrow-next { right: 24px; }

/* Dot Indicators */
.phs-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0;
}
.phs-dot::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.phs-dot.active {
  border-color: var(--color-accent);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(212, 163, 115, 0.25);
}
.phs-dot.active::after {
  transform: scale(1);
}
.phs-dot:hover {
  border-color: rgba(212, 163, 115, 0.5);
}

/* Slide Label */
.phs-label {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.5s ease;
  white-space: nowrap;
}
.phs-label i {
  color: var(--color-accent);
  font-size: 0.68rem;
}

/* Enhanced hero text for slider */
.page-hero-slider h1 {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
  animation: phsFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.2s;
}
.page-hero-slider p {
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
  animation: phsFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.4s;
}
.page-hero-slider .breadcrumb {
  animation: phsFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}
.page-hero-slider h1 .gold-line {
  animation: phsLineGrow 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.7s;
  transform-origin: left;
}

@keyframes phsFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes phsLineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ---------- SECTION ---------- */
.section {
  padding: 120px 0;
}
.section-light { background: var(--color-white); }
.section-navy { background: var(--color-black); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.section-navy .section-title { color: var(--color-white); }

.section-subtitle {
  font-size: 1.08rem;
  color: var(--color-text-soft);
  max-width: 580px;
  line-height: 1.8;
}
.section-navy .section-subtitle { color: rgba(255, 255, 255, 0.5); }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---------- HOME HERO ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--color-cream));
  z-index: 6;
  pointer-events: none;
}

/* --- Hero Slider --- */
.hero-slider-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-slide.active img {
  animation: kenBurnsActive 20s ease-in-out forwards;
}

@keyframes kenBurnsActive {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

/* --- Dark Gradient Overlay --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(0, 0, 0, 0.3) 65%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.3) 100%
    );
  pointer-events: none;
}

/* --- Navigation Arrows --- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.home-hero:hover .hero-arrow {
  opacity: 1;
}
.hero-arrow:hover {
  background: rgba(212, 163, 115, 0.2);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.2);
}
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* --- Dot Indicators --- */
.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0;
}
.hero-dot::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-dot.active {
  border-color: var(--color-accent);
  transform: scale(1.2);
}
.hero-dot.active::after {
  transform: scale(1);
}
.hero-dot:hover {
  border-color: rgba(212, 163, 115, 0.6);
}

/* Active dot progress ring */
.hero-dot.active {
  width: 14px;
  height: 14px;
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.3);
}

/* --- Destination Label --- */
.hero-destination-label {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease;
}
.hero-destination-label i {
  color: var(--color-accent);
  font-size: 0.72rem;
}

/* --- Hero Content (overlaid on slider) --- */
.home-hero .container {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 100px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(212, 163, 115, 0.04);
}
.hero-badge i { font-size: 0.7rem; }
.home-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--color-white);
  max-width: 860px;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.home-hero .hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.12rem;
  max-width: 520px;
  margin: 0 auto 16px;
  line-height: 1.8;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.typed-wrapper {
  height: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.typed-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-accent);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.5rem;
  background: var(--color-accent);
  margin-left: 4px;
  animation: blink 0.9s infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  margin: 0 -20px;
  padding: 36px 20px;
}
.hero-stat {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(212, 163, 115, 0.3);
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.service-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}
.service-preview-card:hover::before { opacity: 1; }
.service-preview-card .card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.service-preview-card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }
.service-preview-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-text);
}
.service-preview-card p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.card-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 14px; }

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

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  background: var(--color-black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-left h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.why-us-left p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  line-height: 1.8;
}
.why-us-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition), border-color var(--transition);
}
.check-item:hover {
  background: rgba(212, 163, 115, 0.05);
  border-color: rgba(212, 163, 115, 0.15);
}
.check-item i {
  color: var(--color-accent);
  margin-top: 2px;
  font-size: 0.85rem;
}
.check-item span {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- TICKER ---------- */
.ticker-section {
  background: var(--color-dark);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-pill {
  padding: 10px 28px;
  border: 1px solid rgba(212, 163, 115, 0.25);
  border-radius: 100px;
  color: var(--color-accent);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- PROCESS TEASER ---------- */
.process-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process-teaser-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(212, 163, 115, 0.1));
  border-radius: 1px;
}
.process-step-mini {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-step-mini .step-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step-mini:hover .step-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.process-step-mini h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.process-step-mini p {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(212, 163, 115, 0.15); }
.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 32px;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.85;
  margin: 28px 0 24px;
  position: relative;
  z-index: 2;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-black);
  font-size: 0.88rem;
}
.testimonial-author .info strong {
  display: block;
  color: var(--color-white);
  font-size: 0.92rem;
}
.testimonial-author .info span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--color-black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.cta-banner .btn-gold {
  background: var(--gradient-accent);
  color: var(--color-black);
}

/* ---------- SERVICES PAGE ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gradient-accent);
  transition: height 0.5s var(--ease-out);
  border-radius: 0 0 2px 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}
.service-card .card-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-text);
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card ul li {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Sustainable */
.sustainable-section {
  background: linear-gradient(135deg, #0d1f0d 0%, var(--color-black) 100%);
  padding: 100px 0;
  position: relative;
}
.sustainable-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.sustainable-inner .eco-icon {
  font-size: 2.6rem;
  color: #6DBF72;
  margin-bottom: 20px;
}
.sustainable-inner h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.sustainable-inner > p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
}
.eco-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.eco-stat { text-align: center; }
.eco-stat i { font-size: 1.8rem; color: #6DBF72; margin-bottom: 10px; }
.eco-stat span {
  display: block;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Smart tech */
.smart-tech {
  padding: 100px 0;
  background: var(--color-cream);
}
.smart-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.smart-tech-box {
  padding: 40px 28px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.smart-tech-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.smart-tech-box i { font-size: 2.4rem; color: var(--color-accent); margin-bottom: 20px; }
.smart-tech-box h4 { font-size: 1.15rem; margin-bottom: 8px; }
.smart-tech-box p { color: var(--color-text-soft); font-size: 0.9rem; }

/* ---------- ABOUT PAGE ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text {
  padding-left: 28px;
  border-left: 3px solid var(--color-accent);
}
.story-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.story-text p {
  color: var(--color-text-soft);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.story-visual { position: relative; }
.story-card-stack {
  position: relative;
  height: 360px;
}
.story-card-stack .scard {
  position: absolute;
  width: 270px; height: 165px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--transition);
}
.story-card-stack:hover .scard:nth-child(1) { transform: translate(-6px, -6px); }
.story-card-stack:hover .scard:nth-child(2) { transform: translate(6px, 6px); }
.story-card-stack .scard:nth-child(1) {
  background: var(--color-black);
  color: var(--color-accent);
  top: 0; left: 20px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.story-card-stack .scard:nth-child(2) {
  background: var(--gradient-accent);
  color: var(--color-black);
  top: 65px; left: 85px;
  box-shadow: var(--shadow-elevated);
  z-index: 2;
}
.story-card-stack .scard:nth-child(3) {
  background: var(--color-dark);
  color: var(--color-white);
  top: 130px; left: 45px;
  box-shadow: var(--shadow-card);
  z-index: 1;
}

/* Counters */
.counters-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 72px 0;
  text-align: center;
}
.counter-item .counter-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}
.counter-item .counter-label {
  color: var(--color-text-soft);
  font-size: 0.88rem;
  margin-top: 4px;
}
.section-navy .counter-item .counter-label { color: rgba(255, 255, 255, 0.4); }

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.mv-card.mission {
  background: var(--color-black);
}
.mv-card.mission::before { background: var(--color-accent); }
.mv-card.vision {
  background: var(--gradient-accent);
}
.mv-card.vision::before { background: var(--color-black); }
.mv-card i { font-size: 2.2rem; margin-bottom: 24px; }
.mv-card.mission i { color: var(--color-accent); }
.mv-card.vision i { color: var(--color-black); }
.mv-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.mv-card.mission h3 { color: var(--color-white); }
.mv-card.vision h3 { color: var(--color-black); }
.mv-card p { font-size: 0.95rem; line-height: 1.85; }
.mv-card.mission p { color: rgba(255, 255, 255, 0.55); }
.mv-card.vision p { color: rgba(9, 9, 11, 0.6); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 44px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-accent);
}
.value-card i { font-size: 2rem; color: var(--color-accent); margin-bottom: 18px; }
.value-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--color-text-soft); font-size: 0.88rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.25);
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--color-text-soft); font-size: 0.85rem; margin-bottom: 14px; }
.team-card .team-social a {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.team-card .team-social a:hover { color: var(--color-accent); }

/* Partners */
.partners-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 45s linear infinite;
}
.partner-logo {
  padding: 18px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-soft);
  white-space: nowrap;
  background: var(--color-white);
  letter-spacing: -0.01em;
}

/* ---------- INDUSTRIES PAGE ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.industry-card:hover::after { opacity: 1; }
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}
.industry-card .card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.industry-card:hover .card-icon { transform: scale(1.1); }
.industry-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.industry-card ul { display: flex; flex-direction: column; gap: 10px; }
.industry-card ul li {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.industry-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Stats band */
.stats-band {
  background: var(--color-black);
  padding: 72px 0;
}
.stats-band .counters-row { padding: 0; }
.stats-band .counter-item .counter-value { color: var(--color-accent); }

/* ---------- PROCESS PAGE ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: rgba(212, 163, 115, 0.12);
  transform: translateX(-50%);
}
.timeline-line-fill {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 0;
  background: var(--gradient-accent);
  transform: translateX(-50%);
  transition: height 0.4s ease;
  z-index: 2;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 96px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd)  { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: 44%;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-elevated); }
.timeline-item:nth-child(odd)  .timeline-content { margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-glow);
}
.timeline-content .step-icon {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 14px; }
.timeline-content p { color: var(--color-text-soft); font-size: 0.95rem; line-height: 1.8; }

/* How we work */
.how-we-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hww-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hww-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.hww-card i { font-size: 2.2rem; color: var(--color-accent); margin-bottom: 18px; }
.hww-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.hww-card p { color: var(--color-text-soft); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent); }
.faq-question .faq-icon {
  font-size: 1.15rem;
  color: var(--color-accent);
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ---------- GALLERY PAGE ---------- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 11px 26px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-soft);
  transition: all var(--transition);
  cursor: pointer;
  background: var(--color-white);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gradient-accent);
  color: var(--color-black);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: 240px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 9, 11, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--color-white); font-size: 1.05rem; margin-bottom: 6px; }
.gallery-overlay .tag {
  font-size: 0.72rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.lightbox-inner {
  width: 100%;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}
.lightbox-caption {
  padding: 20px 24px;
  text-align: center;
  background: var(--color-dark);
}
.lightbox-caption h3 { color: var(--color-white); font-size: 1.35rem; margin-bottom: 6px; }
.lightbox-caption .tag {
  color: var(--color-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 10001;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.12); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(212, 163, 115, 0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info-section h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.contact-info-section > p {
  color: var(--color-text-soft);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-info-item .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contact-info-item span {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}
.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

/* Form */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2352525B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}
.form-group .error-msg {
  font-size: 0.78rem;
  color: #EF4444;
  display: none;
}
.form-group.error .error-msg { display: block; }

.form-submit { margin-top: 28px; }
.form-submit .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.95rem;
  border-radius: var(--radius);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success.show { display: block; }
.form-success i { font-size: 3.5rem; color: #22C55E; margin-bottom: 18px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--color-text-soft); }

/* Map */
.map-placeholder {
  background: var(--color-black);
  border-top: 2px solid var(--color-accent);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.map-placeholder i { font-size: 2.2rem; color: var(--color-accent); }
.map-placeholder span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo { max-width: 75%; }
  .navbar .nav-logo-img { height: 44px; }
  .navbar.scrolled .nav-logo-img { height: 36px; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .home-hero h1 { font-size: 2.4rem; line-height: 1.12; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; margin: 0; border-radius: 12px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0; }
  .hero-stat:last-child { border-bottom: none; }

  /* Slider responsive */
  .hero-arrow { opacity: 1; width: 44px; height: 44px; font-size: 0.85rem; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
  .hero-dots { bottom: 32px; gap: 10px; }
  .hero-dot { width: 10px; height: 10px; }
  .hero-dot.active { width: 12px; height: 12px; }
  .hero-destination-label { bottom: 70px; font-size: 0.7rem; padding: 6px 16px; }

  .services-preview-grid,
  .services-grid,
  .industries-grid,
  .mv-grid,
  .testimonials-grid,
  .why-us-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .why-us-grid { gap: 48px; }
  .why-us-checks { grid-template-columns: 1fr; }

  .process-teaser-grid { grid-template-columns: 1fr 1fr; }
  .process-teaser-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

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

  .timeline::before { left: 30px; }
  .timeline-line-fill { left: 30px; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-content { width: calc(100% - 80px); margin-left: auto !important; margin-right: 0 !important; }
  .timeline-number { left: 30px; }

  .how-we-work-grid { grid-template-columns: 1fr; }
  .smart-tech-grid { grid-template-columns: 1fr; }
  .eco-stats { flex-direction: column; gap: 24px; }

  .counters-row { gap: 24px; }
  .story-card-stack { height: 260px; }
  .story-card-stack .scard { width: 210px; height: 130px; font-size: 1.1rem; }

  .lightbox-content { width: 95%; }
  .lightbox-inner { height: 320px; }

  .page-hero { padding: 140px 0 80px; }
  .page-hero-slider .container { padding-top: 130px; padding-bottom: 80px; }
  .phs-arrow { opacity: 1; width: 40px; height: 40px; font-size: 0.8rem; }
  .phs-arrow-prev { left: 10px; }
  .phs-arrow-next { right: 10px; }
  .phs-dots { bottom: 22px; gap: 8px; }
  .phs-dot { width: 8px; height: 8px; }
  .phs-dot.active { width: 10px; height: 10px; }
  .phs-label { bottom: 52px; font-size: 0.65rem; padding: 5px 14px; }
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 9px 18px; font-size: 0.82rem; }
  .contact-form-card { padding: 36px 28px; }
  .cursor-dot { display: none; }

  .contact-grid { gap: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .process-teaser-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 2rem; }
  .hero-arrow { width: 38px; height: 38px; font-size: 0.8rem; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
  .hero-destination-label { display: none; }
  .hero-dots { bottom: 24px; }
  .phs-label { display: none; }
  .phs-arrow { width: 36px; height: 36px; font-size: 0.75rem; }
  .phs-arrow-prev { left: 6px; }
  .phs-arrow-next { right: 6px; }
  .phs-dots { bottom: 18px; }
}