/* ================================================================
   TIDE LINE v2 â€” DARK INDUSTRIAL LUXURY
   Fonts: Plus Jakarta Sans (display) + Outfit (body)
   Theme: Deep navy/charcoal | Electric orange | Glass effects
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --ink: #08111c;
  --deep: #0d1b2a;
  --navy: #0f2640;
  --blue: #0e4f8c;
  --blue-glow: #1a6abf;
  --fire: #f5621e;
  --fire-lt: #ff7a36;
  --ember: #ff9d5c;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --slate: #8fa3ba;
  --border: rgba(255, 255, 255, 0.08);
  --border-lt: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-md: rgba(255, 255, 255, 0.07);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --r: 16px;
  --r-lg: 28px;
  --shadow-fire: 0 0 40px rgba(245, 98, 30, 0.3);
  --shadow-card: 0 8px 48px rgba(0, 0, 0, 0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.65s;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;

}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
}



/* â”€â”€ Noise Texture Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* â”€â”€ Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 120px 0;
}

.accent {
  color: var(--fire);
}

/* â”€â”€ Eyebrow label â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--fire);
  border-radius: 2px;
}

/* â”€â”€ Section Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-head {
  max-width: 700px;
  margin-bottom: 72px;
}

.sec-head.center {
  text-align: center;
  margin: 0 auto 72px;
}

.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
}

.filter-controls {
  margin-top: 40px;
  display: none;
  animation: fadeSlideUp 0.5s var(--ease) both;
}

.filter-controls.show {
  display: block;
}

.view-all-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
}

.sec-head p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  border-radius: inherit;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-fire {
  background: var(--fire);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(245, 98, 30, 0.4);
}

.btn-fire:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245, 98, 30, 0.6), 0 0 20px rgba(245, 98, 30, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-outline-fire {
  background: transparent;
  color: var(--fire);
  border: 1.5px solid var(--fire);
}

.btn-outline-fire:hover {
  background: var(--fire);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1300px;
  z-index: 999;
  transition: all 0.5s var(--ease);
  pointer-events: none;
}

.site-header.scrolled {
  top: 12px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 24px;
  background: rgba(8, 17, 28, 0.5);
  backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.5s var(--ease);
  pointer-events: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .navbar {
  background: rgba(8, 17, 28, 0.8);
  padding: 8px 10px 8px 20px;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}

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

.logo-mark,
.logo-text {
  display: none;
}

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

.nav-item {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 9px 16px;
  border-radius: 10px;
  transition: all 0.3s;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--fire);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-item:hover,
.nav-item.active {
  color: var(--white);
}

.nav-item:hover::after,
.nav-item.active::after {
  left: 16px;
  right: 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fire);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  margin-left: 8px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(245, 98, 30, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 98, 30, 0.5);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

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

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 17, 42, 0.6), rgba(8, 17, 42, 0.6));
  z-index: 0;
}

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

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 98, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 98, 30, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

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

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 98, 30, 0.18) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 79, 140, 0.3) 0%, transparent 65%);
  bottom: -200px;
  left: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 98, 30, 0.1) 0%, transparent 65%);
  top: 40%;
  left: 30%;
  animation: orbFloat 10s ease-in-out infinite 3s;
}

@keyframes orbFloat {

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

  33% {
    transform: translate(30px, -40px) scale(1.05)
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 98, 30, 0.12);
  border: 1px solid rgba(245, 98, 30, 0.3);
  color: var(--ember);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s var(--ease) 0.1s both;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.7)
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s var(--ease) 0.2s both;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .stroke {
  -webkit-text-stroke: 2px var(--fire);
  color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s var(--ease) 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.8s var(--ease) 0.45s both;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeSlideUp 0.8s var(--ease) 0.55s both;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-val span {
  color: var(--fire);
}

.metric-lbl {
  font-size: 0.72rem;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.metric-sep {
  width: 1px;
  height: 40px;
  background: var(--border-lt);
}

/* ================================================================
   HERO VISUAL REDESIGN (Premium Glassmorphism)
   ================================================================ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  animation: fadeSlideLeft 1s var(--ease) 0.3s both;
}

.hero-glass-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  position: relative;
  width: 85%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.6s var(--ease);
  z-index: 2;
  animation: mainFloat 6s ease-in-out infinite;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}

.hero-main-card:hover .hero-main-img {
  opacity: 1;
  filter: grayscale(0%);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8, 17, 42, 0.9));
  padding: 30px 20px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

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

.overlay-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--fire);
  font-family: var(--font-head);
}

.overlay-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.badge-1 {
  top: 10%;
  right: -5%;
  animation: badgeFloat1 5s ease-in-out infinite;
}

.badge-2 {
  bottom: 15%;
  left: -5%;
  animation: badgeFloat2 7s ease-in-out infinite;
}

.hero-float-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.badge-info strong {
  display: block;
  font-size: 0.9rem;
  color: white;
}

.badge-info span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Circular Badge */
.hero-experience-circle {
  position: absolute;
  top: -5%;
  left: 5%;
  width: 100px;
  height: 100px;
  padding: 5px;
  background: conic-gradient(from 0deg, var(--fire), transparent, var(--fire));
  border-radius: 50%;
  animation: rotate 10s linear infinite;
  z-index: 3;
}

