/* ── Google Fonts fallback ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════
   CSS VARIABLES — Exact colors from video
══════════════════════════════════════ */
:root {
  /* Backgrounds — dark charcoal from video */
  --bg-primary: #0c0c0c;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --bg-elevated: #1a1a1a;

  /* Orange accent — #f06428 from video, exact match */
  --orange: #f06428;
  --orange-light: #f5874e;
  --orange-dark: #c84e1a;
  --orange-glow: rgba(240, 100, 40, 0.18);
  --orange-glow-sm: rgba(240, 100, 40, 0.08);

  /* Copper/bronze tones — from video warm mid-tones */
  --copper: #c8a08c;
  --copper-light: #dcc8b4;
  --copper-dark: #8c6450;

  /* Text */
  --text-white: #ffffff;
  --text-primary: #f0ece8;
  --text-secondary: #a09080;
  --text-muted: #5a5250;

  /* Borders */
  --border: rgba(240, 100, 40, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-copper: rgba(200, 160, 140, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --transition-slow: 0.6s var(--ease);

  /* Shadows — Softer, more premium look */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 12px 48px rgba(240, 100, 40, 0.25);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);

  /* Spacing System — Clean & Balanced */
  --space-hero-top: clamp(70px, 6vw, 90px);
  --navbar-height: clamp(88px, 7vw, 110px);
  /* Clearance for fixed header */
  --space-section: clamp(3rem, 6vw, 6rem);
  /* Balanced vertical separation */
  --space-header: clamp(1.8rem, 4vw, 2.8rem);
  /* Space after headers */
  --space-element: 1.2rem;
  /* Internal gaps */
  --space-card: clamp(1.2rem, 2.5vw, 2.2rem);
  /* Card internals */
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 10px);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

@media (max-width: 900px) {
  body {
    padding-top: calc(var(--navbar-height) + 5px);
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
}

em {
  font-style: italic;
  color: var(--orange);
}

.section-title {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.section-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box; 
  width: 100%; 
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-header);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.90rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ══════════════════════════════════════
   PREMIUM UTILITIES
   ══════════════════════════════════════ */
.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  overflow: hidden;
  position: relative;
}

.premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-orange);
  background: var(--bg-card-hover);
}

.premium-card:hover::after {
  opacity: 0.15;
}

.img-enhance {
  filter: contrast(1.02) brightness(1.02);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.img-enhance:hover {
  filter: contrast(1.08) brightness(1.08);
}

.img-grow {
  transition: transform var(--transition-slow);
}

.premium-card:hover .img-grow {
  transform: scale(1.05);
}

.certificate-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.soft-shadow {
  box-shadow: var(--shadow-soft);
}

.rounded {
  border-radius: 12px;
}


/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 95% 100%, 0 100%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-primary.large {
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  border-radius: 4px;
}

.btn-secondary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-book {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: 30px;
}

.btn-book:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
  background: linear-gradient(to bottom, rgba(12, 12, 12, 0.8) 0%, transparent 100%);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.4s var(--ease);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(240, 100, 40, 0.2));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.logo-accent {
  color: var(--orange);
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  position: relative;
  transition: all var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(240, 100, 40, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(200, 160, 140, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #080808 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f06428' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Particles container */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Decorative large circle */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 50vw;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotateSlow 30s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 38vw;
  height: 38vw;
  max-height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(240, 100, 40, 0.08);
  animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 4px;
  height: 24px;
  background: var(--text-muted);
  transition: var(--transition);
}

.dot.active {
  height: 40px;
  background: var(--orange);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-hero-top) 0 4rem;
}

.hero-inner {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1280px;
  padding-left: max(2rem, 6vw);
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.eyebrow-line {
  display: block;
  width: 45px;
  height: 1.5px;
  background: var(--orange);
}

.eyebrow-text {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* Title */
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.title-line {
  display: block;
  overflow: visible;
  padding-bottom: 0.1em;
}

.line-1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.35s both;
}

.line-2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
  animation: fadeSlideUp 0.9s var(--ease-out) 0.5s both;
  line-height: 1.25;
}

.line-3 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.65s both;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Description */
.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.8s both;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.95s both;
}

