/* ===================================================
   CMS SOLUTION DESK — MAIN STYLESHEET
   Color Palette:
     Background  : #111111 (charcoal black)
     Surface     : #1A1A1A
     Surface 2   : #222222
     Accent      : #EBC972 (gold)
     Text        : #FFFFFF
     Muted       : #A3A3A3
   =================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=JetBrains+Mono:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Monoton&family=Oi&display=swap');
/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === Core Palette === */
  --gold: #EBC972;
  --gold-light: #F2D898;
  --gold-dark: #C9A44E;
  --gold-glow: rgba(235, 201, 114, 0.25);
  --gold-border: rgba(235, 201, 114, 0.3);

  --bg: #111111;
  --bg2: #171717;
  --surface: #1A1A1A;
  --surface2: #222222;
  --surface3: #2A2A2A;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(235, 201, 114, 0.35);

  --text: #FFFFFF;
  --text-muted: #A3A3A3;
  --text-dim: #6B6B6B;

  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-pill: 9999px;

  --nav-h: 80px;
  --transition: 0.3s ease;
}

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

body {
  background: var(--bg) !important;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Override Tailwind body defaults */
body.bg-neutral-950 {
  background: var(--bg) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 4px;
}

::selection {
  background: rgba(235, 201, 114, 0.25);
  color: white;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Gold gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #111111;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(235, 201, 114, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: rgba(235, 201, 114, 0.06);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: rgba(235, 201, 114, 0.15);
  border-color: var(--gold);
  color: white;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: rgba(235, 201, 114, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.badge span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAVIGATION ===== */
/* Override nav Tailwind classes to apply our theme */
nav.sticky,
nav[class*="sticky"] {
  background: rgba(17, 17, 17, 0.96) !important;
  border-bottom: 1px solid rgba(235, 201, 114, 0.12) !important;
  backdrop-filter: blur(16px) !important;
  padding: 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  height: var(--nav-h) !important;
}

nav.sticky>div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo area */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

/* Nav links container */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Nav link */
.nav-link {
  position: relative;
  padding: 0.5rem 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--transition);
  font-family: var(--font-body);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(235, 201, 114, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* Nav CTA button */
.nav-cta {
  display: none;
  margin-left: 1rem;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111111 !important;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: box-shadow var(--transition), transform 0.2s;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.nav-cta:hover {
  box-shadow: 0 0 24px rgba(235, 201, 114, 0.5);
  transform: scale(1.04);
}

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Cart button in nav */
nav button[class*="rounded-xl"] {
  background: rgba(235, 201, 114, 0.08) !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--gold) !important;
}

nav button[class*="rounded-xl"]:hover {
  background: rgba(235, 201, 114, 0.18) !important;
}

/* Cart count badge */
nav .absolute[class*="bg-rose"] {
  background: var(--gold) !important;
  color: #111111 !important;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
  border-top: 1px solid var(--gold-border);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: color 0.2s, background 0.2s;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--gold);
  background: rgba(235, 201, 114, 0.1);
}

.mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111111;
  border-radius: var(--radius-lg);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  --hero-mx: 0;
  --hero-my: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(50% + var(--hero-mx, 0)*30px) calc(50% + var(--hero-my, 0)*20px),
      rgba(235, 201, 114, 0.1),
      transparent 55%);
}

.hero-orb1,
.hero-orb2,
.hero-orb3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-orb1 {
  width: min(450px, 55vw);
  height: min(450px, 55vw);
  background: rgba(235, 201, 114, 0.12);
  top: 15%;
  left: 5%;
  transform: translate(calc(var(--hero-mx, 0)*20px), calc(var(--hero-my, 0)*10px));
  animation: float 20s ease-in-out infinite;
}

.hero-orb2 {
  width: min(380px, 48vw);
  height: min(380px, 48vw);
  background: rgba(235, 201, 114, 0.08);
  bottom: 15%;
  right: 5%;
  transform: translate(calc(var(--hero-mx, 0)*-15px), calc(var(--hero-my, 0)*-15px));
  animation: float 25s ease-in-out infinite reverse;
  animation-delay: -8s;
}

.hero-orb3 {
  width: min(300px, 38vw);
  height: min(300px, 38vw);
  background: rgba(200, 160, 60, 0.1);
  top: 40%;
  right: 20%;
  transform: translate(calc(var(--hero-mx, 0)*10px), calc(var(--hero-my, 0)*25px));
  animation: float 18s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: calc(var(--nav-h) + 3rem) 1.25rem 4rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Hero badge */
.hero-badge {
  margin-bottom: 1.75rem;
}

.hero-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(235, 201, 114, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
}

.hero-badge-inner span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-badge-icon {
  font-size: 0.95rem;
  -webkit-text-fill-color: initial;
  background: none;
}

/* Hero title — SMALLER than before */
.hero-title {
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.hero-title .line1 {
  color: white;
  display: block;
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .line3 {
  color: white;
  display: block;
  font-size: 0.72em;
  margin-top: 0.1em;
  letter-spacing: 0.08em;
}

/* Hero sub */
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-sub strong {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Hero buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 38rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.hero-stat-val {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

/* ===== BG EFFECTS ===== */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(235, 201, 114, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(235, 201, 114, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ===== SECTION BASICS ===== */
.section {
  padding: 5.5rem 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-badge {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== CARDS ===== */
.card-glow {
  position: relative;
  border-radius: var(--radius-2xl);
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: transparent;
  transition: background 0.4s;
  pointer-events: none;
  z-index: 0;
}

.card-glow:hover::before {
  background: rgba(235, 201, 114, 0.15);
  filter: blur(12px);
}

.card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--surface), var(--surface2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  transition: border-color var(--transition);
}

.card-glow:hover .card-inner {
  border-color: var(--gold-border);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -25px) scale(1.08);
  }

  66% {
    transform: translate(-30px, 18px) scale(0.96);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

.will-animate {
  opacity: 0;
}

.gsap-from-below {
  transform: translateY(60px);
}

.gsap-from-left {
  transform: translateX(-60px);
}

.gsap-from-right {
  transform: translateX(60px);
}

.gsap-scale-in {
  transform: scale(0.8);
}

/* ===== SERVICE SLIDER ===== */
.services-slider {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: var(--bg);
}

.services-slider .slider-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(235, 201, 114, 0.08), transparent 25%),
    radial-gradient(circle at 85% 45%, rgba(200, 160, 60, 0.06), transparent 22%);
  pointer-events: none;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  will-change: transform;
}

.slider-card {
  position: relative;
  min-width: 280px;
  flex: 0 0 280px;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(235, 201, 114, 0.04);
  border: 1px solid rgba(235, 201, 114, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition), transform var(--transition);
}

.slider-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.slider-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(235, 201, 114, 0.08), transparent 25%);
  opacity: 0.5;
  pointer-events: none;
}

.slider-card-inner {
  position: relative;
  z-index: 1;
}

.slider-card .service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(235, 201, 114, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid var(--gold-border);
}

.slider-card h3 {
  margin: 1.1rem 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.25;
  color: white;
}

.slider-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .slider-card {
    min-width: 310px;
  }
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(to bottom, var(--bg), rgba(235, 201, 114, 0.04), var(--bg));
}

.why-card {
  padding: 2.25rem;
  height: 100%;
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(235, 201, 114, 0.1);
}

.why-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #111111;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.9rem;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ===== SERVICE TAB CARD ===== */
.service-tab-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-tab-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .service-tab-card {
    grid-template-columns: 1.2fr 1fr;
  }
}

.stc-visual {
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.stc-icon-bg {
  font-size: clamp(6rem, 15vw, 9rem);
  opacity: 0.1;
  position: absolute;
}

.stc-icon-center {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.stc-icon-center svg {
  width: 48px;
  height: 48px;
  color: #111111;
}

.stc-body {
  padding: 0.5rem 0;
}

.stc-tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(235, 201, 114, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.stc-body h3 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.stc-body p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.stc-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.stc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.stc-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(235, 201, 114, 0.1), transparent 65%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 3rem;
}

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #111111;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(235, 201, 114, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(235, 201, 114, 0.55);
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
}

.page-header h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  background: var(--bg) !important;
  border-top: 1px solid rgba(235, 201, 114, 0.15) !important;
  color: var(--text-muted);
}

/* Override Tailwind footer classes */
footer.bg-neutral-950 {
  background: var(--bg) !important;
}

footer .border-neutral-800 {
  border-color: rgba(235, 201, 114, 0.12) !important;
}

footer h3,
footer h5 {
  color: var(--text) !important;
  font-family: var(--font-body) !important;
}

/* Gold accent in footer */
footer h5[class*="font-mono"] {
  color: var(--gold) !important;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Footer company icon */
footer .w-8.h-8.rounded-full {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #111111 !important;
}

/* Sunday rentals */
footer .text-rose-400 {
  color: var(--gold) !important;
}

footer .hover\:text-neutral-400:hover {
  color: var(--gold) !important;
}

footer .footer-divider,
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(235, 201, 114, 0.15), transparent);
  margin: 2rem 0;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--surface);
  border-top: 1px solid rgba(235, 201, 114, 0.12);
  border-bottom: 1px solid rgba(235, 201, 114, 0.12);
  overflow: hidden;
  padding: 1rem 0;
}

/* ===== GSAP CURVE IMAGES ===== */
.gsap-curve-images {
  position: relative;
  height: 500px;
  margin-bottom: 80px;
}

.gsap-curve-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 360px;
  object-fit: fill;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  will-change: transform;
  border: 2px solid rgba(235, 201, 114, 0.15);
}