.circle-inner {
  width: 100%;
  height: 100%;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circle-inner .num {
  font-weight: 800;
  color: white;
  font-size: 1.2rem;
  line-height: 1;
}

.circle-inner .txt {
  font-size: 0.6rem;
  color: var(--fire);
  text-transform: uppercase;
}

/* Animations */
@keyframes mainFloat {
  0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(3deg) translateY(-15px); }
}

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(5px); }
}

@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(15px) translateX(-5px); }
}

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

/* Mobile Adjustments */
@media (max-width: 992px) {
  .hero-visual {
    margin-top: 50px;
  }
  .hero-glass-container {
    height: 400px;
    max-width: 100%;
  }
  .hero-main-card {
    height: 300px;
  }
  .badge-1 { right: 0; }
  .badge-2 { left: 0; }
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s var(--ease) 1s both;
}

.scroll-track {
  width: 1.5px;
  height: 50px;
  background: var(--border-lt);
  overflow: hidden;
  border-radius: 2px;
}

.scroll-fill {
  width: 100%;
  height: 50%;
  background: var(--fire);
  animation: scrollTrack 1.8s ease-in-out infinite;
}

@keyframes scrollTrack {
  0% {
    transform: translateY(-100%)
  }

  100% {
    transform: translateY(200%)
  }
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: rgba(245, 98, 30, 0.06);
  border-top: 1px solid rgba(245, 98, 30, 0.15);
  border-bottom: 1px solid rgba(245, 98, 30, 0.15);
  overflow: hidden;
  padding: 20px 0;
}

.strip-track {
  display: flex;
  gap: 64px;
  animation: stripScroll 20s linear infinite;
  width: max-content;
}

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

@keyframes stripScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-item i {
  color: var(--fire);
  font-size: 1rem;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.about-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8, 17, 28, 0.7) 100%);
}

.about-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.about-num-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--fire);
  color: var(--white);
  padding: 32px 40px;
  border-radius: 20px;
  text-align: center;
  border: 5px solid var(--ink);
  box-shadow: 0 16px 48px rgba(245, 98, 30, 0.45);
  z-index: 2;
}

.about-num-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-num-card span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 6px;
}

.about-text-col h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.about-text-col p {
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 24px;
  font-size: 1rem;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 40px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 0.35s var(--ease);
}

.pillar-item:hover {
  background: var(--glass-md);
  border-color: rgba(245, 98, 30, 0.3);
  transform: translateX(6px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 98, 30, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fire);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.35s;
}

.pillar-item:hover .pillar-icon {
  background: var(--fire);
  color: var(--white);
}

.pillar-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.pillar-item p {
  color: var(--slate);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* ================================================================
   SERVICES â€” MODERN CARD GRID
   ================================================================ */
.services-section {
  background: var(--deep);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 98, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 98, 30, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.svc-card {
  background: rgba(8, 17, 28, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 98, 30, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 98, 30, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 98, 30, 0.15);
  background: rgba(8, 17, 28, 0.85);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(4, 13, 21, 0.95) 100%);
  pointer-events: none;
}

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

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

.svc-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--fire);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(245, 98, 30, 0.5);
  z-index: 2;
  transition: all 0.4s var(--ease);
}