/* Stats — always horizontal */
.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* Mobile — same horizontal layout, just smaller */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
  }

  .stat-item {
    padding: 0 1rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.58rem;
  }
}

/* ══════════════════════════════════════
   HERO IMAGE CONTAINER
══════════════════════════════════════ */
.hero-image-container {
  position: absolute;
  right: max(2rem, 6vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: fadeSlideLeft 1s var(--ease-out) 1s both;
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-image-frame {
  position: relative;
  width: clamp(220px, 28vw, 400px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px var(--border),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(240, 100, 40, 0.08);
}

/* Decorative offset border */
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border);
  border-radius: 28px;
  pointer-events: none;
  z-index: 3;
}

/* Corner accent marks */
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  z-index: 4;
  pointer-events: none;
}

.slider-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
  transform: scale(1.04);
  z-index: 1;
}

.slide-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-image-frame:hover .slide-img.active {
  transform: scale(1.02);
}

/* Gradient overlay for depth */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 8, 8, 0.15) 0%,
      transparent 40%,
      rgba(8, 8, 8, 0.4) 100%),
    linear-gradient(90deg,
      rgba(240, 100, 40, 0.06) 0%,
      transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(240, 100, 40, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s var(--ease);
  opacity: 0.85;
}

.slider-btn:hover {
  opacity: 1;
  background: var(--orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-orange);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}



/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-image-frame {
    width: clamp(180px, 24vw, 300px);
  }
}

@media (max-width: 820px) {
  .hero-image-container {
    position: static;
    transform: none;
    animation: fadeSlideUp 0.9s var(--ease-out) 1s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto 0;
    max-width: 340px;
  }

  .hero-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .hero-image-badge {
    bottom: -1rem;
    left: -0.8rem;
  }
}

/* ══════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════ */
.strip-section {
  background: var(--orange);
  padding: 0.75rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.strip-ticker {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.about-section .section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Image side */
.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(240, 100, 40, 0.12) 0%,
      transparent 50%,
      rgba(200, 160, 140, 0.08) 100%);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-art {
  position: relative;
  width: 200px;
  height: 200px;
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.c1 {
  width: 180px;
  height: 180px;
  top: 10px;
  left: 10px;
  border-color: rgba(240, 100, 40, 0.2);
  animation: rotateSlow 15s linear infinite;
}

.c2 {
  width: 120px;
  height: 120px;
  top: 40px;
  left: 40px;
  border-color: rgba(200, 160, 140, 0.15);
  animation: rotateSlow 10s linear infinite reverse;
}

.art-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  opacity: 0.2;
}

/* Offset decorative border */
.about-visual::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: -2rem;
  bottom: -2rem;
  right: 2rem;
  border: 1px solid var(--border);
  z-index: -1;
  pointer-events: none;
}

/* Accent image */
.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 160px;
  height: 120px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-sm {
  font-size: 2.5rem;
  opacity: 0.3;
}

/* Badge */
.about-badge {
  position: absolute;
  top: 2rem;
  right: -3.5rem;
  background: var(--orange);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.5;
}

/* Text side */
.about-text {
  padding-left: 1rem;
}

.about-text .section-title {
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--orange);
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services-section {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

/* Home page service overview grid */
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--bg-card);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

/* Top orange line reveal on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--bg-card-hover);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.2rem;
}



.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240, 160, 100, 0.45);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}

.service-card:hover h3 {
  color: var(--orange-light);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.service-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.service-card:hover .service-tags span {
  border-color: var(--border);
  color: var(--text-secondary);
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 0.7rem;
}

.card-link span {
  transition: transform var(--transition);
}

.card-link:hover span {
  transform: translateX(3px);
}

/* Glow effect */
.card-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  filter: blur(60px);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: 0.06;
}

/* CTA card */
.cta-card {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%) !important;
  border: none;
}

.cta-card::before {
  display: none;
}

.cta-card:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%) !important;
}

.cta-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.cta-card-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-card h3 {
  color: #fff !important;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.cta-card .btn-primary {
  background: #fff;
  color: var(--orange);
  align-self: flex-start;
  margin-top: auto;
}