#gsapImg1 {
  z-index: 5;
}

#gsapImg2 {
  z-index: 4;
}

#gsapImg3 {
  z-index: 3;
}

#gsapImg4 {
  z-index: 2;
}

#gsapImg5 {
  z-index: 1;
}

/* ===== TAB CARD CONTAINER ===== */
.tab-card-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#tabPanels {
  position: relative;
  height: 60vh;
}

.tab-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(235, 201, 114, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.tab-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(235, 201, 114, 0.06), transparent 25%);
  opacity: 0.5;
  pointer-events: none;
}

/* ===== STACK CARDS ===== */
.service-stack {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-card:nth-child(n+3) {
    margin-top: -2rem;
  }
}

@media (min-width: 1024px) {
  .service-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .stack-card {
    margin-top: -2rem;
  }

  .stack-card:nth-child(-n+4) {
    margin-top: 0;
  }
}

.stack-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(34, 34, 34, 0.98));
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform-origin: center bottom;
  transition: border-color var(--transition);
}

.stack-card:hover {
  border-color: var(--gold-border);
}

.stack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(235, 201, 114, 0.06), transparent 24%);
  pointer-events: none;
}

.stack-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.stack-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  color: white;
}

.stack-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ===== OVERRIDE TAILWIND COLORS GLOBALLY ===== */
/* rose-* → gold */
[class*="bg-rose-500"],
[class*="bg-rose-600"] {
  background-color: var(--gold) !important;
  color: #111111 !important;
}