.svc-card:hover .svc-card-icon {
  transform: rotate(-10deg) scale(1.1);
  background: var(--ember);
}

.svc-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card-content h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.svc-card-content p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.svc-card-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.svc-card-list li i {
  color: var(--fire);
  font-size: 0.85rem;
  margin-top: 4px;
}

.svc-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.svc-card-actions .btn {
  padding: 12px 24px;
  font-size: 0.82rem;
}

.svc-card-actions .btn-glass {
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .svc-card-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .svc-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .svc-card-actions .btn-glass {
    flex: 0 0 50px;
    height: 50px;
  }
}

/* ================================================================
   WHY US
   ================================================================ */
.why-section {
  background: var(--ink);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 22px;
}

.why-text p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 98, 30, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.45s;
}

.why-card:hover {
  border-color: rgba(245, 98, 30, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.why-card:hover::after {
  opacity: 1;
}

.wc-n {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.wc-ico {
  width: 52px;
  height: 52px;
  background: rgba(245, 98, 30, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--fire);
  margin-bottom: 20px;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
}

.why-card:hover .wc-ico {
  background: var(--fire);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.why-card.lit {
  background: var(--fire);
  border-color: var(--fire);
}

.why-card.lit::after {
  display: none;
}

.why-card.lit .wc-n {
  color: rgba(255, 255, 255, 0.1);
}

.why-card.lit .wc-ico {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.why-card.lit p {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-section {
  background: var(--deep);
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  animation: testiScroll 30s linear infinite;
  width: max-content;
}

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

@keyframes testiScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.testi-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  width: 380px;
  flex-shrink: 0;
  transition: all 0.4s;
}

.testi-card:hover {
  border-color: rgba(245, 98, 30, 0.3);
  background: var(--glass-md);
}

.testi-stars {
  color: var(--fire);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-av {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--fire));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.auth-av.fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
}

.testi-auth strong {
  display: block;
  font-size: 0.9rem;
}

.testi-auth span {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--fire) 0%, #c44a0f 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 44px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white-solid {
  background: var(--white);
  color: var(--fire);
  font-family: var(--font-head);
  font-weight: 800;
}

.btn-white-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.pg-hero {
  background: var(--ink);
  padding: 160px 5% 80px;
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 98, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 98, 30, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.pg-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 22px;
}

.pg-hero p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 540px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

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

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ================================================================
   ABOUT PAGE EXTRAS
   ================================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.mv-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  border-left: 3px solid var(--fire);
  transition: all 0.4s;
}

.mv-card:hover {
  background: var(--glass-md);
  transform: translateY(-4px);
}

.mv-card .mv-ico {
  font-size: 2.4rem;
  color: var(--fire);
  margin-bottom: 20px;
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--slate);
  line-height: 1.8;
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.val-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
}

.val-card:hover {
  border-color: rgba(245, 98, 30, 0.4);
  transform: translateY(-6px);
  background: var(--glass-md);
}

.val-ico {
  font-size: 2rem;
  color: var(--fire);
  margin-bottom: 16px;
}

.val-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.val-card p {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.team-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s;
}

.team-card:hover {
  border-color: rgba(245, 98, 30, 0.35);
  transform: translateY(-6px);
}

.team-av {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid var(--border);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 5px;
}

.team-info span {
  font-size: 0.8rem;
  color: var(--fire);
  font-weight: 600;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
}

.c-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 0.35s;
}

.c-item:hover {
  background: var(--glass-md);
  border-color: rgba(245, 98, 30, 0.25);
  transform: translateX(6px);
}

.c-ico {
  width: 48px;
  height: 48px;
  background: rgba(245, 98, 30, 0.12);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fire);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.35s;
}

.c-item:hover .c-ico {
  background: var(--fire);
  color: var(--white);
}

.c-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.c-item a,
.c-item span {
  color: var(--slate);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.c-item a:hover {
  color: var(--fire);
}

.contact-form-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  backdrop-filter: blur(20px);
}

.form-head {
  margin-bottom: 32px;
}