.cta-card .btn-primary::before {
  background: rgba(255, 255, 255, 0.85);
}

.cta-card .btn-primary:hover {
  color: var(--orange-dark);
}

/* ══════════════════════════════════════
   NUMBERS SECTION
══════════════════════════════════════ */
.numbers-section {
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.number-item {
  text-align: center;
}

.big-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  transition: color var(--transition);
}

.number-item:hover .big-num {
  color: var(--orange);
}

.big-plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
}

.number-item p {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.number-divider {
  width: 1px;
  height: 80px;
  background: var(--border-subtle);
}

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
.gallery-section {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  /* uniform square sizing */
}

.g-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease);
}

.g-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-item:hover .g-bg {
  transform: scale(1.06);
}

.g-color-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #252018 100%);
}

.g-color-2 {
  background: linear-gradient(135deg, #1a1410 0%, #281e14 100%);
}

.g-color-3 {
  background: linear-gradient(135deg, #1a1018 0%, #281428 100%);
}

.g-color-4 {
  background: linear-gradient(135deg, #101a18 0%, #142820 100%);
}

.g-color-5 {
  background: linear-gradient(135deg, #1a1210 0%, #3c1e10 100%);
}

/* Orange corner accent */
.g-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background: var(--orange);
  z-index: 3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}

.g-item:hover::before {
  transform: scaleY(1);
}

.g-icon {
  font-size: 3.5rem;
  opacity: 0.12;
  transition: opacity var(--transition);
}

.g-item:hover .g-icon {
  opacity: 0.18;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-overlay span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-white);
}

.gallery-cta {
  text-align: center;
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
}

.gallery-cta .btn-secondary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-cta .btn-secondary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.gallery-cta .btn-secondary:hover::after {
  opacity: 1;
}

/* ══════════════════════════════════════
   STORY & VALUES (About Page)
   ══════════════════════════════════════ */
.story-section {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.story-text h2 {
  margin-bottom: 2rem;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-milestones {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.milestone {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.m-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  width: 90px;
  flex-shrink: 0;
}

.m-text strong {
  display: block;
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.m-text {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.values-section {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.value-icon-wrap {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 2rem;
}

.value-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.value-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.value-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-white);
  opacity: 0.04;
}


/* ══════════════════════════════════════
   GLOBAL PAGE HERO (Standard for all pages)
══════════════════════════════════════ */
.page-hero {
  padding: var(--space-hero-top) 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240, 100, 40, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.7) 0%, #0c0c0c 90%);
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text-content {
  flex: 1;
  /* max-width: 650px; */
  /* padding: 100px; */
}

.page-hero h1 {
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  color: var(--text-white);
  margin: 0.5rem 0 2rem;
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--orange);
}

.page-breadcrumb .sep {
  opacity: 0.4;
}

.page-breadcrumb .current {
  color: var(--orange);
  font-weight: 600;
}

.testimonials-section {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  border-radius: 4px;
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testi-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.testi-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, transparent 50%, var(--orange) 50%);
  opacity: 0.1;
  pointer-events: none;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testi-stars {
  color: #ff9800;
  /* Facebook style gold/orange */
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 2px;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.9;
  font-style: normal;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  position: relative;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--border-subtle);
  overflow: hidden;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-platform-icon {
  position: absolute;
  top: 2rem;
  right: 0;
  width: 18px;
  height: 18px;
  fill: #1877F2;
  /* Facebook Blue */
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}

.testi-card:hover .testi-platform-icon {
  opacity: 1;
}

/* ══ Testimonial sub-layout (About page) ══ */
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.testi-quote-icon {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testi-stars {
  color: #f5b40a;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-info .name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.author-info .role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(240, 100, 40, 0.15) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
}

/* Large decorative circles */
.cta-section::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(240, 100, 40, 0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(240, 100, 40, 0.06);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.section-eyebrow.light {
  color: var(--orange-light);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #080808;
}

.footer-main {
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--orange);
}

.footer-brand p {
  font-size: 0.88rem;
  color: #ffffff; 
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 1.8rem;
  font-weight: 300; 
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.designer-link {
    color: var(--text-muted); 
    text-decoration: none;    
    font-weight: 600;         
    transition: color 0.3s ease; 
}


.designer-link:hover {
    color: var(--orange);     
    
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s var(--ease);
  z-index: 1;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  z-index: 0;
}

.social-btn:hover {
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(240, 100, 40, 0.2);
}

.social-btn:hover::before {
  transform: translateY(0);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: #ffffff;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--orange);
}
.footer-contact a {
  display: block; 
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--orange);
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-section {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.contact-info-panel h2 {
  margin-bottom: 2rem;
}

.contact-info-panel p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--orange);
  transform: translateX(12px);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.info-value {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

.info-value a:hover {
  color: var(--orange);
}

.map-panel {
  height: 100%;
  min-height: 650px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  min-height: 650px;
}

.hours-list {
  max-width: 260px;
  /* Constrain width to keep it compact */
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.hours-list li span:first-child {
  color: var(--text-muted);
  color: #ffffff;
}

.hours-list li span:last-child {
  color: var(--text-secondary);
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.footer-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  color: #ffffff;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: unset;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: 150ms;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════ */
.legal-page {
  background-color: var(--bg-primary);
}

.legal-content-section {
  margin-top: 1.5rem; 
}

.legal-text {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2.1;
  color: var(--text-secondary);
  font-size: 1.15rem;
}

.legal-text h2 {
  color: var(--text-white);
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.legal-text h3 {
  color: var(--text-white);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-text p {
  margin-bottom: 2rem;
}

.legal-text ul {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  list-style: disc;
}

.legal-text ul li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-text a {
  color: var(--orange);
  text-decoration: underline;
  transition: color var(--transition);
}

.legal-text a:hover {
  color: var(--orange-light);
}

/* ══════════════════════════════════════
   FLOATING PARTICLES (JS generated)
   ══════════════════════════════════════ */
.particle {
  position: absolute;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  animation: particleDrift linear infinite;
  opacity: 0;
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateY(-80vh) rotate(360deg);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-panel {
    display: none;
  }

  .about-section .section-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-badge {
    right: -1rem;
  }

  .about-text {
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g-large {
    grid-row: span 1;
  }

  .g-wide {
    grid-column: span 2;
  }

  .numbers-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .number-divider {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0c0c0c;
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 3rem;
    gap: 0.3rem;
    transition: right 0.4s var(--ease);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }

  .btn-book {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: 8rem 0 4rem;
  }

  .hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .line-1,
  .line-2,
  .line-3 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .slide-indicators {
    left: 1rem;
  }

  .hero-scroll-hint {
    right: 1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .g-wide {
    grid-column: span 1;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* About badge */
  .about-badge {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    margin-top: 1rem;
  }

  .about-visual::before {
    display: none;
  }

  .about-img-accent {
    display: none;
  }

  /* Section containers — prevent horizontal overflow */
  .section-container,
  .certs-container,
  .story-grid,
  .values-container,
  .awards-inner,
  .contact-inner,
  .numbers-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    overflow-x: hidden;
  }

  /* Page hero inner */
  .page-hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1.2;
    word-break: break-word;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Service section */
  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary.large,
  .btn-outline-light {
    text-align: center;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-trust {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Extremely small screens — shrink hero text further */
  .line-1,
  .line-2,
  .line-3 {
    font-size: clamp(1.8rem, 12vw, 2.8rem);
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .section-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ══════════════════════════════════════
   LOGO IMAGE — Navbar & Footer
══════════════════════════════════════ */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.2rem;
}

/* ══════════════════════════════════════
   ABOUT SECTION — Real Photos
══════════════════════════════════════ */
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s var(--ease);
}

.about-visual:hover .about-img-main img {
  transform: scale(1.04);
}

.about-img-accent {
  overflow: hidden;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.about-img-accent:hover img {
  transform: scale(1.08);
}

/* ══════════════════════════════════════
   STORY SECTION — Real Photo
══════════════════════════════════════ */
.story-img-main {
  display: block !important;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s var(--ease);
  position: absolute;
  inset: 0;
}

.story-img-wrap:hover .story-img-main img {
  transform: scale(1.04);
}

/* ══════════════════════════════════════
   TEAM CARDS — Real Photos
══════════════════════════════════════ */
.team-photo {
  display: block !important;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

/* ══════════════════════════════════════
   GALLERY PREVIEW (Home) — Real Photos
══════════════════════════════════════ */
.g-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ══════════════════════════════════════
   CERTIFICATIONS SECTION (Global)
══════════════════════════════════════ */
.certs-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.certs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cert-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-5px);
}

.cert-img-link {
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
  cursor: zoom-in;
}

.cert-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.6s var(--ease);
}

.cert-card:hover img {
  transform: scale(1.08);
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.cert-card:hover .cert-overlay {
  opacity: 1;
}

.cert-zoom-btn {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cert-info {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cert-info h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.cert-info p {
  font-size: 0.85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.cert-preview-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.cert-preview-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cert-preview-card {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.cert-preview-image-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.cert-preview-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s var(--ease);
}

.cert-preview-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease);
  z-index: 10;
  cursor: pointer;
}

.cert-preview-prev {
  left: 40px;
}

.cert-preview-next {
  right: 40px;
}

.cert-preview-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(240, 100, 40, 0.4);
}

.cert-preview-details {
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
}

.cert-preview-category {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}

.cert-preview-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 800;
}

.cert-preview-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.cert-preview-close:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  transform: rotate(90deg);
}

@media (max-width: 1200px) {
  .cert-preview-card {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .cert-preview-details {
    padding: 2rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cert-preview-image-wrap {
    height: 70vh;
  }
}

@media (max-width: 760px) {
  .certs-section {
    padding: 4rem 0;
  }

  .section-container {
    padding: 0 1.25rem;
  }

  .section-header {
    margin-bottom: 1.25rem;
  }

  .certs-grid {
    gap: 1rem;
  }

  .cert-card {
    min-height: auto;
  }

  .cert-info {
    padding: 1rem;
  }

  .cert-preview-details {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .cert-preview-image-wrap {
    height: 60vh;
    padding: 1rem;
  }

  .cert-preview-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .cert-preview-prev {
    left: 10px;
  }

  .cert-preview-next {
    right: 10px;
  }
}

@media (max-width: 760px) {
  .cert-preview-image-wrap {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .certs-section {
    padding: 3rem 0;
  }

  .certs-container {
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-eyebrow {
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }

  .section-subtitle {
    margin: 0 auto 1.2rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .gallery-cta {
    margin-top: 2rem;
  }

  .certs-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .cert-info {
    padding: 0.9rem;
  }

  .cert-preview-details {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .cert-preview-image-wrap {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .certs-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .gallery-cta {
    margin-top: 1.5rem;
  }

  .cert-preview-details {
    padding: 1rem 0.75rem;
    gap: 0.9rem;
  }

  .cert-preview-close {
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------
   PAGE HERO (Subpages)
-------------------------------------- */
.page-hero {
  min-height: clamp(430px, 50vh, 650px);
  padding: clamp(60px, 8vw, 100px) 0 3.5rem;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 10vw, 5.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 620px;
}

.page-breadcrumb {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  z-index: 3;
  position: relative;
}

.hero-text-content {
  padding-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240, 100, 40, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.75) 0%, #0c0c0c 90%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.hero-text-content {
  flex: 1;
  /* max-width: 620px; */
  margin-top: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.hero-image-content {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 380px);
  position: relative;
  margin-top: 0;
  animation: fadeSlideRight 0.8s var(--ease-out) 0.2s both;
}

.hero-image-content img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-image-content::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(240, 100, 40, 0.15) 0%, transparent 65%);
  z-index: -1;
  filter: blur(20px);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem 1rem;
}

.hero-stat strong {
  color: var(--text-white);
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-info-grid {
    grid-template-columns: 1fr;
  }
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.page-breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--orange);
}

.page-breadcrumb .sep {
  opacity: 0.5;
}

.page-breadcrumb .current {
  color: var(--orange);
}

.page-hero-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-line-bar {
  width: 45px;
  height: 1.5px;
  background: var(--orange);
}

.hero-line-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

@media (max-width: 900px) {
  .page-hero {
    padding: 70px 0 2.5rem;
    text-align: center;
  }

  .page-hero-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .page-breadcrumb {
    justify-content: center;
  }

  .page-hero-line {
    justify-content: center;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .hero-image-content {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════
   GLOBAL SUBPAGE LAYOUT FIXES
══════════════════════════════════════ */

/* Contact Page Layout */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-panel h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  max-width: 500px;
}

.info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.info-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.info-value {
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.5;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.today {
  font-weight: 600;
}

.map-panel {
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  height: auto;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.map-section {
  width: 100%;
  flex: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.map-iframe {
  width: 100%;
  flex: 1;
  min-height: 520px;
  border: none;
  filter: grayscale(50%) contrast(110%);
  transition: var(--transition-slow);
}

.map-panel:hover .map-iframe {
  filter: grayscale(0%) contrast(100%);
}

/* About Page Layout */
.story-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.story-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.story-text {
  max-width: 860px;
  margin: 0 auto;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-milestones {
  margin: 3rem 0;
  display: grid;
  gap: 1.5rem;
}

.milestone {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.m-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  width: 80px;
}

.m-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.m-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.values-section {
  padding: 5rem 0;
}

.values-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.value-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.value-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(240, 100, 40, 0.18);
  line-height: 1;
  transition: all var(--transition);
  pointer-events: none;
}

.value-card:hover .value-num {
  color: rgba(240, 100, 40, 0.4);
  transform: translateY(-5px);
}

.awards-strip {
  padding: 4rem 0;
  background: var(--orange-glow-sm);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.awards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.award-icon {
  color: var(--orange);
  font-size: 1.5rem;
}

.award-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-white);
}

.award-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Services Page Layout */
.services-nav {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.services-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
}

.tab-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.tab-link.active,
.tab-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.service-section {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.service-cat-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-info-panel h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.service-info-panel p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.service-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.highlight-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: bold;
}

/* Services page sub-grid (inside service sections) */
.service-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
}

.service-card-img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Gallery Page Layout */
.gallery-nav {
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.filter-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

.gallery-section {
  padding: 4rem 0;
}

.gallery-count {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.g-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.g-item:hover img {
  transform: scale(1.08);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.3rem;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.g-cat {
  font-size: 0.8rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transform: translateY(20px);
  transition: transform var(--transition) 0.1s;
}

.g-item:hover .g-label,
.g-item:hover .g-cat {
  transform: translateY(0);
}

.g-zoom-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(240, 100, 40, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.g-item:hover .g-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.g-item.hidden {
  display: none;
}

/* ══════════════════════════════════════
   PREMIUM IMAGE VIEWER (IN-PLACE)
══════════════════════════════════════ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), opacity 0.4s var(--ease);
}

.lb-overlay.open {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(15px);
  opacity: 1;
  pointer-events: all;
}

.lb-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb-img-wrap {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.4, 0, 0, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s var(--ease);
}

.lb-img-wrap.changing img {
  opacity: 0;
  transform: scale(0.95);
}

/* UI Elements */
.lb-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease) 0.3s;
}

.lb-overlay.open .lb-ui {
  opacity: 1;
  transform: translateY(0);
}

.lb-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s var(--ease);
}

.lb-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.lb-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.lb-arrow {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(5px);
}

.lb-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.lb-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  width: 100%;
  padding: 0 2rem;
}

.lb-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.lb-meta {
  font-size: 0.8rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.lb-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Animations */
@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lb-nav {
    padding: 0 1rem;
  }

  .lb-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .lb-title {
    font-size: 1.4rem;
  }

  .lb-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 3.5rem 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-copper);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-icon {
  color: var(--orange);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Expands to show the content */
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════ */

@media (max-width: 1200px) {
  .section-container {
    padding: 0 2rem;
  }

  .hero-inner {
    padding-left: 2rem;
  }

  .nav-container {
    padding: 0 2rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 1.2rem 0;
  }

  .nav-logo-img {
    height: 44px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.8rem;
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0.02em;
  }

  .nav-right .btn-book {
    padding: 0.6rem 1.5rem;
    font-size: 0.72rem;
  }

  .page-breadcrumb {
    font-size: 0.85rem;
    justify-content: center;
  }

  .services-nav-inner,
  .gallery-nav-inner {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-nav-inner::-webkit-scrollbar,
  .gallery-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .service-section-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-inner {
    padding: 0 1.5rem;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

  .about-section .section-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 1.5rem;
    transform: scale(0.9);
  }

  .m-year {
    font-size: 1.4rem;
    width: 60px;
  }

  .services-grid,
  .gallery-grid,
  .certs-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .section-container {
    padding: 0 1.25rem;
  }

  .line-1,
  .line-2,
  .line-3 {
    font-size: 3.2rem;
  }

  .about-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin: -2rem auto 0;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .awards-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .info-card {
    padding: 1.25rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .gallery-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-num {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   HOME PAGE CERTS SLIDER
   ══════════════════════════════════════ */
.home-certs-slider-container {
  position: relative;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding: 0 4.5rem;
  /* Space for arrows */
}

.home-certs-slider {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  /* Space for hover transform */
}

.home-certs-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.home-certs-track .cert-card {
  flex: 0 0 calc((100% - (3 * 1.5rem)) / 4);
  /* Show 4 by default on desktop */
  min-width: 0;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 10;
  box-shadow: var(--shadow);
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 25px rgba(240, 100, 40, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-arrow.disabled {
  opacity: 0.2;
  pointer-events: none;
  filter: grayscale(1);
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.4);
  box-shadow: 0 0 12px var(--orange-glow);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Overrides for Slider */
@media (max-width: 1100px) {
  .home-certs-track .cert-card {
    flex: 0 0 calc((100% - (2 * 1.5rem)) / 3);
  }
}

@media (max-width: 850px) {
  .home-certs-slider-container {
    padding: 0 1rem;
  }

  .home-certs-track .cert-card {
    flex: 0 0 calc((100% - (1 * 1.5rem)) / 2);
  }

  .slider-arrow {
    display: none;
  }

  .home-certs-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-certs-slider::-webkit-scrollbar {
    display: none;
  }

  .home-certs-track .cert-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 550px) {
  .home-certs-track .cert-card {
    flex: 0 0 100%;
  }
}

.small-hero {
  padding-top: 3rem !important;
  min-height: unset !important;
}

.legal-content-section {
  margin-top: 0 !important;
}

/* ══════════════════════════════════════
   SEVONROO — RESPONSIVE PATCH
   Existing styles    
══════════════════════════════════════ */

/* ──────────────────────────────────────
   HERO — Mobile layout fix
────────────────────────────────────── */
@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
    padding-bottom: 2rem;
  }

  .hero-content {
    width: 100%;
    padding: 4rem 0 1.5rem;
  }

  .hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .line-1,
  .line-2,
  .line-3 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .hero-desc {
    font-size: 0.93rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  /* Stats row — horizontal on mobile */
  .hero-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 1.5rem;
    max-width: 100%;
    overflow-x: auto;
  }

  .stat-item {
    padding: 0 1.2rem;
    text-align: center;
    flex-shrink: 0;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
  }

  /* Image — below content, full width */
  .hero-image-container {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem 2rem;
    animation: fadeSlideUp 0.9s var(--ease-out) 1s both;
  }

  .hero-image-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  /* Hide decorative circles on mobile */
  .hero::before,
  .hero::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 3rem;
  }

  .line-1,
  .line-2,
  .line-3 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .stat-item {
    padding: 0 0.9rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.58rem;
  }
}

/* ──────────────────────────────────────
   ABOUT SECTION — mobile fix
────────────────────────────────────── */
@media (max-width: 900px) {
  .about-section .section-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    padding-left: 0;
  }

  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-visual::before {
    display: none;
  }

  .about-badge {
    position: absolute;
    top: auto;
    bottom: -1.5rem;
    right: 1rem;
  }

  .about-img-main {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 600px) {
  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    width: fit-content;
    margin: 1rem auto 0;
  }
}

/* ──────────────────────────────────────
   SERVICES GRID — responsive
────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1rem;
  }
}

/* ──────────────────────────────────────
   NUMBERS SECTION — stack on mobile
────────────────────────────────────── */
@media (max-width: 700px) {
  .numbers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .number-divider {
    display: none;
  }

  .big-num {
    font-size: 3rem;
  }
}

/* ──────────────────────────────────────
   GALLERY GRID — responsive
────────────────────────────────────── */
@media (max-width: 900px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────
   CERTS SLIDER — responsive
────────────────────────────────────── */
@media (max-width: 1100px) {
  .home-certs-track .cert-card {
    flex: 0 0 calc((100% - (2 * 1.5rem)) / 3);
  }
}

@media (max-width: 850px) {
  .home-certs-slider-container {
    padding: 0 1rem;
  }

  .home-certs-track .cert-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .slider-arrow {
    display: none;
  }

  /* Swipe-friendly on mobile */
  .home-certs-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-certs-slider::-webkit-scrollbar {
    display: none;
  }

  .home-certs-track .cert-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 540px) {
  .home-certs-track .cert-card {
    flex: 0 0 80vw;
  }
}

/* ──────────────────────────────────────
   CERT PREVIEW PANEL — mobile
────────────────────────────────────── */
@media (max-width: 900px) {
  .cert-preview-card {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh auto;
    overflow-y: auto;
  }

  .cert-preview-image-wrap {
    height: 60vh;
    padding: 1.5rem;
  }

  .cert-preview-details {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
  }

  .cert-preview-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 540px) {
  .cert-preview-image-wrap {
    height: 50vh;
    padding: 1rem;
  }

  .cert-preview-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .cert-preview-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .cert-preview-prev { left: 8px; }
  .cert-preview-next { right: 8px; }
}

/* ──────────────────────────────────────
   STRIP / TICKER — always visible
────────────────────────────────────── */
.strip-section {
  overflow: hidden;
}

/* ──────────────────────────────────────
   FOOTER — mobile fix
────────────────────────────────────── */
/* ══════════════════════════════════════
   MOBILE FOOTER RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 540px) {

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    text-align: left;
    align-items: start;
  }

  /* Brand Section Full Width */
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 1rem auto 0;
    line-height: 1.7;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 1.2rem;
  }

  /* Quick Links Left */
  .footer-col:nth-child(2) {
    grid-column: 1;
  }

  /* Services Right */
  .footer-col:nth-child(3) {
    grid-column: 2;
  }

  /* Contact Full Width Bottom */
  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 0.7rem;
  }

  .footer-col ul li a,
  .footer-contact a {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .hours-list {
    margin-top: 1.2rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  /* Bottom Footer */
  .footer-bottom .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-legal a {
    font-size: 0.82rem;
  }
}

/* ──────────────────────────────────────
   NAVBAR — mobile overlay menu
────────────────────────────────────── */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.6rem;
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0.02em;
  }
}

/* ──────────────────────────────────────
   SECTION CONTAINER — safe padding
────────────────────────────────────── */
@media (max-width: 600px) {
  .section-container,
  .certs-container,
  .numbers-inner,
  .footer-container,
  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ──────────────────────────────────────
   PAGE HERO (subpages) — mobile
────────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .page-breadcrumb {
    justify-content: center;
  }

  .page-hero-line {
    justify-content: center;
  }

  .hero-text-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-image-content {
    max-width: 280px;
    margin: 0 auto;
  }
}




@media (max-width: 768px) {

  .certs-section {
    padding: 3rem 0;
  }

  .certs-container {
    padding: 0;          
  }

  .certs-container .section-header {
    padding: 0 1.25rem; 
  }

  /* Grid → Flex Slider */
  .certs-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.25rem 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset; /* grid override reset */
  }

  .certs-grid::-webkit-scrollbar {
    display: none;
  }

  /* Card fixed width */
  .cert-card {
    flex: 0 0 72vw;     
    max-width: 280px;
    scroll-snap-align: start;
  }

}


/* about owner image responsive */
@media (max-width: 768px) {
  .story-image {
    max-width: 100% !important;
  }

  .story-image > div {
    max-width: 280px !important;
  }
}