[class*="text-rose-500"],
[class*="text-rose-400"],
[class*="text-rose-600"] {
  color: var(--gold) !important;
}

[class*="border-rose-500"] {
  border-color: var(--gold-border) !important;
}

[class*="ring-rose-500"] {
  --tw-ring-color: rgba(235, 201, 114, 0.4) !important;
}

/* Sections with bg-neutral-950 need charcoal bg */
section[class*="bg-neutral-950"],
.bg-neutral-950 {
  background: var(--bg) !important;
}

section[class*="border-neutral-800"] {
  border-color: rgba(235, 201, 114, 0.1) !important;
}

/* Section headings in inline Tailwind sections */
.text-rose-500[class*="font-mono"] {
  color: var(--gold) !important;
}

/* Service cards active state */
[class*="border-rose-500"][class*="ring-"] {
  border-color: var(--gold) !important;
}

/* Workdesk panel overrides */
section.bg-neutral-950>div>div[class*="bg-neutral-900"] {
  background: var(--surface) !important;
  border-color: rgba(235, 201, 114, 0.15) !important;
}

/* Panel badges & accents */
[class*="bg-rose-500\/10"] {
  background-color: rgba(235, 201, 114, 0.1) !important;
}

[class*="border-rose-500\/15"] {
  border-color: rgba(235, 201, 114, 0.2) !important;
}