.form-head h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.form-head p {
  color: var(--slate);
  font-size: 0.9rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.35s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select {
  cursor: none;
}

.form-group select option {
  background: var(--deep);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--fire);
  background: rgba(245, 98, 30, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 98, 30, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 12px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeSlideUp 0.5s var(--ease) both;
}

.form-success i {
  font-size: 3rem;
  color: #4ade80;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--slate);
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
  margin-top: -60px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85);
}

/* ================================================================
   SOCIAL LINKS
   ================================================================ */
.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.9rem;
  transition: all 0.35s;
}

.social-row a:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #040d15;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 5% 60px;
  max-width: 1260px;
  margin: 0 auto;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  color: var(--slate);
  font-size: 0.88rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--fire);
  transform: translateX(4px);
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--fire);
  transition: width 0.3s;
}

.footer-col ul li a:hover::before {
  width: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.contact-list li i {
  color: var(--fire);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list li a {
  color: var(--slate);
}

.contact-list li a:hover {
  color: var(--fire);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 1260px;
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--fire);
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-anim="right"] {
  transform: translateX(30px);
}

[data-anim="left"] {
  transform: translateX(-30px);
}

[data-anim="scale"] {
  transform: scale(0.92);
}

[data-anim].in {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

[data-delay="6"] {
  transition-delay: 0.6s;
}

[data-delay="7"] {
  transition-delay: 0.7s;
}

[data-delay="8"] {
  transition-delay: 0.8s;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .section-pad {
    padding: 80px 0;
  }

  .navbar {
    padding: 14px 5%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 13, 21, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    right: 0; /* Not needed given left:0 width:100% but kept for consistency */
  }

  .nav-item {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
  }

  .nav-links.open .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) .nav-item { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) .nav-item { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) .nav-item { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) .nav-item { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) .nav-item { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(6) .nav-item { transition-delay: 0.35s; }
  .nav-links.open li:nth-child(7) .nav-item { transition-delay: 0.4s; }
  .nav-links.open li:nth-child(8) .nav-item { transition-delay: 0.45s; }
  .nav-links.open li:nth-child(9) .nav-item { transition-delay: 0.5s; }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .metric-val {
    font-size: 1.5rem;
  }

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

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

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .contact-form-card {
    padding: 32px 24px;
  }

  .strip-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 24px;
  }

  .metric-sep {
    display: none;
  }

  .about-frame img {
    height: 320px;
  }

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

  .footer-main {
    gap: 32px;
  }
}

/* ================================================================
   NEW NAV DROPDOWN
   ================================================================ */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #040d15;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.nav-dropdown li a:hover {
  background: rgba(245, 98, 30, 0.1);
  color: var(--fire);
  padding-left: 28px;
}

.nav-item i {
  font-size: 0.75rem;
  margin-left: 4px;
  opacity: 0.5;
}

/* Card Filtering */
.svc-card.filtered-out {
  display: none !important;
}

.svc-card.filtered-in {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0 auto;
}

/* Filter Controls */
.filter-controls {
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  margin-bottom: 24px;
}
.filter-controls.show {
  display: block;
  opacity: 1;
}
.view-all-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.view-all-btn:hover {
  background: var(--fire);
  color: var(--white);
  transform: translateY(-2px);
}

/* Detailed Service Sections */
.services-detail-wrap {
  display: none;
  animation: fadeSlideUp 0.6s var(--ease) both;
}

.services-detail-wrap.show {
  display: block;
}

.svc-detail-section {
  display: none;
  padding: 40px 0;
}

.svc-detail-section.active {
  display: block;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8, 17, 28, 0.8) 100%);
  pointer-events: none;
}

.detail-visual:hover img {
  transform: scale(1.05);
}

.detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.detail-desc {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--fire);
  font-size: 1.1rem;
}

.detail-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-visual {
    order: -1;
  }
}

.site-footer .logo-img {
  height: 60px;
  margin-bottom: 20px;
}
@media (min-width: 0px) { /* WhatsApp Floating Icon */
  .whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wa-float 3s ease-in-out infinite;
  }

  .whatsapp-float:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
    color: #fff;
  }

  @keyframes wa-float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      left: 20px;
      bottom: 80px;
      width: 50px;
      height: 50px;
      font-size: 26px;
    }
  }
}