[class*="focus\:border-rose-500"]:focus {
  border-color: var(--gold) !important;
}

[class*="hover\:bg-rose-500"]:hover,
[class*="bg-rose-600"]:not([class*="bg-rose-500\/10"]),
[class*="hover\:bg-rose-600"]:hover {
  background-color: var(--gold-dark) !important;
  color: #111111 !important;
}

/* Select Package button */
button[class*="bg-rose-600"] {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #111111 !important;
}

button[class*="bg-rose-600"]:hover,
button[class*="hover\:bg-rose-500"]:hover {
  background: var(--gold) !important;
  color: #111111 !important;
}

/* Toast override */
[class*="text-rose-500"][class*="animate-pulse"] {
  color: var(--gold) !important;
}

/* Form inputs focus */
select:focus,
input:focus,
textarea:focus {
  border-color: var(--gold) !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(235, 201, 114, 0.15);
}

/* accent-* checkboxes */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--gold);
}

.serviceCards {
  margin-top: 20px;
}

.serviceWorkshop {
  margin-top: 20px;
}

.serviceCardItems {
  cursor: pointer;
  padding: 15px;
  border-radius: 5px;
  background: rgba(15, 15, 15, 1);
}

.serviceCardItems:hover {
  background: rgb(213 177 91 / 16%);
}

.active-service-card {
  border: 1px solid rgba(235, 201, 114, 0.5) !important;
  background: rgba(15, 15, 15, 1);
  color: rgba(235, 201, 114, 0.7) !important;
}

.active-service-card span {
  color: white;
}

.active-service-card h4,
.active-service-card p {
  color: rgba(235, 201, 114, 0.7) !important;
}

/* ===== WORKDESK PANEL PADDING ===== */

/* Outer panel wrapper — the p-6 md:p-10 from blade */
.workdeskPanels>div[class*="p-"] {
  padding: 2rem 2.25rem !important;
}