/* â”€â”€ Service Detail Enhanced â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-detail-wrap {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.services-detail-wrap.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.svc-detail-section {
  display: none;
}

.svc-detail-section.active {
  display: block;
  animation: fadeSlideUp 0.8s var(--ease) both;
}

/* Detailed Grid Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.detail-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}

.detail-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-content .label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245, 98, 30, 0.1);
  color: var(--fire);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.detail-desc {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 98, 30, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  color: var(--fire);
}

.detail-actions {
  display: flex;
  gap: 20px;
}

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

@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .detail-visual {
    order: -1;
  }
  
  .detail-features {
    grid-template-columns: 1fr;
  }
}

.svc-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.svc-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fire);
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  border: none;
  padding: 10px 0;
}

.svc-back-btn:hover {
  transform: translateX(-5px);
  color: var(--fire-lt);
}

.svc-gallery-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 60px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-gallery-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--border);
  background: var(--glass);
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 98, 30, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-ico {
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover .gallery-ico {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .svc-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .svc-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* -- Mini Photo Grid ----------------------------------- */
.mini-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.mpg-item {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  position: relative;
}

.mpg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.mpg-item:hover img {
  transform: scale(1.08); 
}

@media (max-width: 900px) {
  .mini-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .mini-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   LIGHT THEME OVERRIDE — Modern Clean Professional
   Overrides the dark industrial theme with bright, welcoming design
   ================================================================ */

/* -- 1. Root Variables — Light Palette */
:root {
  --ink:      #1E2A3A;
  --deep:     #F5F7FA;
  --navy:     #EEF1F6;
  --fire:     #F5621E;
  --fire-lt:  #FF7A36;
  --ember:    #FF9D5C;
  --white:    #1E2A3A;
  --slate:    #64748B;
  --border:   rgba(0,0,0,0.08);
  --border-lt:rgba(0,0,0,0.12);
  --glass:    rgba(255,255,255,0.85);
  --glass-md: rgba(255,255,255,0.95);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --r-xl: 24px;
}

body { background: #F5F7FA; color: #1E2A3A; }
body::before { display: none; }
h1,h2,h3,h4,h5,h6 { color: #1E2A3A; }
.sec-head h2 { color: #1E2A3A; }
.sec-head p  { color: #64748B; }

/* Navbar */
.navbar { background: rgba(255,255,255,0.92) !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important; }
.site-header.scrolled .navbar { background: rgba(255,255,255,0.98) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important; }
.nav-item { color: rgba(30,42,58,0.65); }
.nav-item:hover,.nav-item.active { color: #1E2A3A; }
.nav-dropdown { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.nav-dropdown li a { color: rgba(30,42,58,0.75); }
.nav-dropdown li a:hover { background: rgba(245,98,30,0.06); color: var(--fire); }

/* Buttons */
.btn-fire { background: var(--fire); color: #ffffff !important; box-shadow: 0 4px 20px rgba(245,98,30,0.35); }
.btn-fire:hover { box-shadow: 0 8px 28px rgba(245,98,30,0.55); color: #fff !important; }
.btn-glass { background: #ffffff; color: #1E2A3A !important; border: 1.5px solid rgba(30,42,58,0.15); box-shadow: 0 2px 12px rgba(0,0,0,0.06); backdrop-filter: none; }
.btn-glass:hover { background: #F5F7FA; border-color: rgba(245,98,30,0.35); color: var(--fire) !important; }
.btn-text { color: var(--fire); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.btn-text:hover { gap: 10px; }

/* Trust Strip */
.trust-strip { background: #1E2A3A; border: none; }
.strip-item { color: rgba(255,255,255,0.55); }
.strip-item i { color: var(--fire); }

/* Hero — keep dark for video readability */
.hero-title { color: #fff; }
.hero-desc  { color: rgba(255,255,255,0.8); }
.metric-val { color: #fff; }
.metric-lbl { color: rgba(255,255,255,0.55); }
.metric-sep { background: rgba(255,255,255,0.2); }
.hero-tag   { background: rgba(245,98,30,0.18); border-color: rgba(245,98,30,0.4); color: var(--ember); }
.hero::after { background: linear-gradient(rgba(10,20,40,0.60),rgba(10,20,40,0.60)); }

/* About */
.about-text-col h2,.about-text-col p { color: #1E2A3A; }
.about-text-col p { color: #64748B; }
.pillar-item { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.pillar-item:hover { border-color: rgba(245,98,30,0.25); box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.pillar-item h4 { color: #1E2A3A; }
.pillar-item p { color: #64748B; }

/* Services */
.services-section { background: #F5F7FA; }
.services-section::before { display: none; }
.svc-card { background: #fff !important; border: 1px solid rgba(0,0,0,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important; }
.svc-card:hover { border-color: rgba(245,98,30,0.3) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important; background: #fff !important; }
.svc-card::before { display: none; }
.svc-card-content h3 { color: #1E2A3A; }
.svc-card-content p  { color: #64748B; }
.svc-card-list li    { color: #475569; }
.svc-card-list li i  { color: var(--fire); }

/* Why Us */
.why-section { background: #fff; }
.why-text h2 { color: #1E2A3A; }
.why-text p  { color: #64748B; }
.why-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.why-card:hover { border-color: rgba(245,98,30,0.3); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.why-card h3 { color: #1E2A3A !important; }
.why-card p  { color: #64748B; }
.wc-n { color: rgba(30,42,58,0.04); }
.why-card.lit { background: var(--fire); border-color: var(--fire); box-shadow: 0 12px 36px rgba(245,98,30,0.35); }
.why-card.lit h3 { color: #fff !important; }
.why-card.lit p  { color: rgba(255,255,255,0.85); }
.why-card.lit .wc-ico { background: rgba(255,255,255,0.22); color: #fff; }

/* Testimonials */
.testi-section { background: #F5F7FA; }
.testi-card { background: #fff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.testi-card:hover { border-color: rgba(245,98,30,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.testi-card p { color: #475569; }
.testi-auth strong { color: #1E2A3A; }
.testi-auth span   { color: #94A3B8; }

/* CTA stays orange */
.cta-section { background: linear-gradient(135deg,#F5621E 0%,#D94E10 100%); }
.btn-white-solid { background: #fff; color: var(--fire) !important; font-weight: 800; }

/* Page Hero (inner pages) */
.pg-hero { background: linear-gradient(135deg,#1E2A3A 0%,#0F1E2E 100%); }
.pg-hero h1 { color: #fff; }
.pg-hero p  { color: rgba(255,255,255,0.7); }
.breadcrumb { color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--fire); }

/* Footer stays dark */
.site-footer { background: #1E2A3A; }
.footer-col h4 { color: rgba(255,255,255,0.9); }
.footer-col ul li a { color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--fire); }
.footer-brand p { color: rgba(255,255,255,0.5); }
.contact-list li i { color: var(--fire); }
.contact-list li a,.contact-list li span { color: rgba(255,255,255,0.5); }
.contact-list li a:hover { color: var(--fire); }
.footer-bottom { color: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.08); }
.footer-legal a { color: rgba(255,255,255,0.25); }
.footer-legal a:hover { color: var(--fire); }
.social-row a { width:36px;height:36px;background:rgba(255,255,255,0.08);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.5);transition:all 0.3s; }
.social-row a:hover { background:var(--fire);color:#fff; }

/* Contact/Form */
.contact-info h2 { color: #1E2A3A; }
.contact-info p  { color: #64748B; }
.c-item { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.c-item:hover { background: #FAFAFA; border-color: rgba(245,98,30,0.25); }
.c-item strong { color: #1E2A3A; }
.c-item a,.c-item span { color: #64748B; }
.contact-form-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 40px rgba(0,0,0,0.08); backdrop-filter: none; }
.form-head h3 { color: #1E2A3A; }
.form-head p  { color: #64748B; }
.form-group label { color: #64748B; text-transform: uppercase; font-size: 0.78rem; }
.form-group input,.form-group textarea,.form-group select { background: #F8FAFC; border: 1.5px solid rgba(0,0,0,0.12); color: #1E2A3A; }
.form-group input::placeholder,.form-group textarea::placeholder { color: #94A3B8; }
.form-group select option { background: #fff; color: #1E2A3A; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color: var(--fire); background: #fff; box-shadow: 0 0 0 3px rgba(245,98,30,0.1); }

/* Service Detail view */
.svc-back-btn { color: var(--fire); }
.detail-content h2 { color: #1E2A3A; }
.detail-desc { color: #64748B; }
.feature-item { background: #F8FAFC !important; border: 1px solid rgba(0,0,0,0.08) !important; color: #1E2A3A !important; }
.feature-item:hover { background: #fff !important; border-color: rgba(245,98,30,0.25) !important; box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important; }
.feature-item i { color: var(--fire); }
.svc-gallery-title { color: #1E2A3A; }
.svc-gallery-title::after { background: rgba(0,0,0,0.1); }
.gallery-item { border-color: rgba(0,0,0,0.07); background: #F8FAFC; }
.detail-visual { box-shadow: 0 16px 48px rgba(0,0,0,0.15); border-color: rgba(0,0,0,0.08); }

/* About page cards */
.mv-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04); border-left: 3px solid var(--fire); }
.mv-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.mv-card h3 { color: #1E2A3A; }
.mv-card p  { color: #64748B; }
.val-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.val-card:hover { border-color: rgba(245,98,30,0.3); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.val-card h4 { color: #1E2A3A; }
.val-card p  { color: #64748B; }
.team-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); }
.team-card:hover { border-color: rgba(245,98,30,0.3); }
.team-av { background: linear-gradient(135deg,#EEF1F6 0%,#D4DAE7 100%); color: rgba(30,42,58,0.15); border-color: rgba(0,0,0,0.06); }
.team-info h4 { color: #1E2A3A; }

/* View all btn / filter controls */
.view-all-btn { background: #fff; border: 1.5px solid rgba(0,0,0,0.12); color: #1E2A3A; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.view-all-btn:hover { background: var(--fire); border-color: var(--fire); color: #fff; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { background: rgba(255,255,255,0.97) !important; }
  .nav-item { color: #1E2A3A !important; }
  .svc-card-actions .btn-glass { background: #F5F7FA; border-color: rgba(0,0,0,0.1); color: #1E2A3A !important; }
}

/* ================================================================
   ENHANCEMENTS v2 â€” Back-to-Top, Progress Bar, Mobile CTA, FAQ
   ================================================================ */

/* â”€â”€ Scroll Progress Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #F5621E, #FF9D5C);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(245,98,30,0.5);
}

/* â”€â”€ Back-to-Top Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #F5621E;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,98,30,0.4);
  z-index: 1050;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.3s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 8px 28px rgba(245,98,30,0.6);
  transform: translateY(-3px);
}

/* â”€â”€ Sticky Mobile CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  border-radius: 0;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -4px 24px rgba(245,98,30,0.25);
}
@media (max-width: 768px) {
  #mobile-sticky-cta { display: flex; }
  /* Push footer up enough to not overlay it */
  body { padding-bottom: 60px; }
}

/* â”€â”€ FAQ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section { background: #F5F7FA; }

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.faq-item:hover, .faq-item.open {
  border-color: rgba(245,98,30,0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #1E2A3A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: #F5621E; }
.faq-item.open .faq-q { color: #F5621E; }

.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(245,98,30,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #F5621E;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #F5621E;
  color: #fff;
}

.faq-a {
  padding: 0 28px;
  color: #64748B;
  font-size: 0.96rem;
  line-height: 1.8;
  border-top: 1px solid transparent;
  transition: border-color 0.3s;
}
.faq-item.open .faq-a {
  padding-bottom: 22px;
  padding-top: 4px;
  border-color: rgba(0,0,0,0.06);
}

/* â”€â”€ Form Validation Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.field-error {
  color: #EF4444;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  animation: fadeSlideUp 0.3s ease both;
}
.form-group input.field-invalid,
.form-group textarea.field-invalid,
.form-group select.field-invalid {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}
.form-group input.field-valid,
.form-group textarea.field-valid,
.form-group select.field-valid {
  border-color: #22C55E !important;
}

/* â”€â”€ WhatsApp z-index fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float { z-index: 1090 !important; }