/* Top header row (title + description row) */
.workdeskPanels [class*="border-b"] {
  padding-bottom: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

/* Service icon badge container */
.workdeskPanels [class*="rounded-xl"][class*="p-2.5"] {
  padding: 0.65rem !important;
}

/* Left content column */
.workdeskPanels [class*="lg:col-span-7"],
.workdeskPanels [class*="col-span-7"] {
  padding-right: 1rem;
}

/* Right pricing / form card */
.workdeskPanels [class*="lg:col-span-5"],
.workdeskPanels [class*="col-span-5"] {
  padding: 1.5rem !important;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Panel description paragraph */
.workdeskPanels p[class*="text-neutral-300"],
.workdeskPanels p[class*="leading-relaxed"] {
  margin-top: 0.5rem;
  line-height: 1.75;
}

/* Form field label */
.workdeskPanels label[class*="text-\[9px\]"],
.workdeskPanels label[class*="font-mono"] {
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

/* Select dropdowns */
.workdeskPanels select {
  padding: 0.6rem 0.85rem !important;
  border-radius: 0.6rem !important;
  font-size: 0.82rem !important;
  width: 100%;
  line-height: 1.5;
}

/* Text inputs & textareas */
.workdeskPanels input[type="text"],
.workdeskPanels input[type="email"],
.workdeskPanels input[type="number"],
.workdeskPanels textarea {
  padding: 0.6rem 0.85rem !important;
  border-radius: 0.6rem !important;
  font-size: 0.82rem !important;
  width: 100%;
  line-height: 1.5;
}

.workdeskPanels textarea {
  min-height: 4.5rem;
  resize: none;
}

/* Range slider row */
.workdeskPanels [class*="bg-neutral-900"][class*="p-2.5"] {
  padding: 0.65rem 0.85rem !important;
  border-radius: 0.6rem !important;
}

/* Checkbox enhancement row */
.workdeskPanels [class*="bg-neutral-900\/40"],
.workdeskPanels [class*="bg-neutral-900"] {
  padding: 0.85rem 1rem !important;
  border-radius: 0.6rem !important;
}

/* Individual checkbox labels */
.workdeskPanels label[class*="flex items-center"] {
  padding: 0.25rem 0;
  gap: 0.6rem;
}

/* Price + submit bottom row */
.workdeskPanels [class*="border-t"] {
  padding-top: 1rem !important;
  margin-top: 0.5rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* "Select Package" / Submit buttons */
.workdeskPanels button[class*="rounded-xl"],
.workdeskPanels button[class*="rounded-lg"],
.workdeskPanels button[class*="w-full"] {
  padding: 0.65rem 1.4rem !important;
  font-size: 0.78rem !important;
  border-radius: 0.6rem !important;
  letter-spacing: 0.08em;
}

/* Class rows in Academy panel */
.workdeskPanels [class*="p-4"][class*="rounded-xl"] {
  padding: 0.85rem 1rem !important;
  border-radius: 0.75rem !important;
}

/* Academy enrollment portal badge */
.workdeskPanels span[class*="w-fit"] {
  padding: 0.4rem 0.9rem !important;
  border-radius: 0.5rem !important;
  font-size: 0.7rem !important;
}

/* Shoot day counter row */
.workdeskPanels [class*="gap-3"] button[class*="w-6"] {
  width: 1.6rem !important;
  height: 1.6rem !important;
  border-radius: 0.4rem !important;
}

/* Fallback "coming soon" panel */
.workdeskPanels .p-10 {
  padding: 3rem 2rem !important;
}

.p-3 {
  padding: 30px !important;
}

.p-2 {
  padding: 15px !important;
}

.workdeskPanels .bg-neutral-950.border.border-neutral-800 {
  padding: 20px !important;
}

.workdeskPanels .bg-neutral-950.border-neutral-850 {
  padding: 20px !important;
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 10px !important;
}

.mb-3 {
  margin-bottom: 15px !important;
}

.workdeskPanels .border-red-500 {
  margin-top: 10px !important;
  padding: 20px !important;
}

.workdeskPanels .text-xs.font-sans.font-extrabold.text-neutral-200.truncate.uppercase {
  margin-top: 10px !important;
}

.workdeskPanels .font-mono.tracking-widest {
  margin-bottom: 10px !important;
}

.cartdrawerFrm {
  padding: 20px;
}

.cartdrawerFrm input {
  height: 40px !important;
  padding: 10px;
}


/* ============================================================
   SHARED UTILITIES — used across both pages
   ============================================================ */

.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(235, 201, 114, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.grad-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shared background orb / grid */
.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-float {
  animation: orbFloat 7s ease-in-out infinite alternate;
}

.orb-float-2 {
  animation: orbFloat 9s ease-in-out infinite alternate-reverse;
}

.about-orb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(235,201,114,0.12) 0%, transparent 70%);
  top: -120px;
  left: -80px;
}

.about-orb2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(235,201,114,0.08) 0%, transparent 70%);
  top: 0;
  right: -60px;
}

@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.05); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(235,201,114,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: rgba(235,201,114,0.08);
  border-color: var(--gold);
  color: var(--gold);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* --- Hero --- */
.about-hero {
  position: relative;
  padding: 50px 0 5rem;
  overflow: hidden;
  background: var(--bg);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.about-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* Stats row */
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.about-hero-stats::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-border), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.about-stat-val {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- Origin Section --- */
.about-origin-section {
  background: var(--bg2);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left visual card */
.about-origin-visual {
  position: relative;
}

.about-origin-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-2xl);
  padding: 3rem 2.5rem;
  text-align: center;
  overflow: hidden;
}

.about-origin-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-origin-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: rgba(235,201,114,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-origin-year {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-origin-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-origin-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.about-origin-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-border);
}

.about-origin-dots span:first-child {
  background: var(--gold);
}

/* Floating badges */
.about-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.about-float-badge-1 {
  top: -1rem;
  right: -1.5rem;
  animation-delay: 0s;
}

.about-float-badge-2 {
  bottom: 3rem;
  left: -2rem;
  animation-delay: 1.5s;
}

.about-float-badge-3 {
  bottom: -1rem;
  right: 1rem;
  animation-delay: 0.8s;
}

@keyframes badgeFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* Right body */
.about-section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-checkpoints {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.about-checkpoint {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-checkpoint-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(235,201,114,0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Core Values --- */
.about-values-section {
  background: var(--bg);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.about-value-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(235,201,114,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Timeline --- */
.about-timeline-section {
  background: var(--bg2);
}

.about-timeline {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
}

.about-timeline-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 3rem;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-dot {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--gold-border);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-timeline-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.about-timeline-dot--gold {
  border-color: var(--gold);
  background: rgba(235,201,114,0.1);
  box-shadow: 0 0 0 6px rgba(235,201,114,0.08);
}

.about-timeline-dot--gold::after {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.about-timeline-content {
  padding-top: 0.5rem;
  flex: 1;
}

.about-timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.75rem;
  background: rgba(235,201,114,0.08);
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
}

.about-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Team --- */
.about-team-section {
  background: var(--bg);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-team-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.about-team-avatar {
  margin-bottom: 1.25rem;
}

.about-team-avatar-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  margin: 0 auto;
  object-fit: cover;
}

.about-team-info {
  flex: 1;
  width: 100%;
}

.about-team-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.about-team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.about-team-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.about-team-socials {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin-top: auto;
}

.about-team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.about-team-socials a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: rgba(235,201,114,0.08);
}

/* --- Differentiators --- */
.about-diff-section {
  background: var(--bg2);
}

.about-diff-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-diff-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-diff-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.about-diff-item:hover .about-diff-num {
  color: var(--gold);
}

.about-diff-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--surface3);
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  font-variant-numeric: tabular-nums;
}

.about-diff-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.about-diff-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(235,201,114,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* --- Hero --- */
.contact-hero {
  position: relative;
  padding: 50px 0 5rem;
  overflow: hidden;
  background: var(--bg);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.contact-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Main contact layout --- */
.contact-main-section {
  background: var(--bg2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- Info column --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold-border);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(235,201,114,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Hours card */
.contact-hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-hours-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.contact-hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-row strong {
  color: var(--text);
  font-weight: 600;
}

.contact-hours-row--gold strong {
  color: var(--gold);
}

/* Socials */
.contact-socials {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.contact-socials-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.contact-socials-row {
  display: flex;
  gap: 0.65rem;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.contact-social-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: rgba(235,201,114,0.08);
  transform: translateY(-2px);
}

/* --- Form column --- */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form rows */
.cf-row {
  margin-bottom: 1.25rem;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cf-label span {
  color: var(--gold);
}

.cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cf-input-icon {
  position: absolute;
  left: 0.875rem;
  color: var(--text-dim);
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

.cf-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.cf-input::placeholder {
  color: var(--text-dim);
}

.cf-input:focus {
  border-color: var(--gold-border);
  background: var(--surface3);
  box-shadow: 0 0 0 3px rgba(235,201,114,0.08);
}

.cf-textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 0.875rem;
  padding-left: 1rem;
}

.cf-select {
  cursor: pointer;
}

.cf-select option {
  background: var(--surface2);
  color: var(--text);
}

.cf-select-arrow {
  position: absolute;
  right: 0.875rem;
  color: var(--text-dim);
  pointer-events: none;
}

/* Budget pills */
.cf-budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.cf-budget-pill {
  padding: 0.45rem 0.9rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.cf-budget-pill:hover {
  border-color: var(--gold-border);
  color: var(--text);
}

.cf-budget-pill.active {
  background: rgba(235,201,114,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* Checkbox */
.cf-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cf-check-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.cf-check-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}

.cf-check-row label a {
  color: var(--gold);
  text-decoration: none;
}

.cf-check-row label a:hover {
  text-decoration: underline;
}

/* Error messages */
.cf-error {
  display: none;
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.25rem;
}

/* Submit */
.cf-submit-row {
  margin-top: 1.75rem;
}

.cf-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.cf-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(235,201,114,0.35);
}

.cf-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cf-submit-text,
.cf-submit-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cf-spin {
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.contact-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 0.75rem;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(235,201,114,0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.contact-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.65;
}

/* --- Map Section --- */
.contact-map-section {
  background: var(--bg);
}

.contact-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-map-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(235,201,114,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-map-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-map-pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-pin-ring {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  animation: pingRing 2s ease-out infinite;
}

@keyframes pingRing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

.contact-map-pin-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(235,201,114,0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-map-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.contact-map-label strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.contact-map-label span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-map-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-map-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- FAQ --- */
.contact-faq-section {
  background: var(--bg2);
}

.contact-faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-faq-item {
  border-bottom: 1px solid var(--border);
}

.contact-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.contact-faq-btn:hover {
  color: var(--gold);
}

.contact-faq-item.open .contact-faq-btn {
  color: var(--gold);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.contact-faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.contact-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.contact-faq-item.open .contact-faq-body {
  max-height: 300px;
}

.contact-faq-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

/*.hero-title.hero-text .line1{*/
/*  font-family: "Asimovian", sans-serif;*/
/*  letter-spacing: 2px;*/
/*}*/
/*.hero-title.hero-text .line2, .hero-title.hero-text .line3{*/
/*  font-family: "Asimovian", sans-serif;*/
/*}*/

.slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: infiniteScroll 60s linear infinite;
}

.slider-card {
    flex: 0 0 350px; /* adjust width as needed */
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

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

.cf-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: cfFadeIn .2s ease;
}
.cf-popup-box {
    background: #1A1A1A;
    border: 1px solid var(--gold-border, #C9A44E);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    max-width: 380px;
    width: 90%;
    color: #fff;
}
.cf-popup-icon { color: #C9A44E; margin-bottom: 1rem; }
.cf-popup-error .cf-popup-icon { color: #e05c5c; }
.cf-popup-box h3 { margin-bottom: .5rem; }
.cf-popup-box p { color: #ccc; margin-bottom: 1.5rem; font-size: .95rem; }
.cf-popup-close {
    background: linear-gradient(135deg, #C9A44E, #EBC972);
    border: none;
    padding: .6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.cf-input-error { border-color: #e05c5c !important; }
@keyframes cfFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-hours-card,
  .contact-socials {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .about-origin-grid,
  .about-diff-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .about-float-badge-2,
  .about-float-badge-3 {
    display: none;
  }

  .about-diff-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4rem 0;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .about-stat-divider {
    width: 60px;
    height: 1px;
  }

  .about-stat-item {
    padding: 0;
  }

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

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

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

  .contact-map-features {
    gap: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  .about-float-badge {
    display: none;
  }

  .about-timeline-line {
    left: 17px;
  }
}
/* Mobile responsive for workdesk panels */
@media (max-width: 767px) {
  .workdeskPanels>div[class*="p-"] {
    padding: 1.25rem !important;
  }

  .workdeskPanels [class*="lg:col-span-7"],
  .workdeskPanels [class*="col-span-7"] {
    padding-right: 0;
  }

  .workdeskPanels [class*="lg:col-span-5"],
  .workdeskPanels [class*="col-span-5"] {
    padding: 1rem !important;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767px) {
  .gsap-curve-images {
    height: 260px;
    margin-bottom: -40px;
  }

  .gsap-curve-img {
    width: 100px;
    height: 140px;
  }

  .section-title {
    font-size: 1.65rem !important;
  }

  .section-sub {
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }

  .stc-visual {
    aspect-ratio: unset !important;
    width: max-content;
    padding: 10px;
  }

  .stc-icon-bg {
    display: none;
  }

  .stc-icon-center {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .stc-icon-center svg {
    width: 20px;
    height: 20px;
  }

  .service-tab-card {
    gap: 0.75rem !important;
  }

  .stc-body {
    padding: 0 !important;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  nav.sticky>div {
    padding: 0 1rem;
  }

  .logo img {
    width: 175px;
  }

  .hero-content {
    padding-top: 50px;
    padding-bottom: 0px;
  }

  .hero-stats {
    display: none !important;
  }

  .footerDivs {
    flex-direction: column;
  }
  .contact-main-section .container{
    padding: 0 5px !important;
  }
}

@media (max-width: 480px) {
  .hero-badge-inner {
    padding: 0.5rem 1rem;
  }

  .hero-badge-inner span {
    font-size: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.75rem 1.6rem;
    font-size: 0.88rem;
  }
}