/* ============================================================
   WEBIZZ 2026 — Premium Design System
   UAE Business Consultancy & Workspace Provider
   ============================================================ */

/* ── Google Fonts import handled in HTML ── */

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --brand-orange:        #FF6B00;
  --brand-orange-light:  #FF8C42;
  --brand-orange-dark:   #E55000;
  --brand-amber:         #FFB347;

  /* Gradients */
  --g-orange:    linear-gradient(135deg, #FF6B00 0%, #FF8C42 60%, #FFB347 100%);
  --g-orange-r:  linear-gradient(135deg, #FFB347 0%, #FF8C42 40%, #FF6B00 100%);
  --g-dark:      linear-gradient(135deg, #0D0D1A 0%, #1A1A3E 50%, #0D0D1A 100%);
  --g-glass:     linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  --g-hero:      linear-gradient(135deg, rgba(10,10,30,0.93) 0%, rgba(255,107,0,0.38) 55%, rgba(10,10,30,0.88) 100%);

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F7F8FC;
  --light:       #F0F2F7;
  --border:      rgba(0,0,0,0.07);
  --text-h:      #0D0D1A;
  --text-b:      #3D3D5C;
  --text-muted:  #7B7B9D;

  /* Dark palette */
  --dark-900:    #080815;
  --dark-800:    #0D0D1A;
  --dark-700:    #141428;
  --dark-600:    #1C1C38;
  --dark-500:    #242448;
  /* Aliases used by inner pages */
  --dark:        #0D0D1A;
  --dark-2:      #141428;

  /* Glass */
  --glass-white:  rgba(255,255,255,0.08);
  --glass-white2: rgba(255,255,255,0.14);
  --glass-border: rgba(255,255,255,0.12);
  --glass-dark:   rgba(10,10,30,0.60);

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 10px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.18);
  --shadow-xl:   0 40px 100px rgba(0,0,0,0.25);
  --glow-orange: 0 0 40px rgba(255,107,0,0.35), 0 0 80px rgba(255,107,0,0.15);
  --glow-sm:     0 0 20px rgba(255,107,0,0.28);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.18s;
  --t-base:   0.30s;
  --t-slow:   0.55s;
  --t-xslow:  0.80s;

  /* Fonts */
  --font-sans:    'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-b);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base) var(--ease); }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); }

/* ── Typography scale ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-h);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p  { color: var(--text-b); line-height: 1.8; }

/* ── Layout helpers ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.section-pad    { padding: 110px 0; }
.section-pad-sm { padding: 72px 0; }
.section-pad-lg { padding: 140px 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Gradient text ── */
.gt {
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white { color: var(--white) !important; }
.text-muted  { color: var(--text-muted) !important; }

/* ── Section label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(255,107,0,0.09);
  color: var(--brand-orange);
  border: 1px solid rgba(255,107,0,0.18);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow-dark {
  background: rgba(255,107,0,0.15);
  color: var(--brand-amber);
  border-color: rgba(255,107,0,0.28);
}

/* ── Section heading block ── */
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; }
.section-head.center p { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast) var(--ease);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

/* Primary */
.btn-primary {
  background: var(--g-orange);
  color: var(--white);
  box-shadow: var(--glow-sm), 0 6px 24px rgba(255,107,0,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-orange), 0 12px 36px rgba(255,107,0,0.40);
}
.btn-primary:active { transform: translateY(-1px); }

/* Ghost on dark */
.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-3px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}
.btn-outline:hover {
  background: var(--brand-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn i, .btn svg { font-size: 0.95rem; flex-shrink: 0; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── Icon box ── */
.icon-box {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}
.icon-box-orange { background: rgba(255,107,0,0.10); color: var(--brand-orange); }
.icon-box-glass  { background: var(--glass-white); color: var(--brand-orange); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
  display: flex; align-items: center; gap: 14px;
  animation: preLogoPulse 1.6s ease-in-out infinite alternate;
}
.pre-logo img { height: 52px; width: auto; }
.pre-logo-text {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); letter-spacing: -1px;
}
.pre-logo-text span { color: var(--brand-orange); }
@keyframes preLogoPulse {
  from { opacity: 0.7; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1.00); }
}
.pre-bar-wrap {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: var(--g-orange);
  border-radius: 3px;
  animation: preBar 1.6s var(--ease) forwards;
}
@keyframes preBar {
  0%   { width: 0%;   }
  40%  { width: 55%;  }
  70%  { width: 80%;  }
  100% { width: 100%; }
}
.pre-dots {
  display: flex; gap: 6px;
}
.pre-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,107,0,0.4);
  animation: preDot 1.2s ease-in-out infinite;
}
.pre-dots span:nth-child(2) { animation-delay: 0.2s; }
.pre-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes preDot {
  0%, 100% { background: rgba(255,107,0,0.3); transform: scale(0.8); }
  50%       { background: var(--brand-orange); transform: scale(1.3); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--t-base) var(--ease);
  padding: 0;
}

/* Transparent on hero */
.site-header .nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding var(--t-base) var(--ease);
}

/* Scrolled: glass morphism */
.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.site-header.scrolled .nav-inner { padding: 14px 0; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; transition: all var(--t-base) var(--ease-spring); }
.nav-logo:hover img { transform: scale(1.05); }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color var(--t-base) var(--ease);
  line-height: 1;
}
.logo-wordmark span { color: var(--brand-orange); }
.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
  transition: color var(--t-base) var(--ease);
}
.site-header.scrolled .logo-wordmark { color: var(--text-h); }
.site-header.scrolled .logo-sub { color: var(--text-muted); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  position: relative;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: width var(--t-base) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.site-header.scrolled .nav-links a { color: var(--text-b); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--brand-orange); }

/* Nav CTA */
.nav-end { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.80);
  font-size: 0.82rem; font-weight: 500;
  transition: color var(--t-base) var(--ease);
}
.nav-phone i { color: var(--brand-orange); font-size: 0.9rem; }
.nav-phone:hover { color: var(--white); }
.site-header.scrolled .nav-phone { color: var(--text-b); }
.site-header.scrolled .nav-phone:hover { color: var(--brand-orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.site-header.scrolled .hamburger span { background: var(--text-h); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--dark-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base) var(--ease), visibility var(--t-base);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,0.80);
  padding: 12px 40px;
  border-radius: var(--r-lg);
  transition: all var(--t-base) var(--ease);
}
.mobile-nav a:hover { color: var(--brand-orange); background: rgba(255,107,0,0.08); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  color: rgba(255,255,255,0.6); font-size: 1.4rem; cursor: pointer;
  padding: 8px; border-radius: 50%;
  transition: all var(--t-base) var(--ease);
}
.mobile-nav-close:hover { color: var(--brand-orange); transform: rotate(90deg); }
.mobile-nav .mob-cta { margin-top: 20px; }

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

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform-origin: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--g-hero);
}
.hero-overlay2 {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,8,21,0.90) 0%, transparent 45%);
}

/* Particle canvas */
#heroParticles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}

/* Light streak */
.hero-streak {
  position: absolute;
  top: -20%; right: 10%;
  width: 2px; height: 70vh;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.6), transparent);
  transform: rotate(-20deg);
  z-index: 2;
  animation: streakPulse 4s ease-in-out infinite;
}
.hero-streak2 {
  right: 30%; top: 10%;
  opacity: 0.3;
  animation-delay: 2s;
}
@keyframes streakPulse {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

.hero-inner {
  position: relative; z-index: 3;
  padding-top: 100px;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.30);
  color: var(--brand-amber);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s var(--ease-out) forwards;
}
.hero-kicker i { font-size: 0.75rem; color: var(--brand-orange); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s var(--ease-out) forwards;
}
.hero h1 em {
  font-style: normal;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s var(--ease-out) forwards;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.0s var(--ease-out) forwards;
}
.hero-pill {
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.80);
  font-size: 0.80rem; font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all var(--t-base) var(--ease);
}
.hero-pill:hover {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.40);
  color: var(--white);
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.1s var(--ease-out) forwards;
}

/* Hero bottom stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(10,10,25,0.75);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stats-inner {
  display: flex; align-items: stretch;
}
.hero-stat-item {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t-base) var(--ease);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item:hover { background: rgba(255,107,0,0.07); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--brand-orange); }
.hero-stat-label {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.9), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Keyframe utilities ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 10;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-band-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--t-base) var(--ease);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-item:hover { background: rgba(255,107,0,0.03); }
.stats-band-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800;
  color: var(--brand-orange); line-height: 1; margin-bottom: 6px;
}
.stats-band-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 32px; left: -28px;
  background: var(--g-orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--glow-sm), var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  line-height: 1; display: block;
}
.about-badge-txt {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  opacity: 0.88; margin-top: 3px; display: block;
}
.about-deco-circle {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 2px dashed rgba(255,107,0,0.2);
  z-index: -1;
}
.about-text { padding-left: 16px; }
.about-checklist {
  display: flex; flex-direction: column; gap: 13px;
  margin: 28px 0 36px;
}
.about-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.94rem; color: var(--text-b);
}
.about-checklist li i {
  color: var(--brand-orange); margin-top: 3px;
  flex-shrink: 0; font-size: 0.9rem;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 28px 32px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  group: true;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--g-orange);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow: var(--shadow-xl), var(--glow-sm);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .svc-num  { color: rgba(255,255,255,0.08); }
.service-card:hover .svc-icon-box { background: rgba(255,255,255,0.18); color: var(--white); }
.service-card:hover h3, .service-card:hover p, .service-card:hover .svc-link { color: var(--white) !important; }
.service-card:hover .svc-link { border-color: rgba(255,255,255,0.30); }
.service-card > * { position: relative; z-index: 1; }

.svc-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem; font-weight: 900;
  color: rgba(0,0,0,0.04); line-height: 1;
  transition: color var(--t-base) var(--ease);
  pointer-events: none;
}
.svc-icon-box {
  width: 60px; height: 60px;
  background: rgba(255,107,0,0.09);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--brand-orange);
  margin-bottom: 24px;
  transition: all var(--t-base) var(--ease);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; transition: color var(--t-base) var(--ease); }
.service-card p { font-size: 0.86rem; line-height: 1.7; margin-bottom: 24px; transition: color var(--t-base) var(--ease); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-orange);
  font-size: 0.82rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,107,0,0.25);
  padding-bottom: 2px;
  transition: all var(--t-base) var(--ease);
}
.svc-link i { transition: transform var(--t-base) var(--ease-spring); font-size: 0.72rem; }
.service-card:hover .svc-link i { transform: translateX(5px); }

/* ============================================================
   BUSINESS CENTER — MAIN FOCUS
   ============================================================ */
.bc-section {
  background: var(--dark-900);
  position: relative; overflow: hidden;
}
.bc-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bc-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Bento layout */
.bc-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 300px;
  gap: 14px;
  margin-top: 60px;
}
.bc-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all var(--t-slow) var(--ease);
}
.bc-card:hover { transform: scale(1.01); }
.bc-card:hover .bc-card-img { transform: scale(1.07); }
.bc-card:hover .bc-card-overlay { background: rgba(10,10,25,0.55); }
.bc-card:hover .bc-card-body { transform: translateY(0); opacity: 1; }
.bc-card:hover .bc-card-icon { background: var(--brand-orange); color: var(--white); transform: scale(1.1); }

.bc-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.bc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,21,0.92) 0%, rgba(8,8,21,0.30) 60%, transparent 100%);
  transition: background var(--t-base) var(--ease);
}
.bc-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.bc-card-icon {
  width: 46px; height: 46px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.30);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--brand-orange);
  margin-bottom: 14px;
  transition: all var(--t-base) var(--ease-spring);
  backdrop-filter: blur(8px);
}
.bc-card h3 {
  color: var(--white);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px;
}
.bc-card-body {
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--t-base) var(--ease);
}
.bc-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.83rem; line-height: 1.6; margin-bottom: 14px;
}
.bc-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-orange);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.bc-card-cta i { font-size: 0.7rem; transition: transform var(--t-base) var(--ease-spring); }
.bc-card:hover .bc-card-cta i { transform: translateX(5px); }

/* Bento spans */
.bc-span-4  { grid-column: span 4; }
.bc-span-5  { grid-column: span 5; }
.bc-span-7  { grid-column: span 7; }
.bc-span-8  { grid-column: span 8; }
.bc-span-r2 { grid-row: span 2; }

/* Dark stat card */
.bc-stat-card {
  background: var(--g-orange);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.bc-stat-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.bc-stat-card::after {
  content: '';
  position: absolute; bottom: -20px; left: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.bc-stat-card > * { position: relative; z-index: 1; }
.bc-stat-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; opacity: 0.85; }
.bc-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.bc-stat-txt { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 4px; }

/* ============================================================
   WHY WEBIZZ
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.why-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255,107,0,0);
  transition: box-shadow var(--t-base) var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { box-shadow: inset 0 0 0 1.5px rgba(255,107,0,0.25); }
.why-card:hover .why-icon { background: var(--g-orange); color: var(--white); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.09);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--brand-orange);
  margin-bottom: 20px;
  transition: all var(--t-base) var(--ease-spring);
}
.why-card h4 { margin-bottom: 10px; font-size: 1rem; }
.why-card p  { font-size: 0.86rem; color: var(--text-muted); }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners-section { background: var(--off-white); padding: 72px 0; }
.marquee-wrap {
  overflow: hidden; position: relative;
  margin-top: 48px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute; top: 0; width: 160px; height: 100%; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--off-white), transparent); }
.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-chip {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-md);
  padding: 16px 32px;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease);
  min-width: 160px;
}
.partner-chip:hover {
  border-color: var(--brand-orange);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}
.partner-chip img {
  height: 36px; width: auto;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter var(--t-base) var(--ease);
}
.partner-chip:hover img { filter: grayscale(0); }
.partner-chip-text {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-h);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { background: var(--white); padding: 72px 0; }
.clients-row {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-top: 48px;
}
.client-chip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 44px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  min-width: 160px;
  transition: all var(--t-base) var(--ease);
}
.client-chip:hover {
  border-color: var(--brand-orange);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
  background: var(--white);
}
.client-chip img { height: 36px; width: auto; object-fit: contain; }
.client-chip-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-h); }

/* ============================================================
   GALLERY — BENTO
   ============================================================ */
.gallery-section { background: var(--off-white); }
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 56px;
}
.g-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  background: var(--light);
}
.g-item:hover .g-img { transform: scale(1.08); }
.g-item:hover .g-overlay { opacity: 1; }
.g-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,107,0,0.65), rgba(10,10,25,0.30));
  opacity: 0;
  display: flex; align-items: flex-end;
  padding: 20px;
  transition: opacity var(--t-base) var(--ease);
}
.g-overlay-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  margin-left: auto;
  transition: all var(--t-base) var(--ease-spring);
}
.g-item:hover .g-overlay-icon { transform: scale(1.15); }

/* Bento spans */
.g-span-5  { grid-column: span 5; }
.g-span-7  { grid-column: span 7; }
.g-span-4  { grid-column: span 4; }
.g-span-3  { grid-column: span 3; }
.g-span-r2 { grid-row: span 2; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--dark-900);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 25% 60%, rgba(255,107,0,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-info-col h2 { color: var(--white); }
.contact-info-col > p { color: rgba(255,255,255,0.60); margin: 16px 0 40px; font-size: 1rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  transition: all var(--t-base) var(--ease);
}
.contact-detail:hover { background: rgba(255,107,0,0.08); border-color: rgba(255,107,0,0.25); }
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,0,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-orange); font-size: 1rem;
  flex-shrink: 0;
}
.cd-body strong { color: var(--white); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 5px; }
.cd-body a, .cd-body span { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: block; line-height: 1.6; transition: color var(--t-base) var(--ease); }
.cd-body a:hover { color: var(--brand-orange); }

/* Glass form card */
.form-glass-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--r-2xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(40px);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-h);
  background: var(--off-white);
  transition: all var(--t-base) var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.09);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success-msg {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--r-md);
  color: #15803D;
  font-size: 0.88rem; font-weight: 500;
  text-align: center;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section { background: var(--off-white); }
.map-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 48px;
}
.map-card iframe { width: 100%; height: 460px; border: none; display: block; }
.map-footer {
  background: var(--white);
  padding: 24px 32px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.map-footer-info { display: flex; align-items: center; gap: 14px; }
.map-footer-info i { font-size: 1.4rem; color: var(--brand-orange); }
.map-footer-info strong { display: block; font-size: 0.95rem; color: var(--text-h); }
.map-footer-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { background: var(--white); }
.reviews-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.google-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
}
.google-badge:hover { border-color: var(--brand-orange); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.google-badge-stars { display: flex; gap: 2px; color: #FBBF24; font-size: 0.9rem; margin-bottom: 2px; }
.google-badge-text strong { font-size: 1.3rem; font-family: var(--font-display); font-weight: 800; color: var(--text-h); display: block; line-height: 1; }
.google-badge-text span { font-size: 0.72rem; color: var(--text-muted); }
.google-g { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }
.google-g span:nth-child(1) { color: #4285F4; }
.google-g span:nth-child(2) { color: #EA4335; }
.google-g span:nth-child(3) { color: #FBBC05; }
.google-g span:nth-child(4) { color: #4285F4; }
.google-g span:nth-child(5) { color: #34A853; }
.google-g span:nth-child(6) { color: #EA4335; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-size: 4rem; font-family: Georgia, serif;
  color: rgba(255,107,0,0.08); line-height: 1;
}
.review-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(255,107,0,0.12); }
.review-top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.reviewer-av {
  width: 48px; height: 48px;
  background: var(--g-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.reviewer-info h5 { font-size: 0.92rem; margin-bottom: 2px; }
.reviewer-info span { font-size: 0.74rem; color: var(--text-muted); }
.review-stars { display: flex; gap: 2px; color: #F59E0B; font-size: 0.82rem; margin-bottom: 12px; }
.review-text { font-size: 0.86rem; color: var(--text-b); line-height: 1.75; }
.review-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section { background: var(--off-white); }
.ig-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.ig-brand { display: flex; align-items: center; gap: 12px; }
.ig-brand i { font-size: 1.8rem; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ig-brand h2 { margin: 0; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ig-embed-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t-base) var(--ease);
  min-height: 480px;
}
.ig-embed-wrap:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.ig-embed-wrap iframe,
.ig-embed-wrap .instagram-media { width: 100% !important; min-width: unset !important; max-width: 100% !important; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--g-orange);
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-content { text-align: center; position: relative; z-index: 1; }
.cta-band-content h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band-content p { color: rgba(255,255,255,0.80); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-800);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .logo-wordmark { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.86rem; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.95rem;
  transition: all var(--t-base) var(--ease-spring);
}
.footer-social-btn:hover { background: var(--g-orange); color: var(--white); transform: translateY(-3px); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: all var(--t-base) var(--ease);
  display: inline-flex; align-items: center; gap: 0;
}
.footer-links a:hover { color: var(--brand-orange); padding-left: 6px; }
.footer-contacts { display: flex; flex-direction: column; gap: 15px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact-item i { color: var(--brand-orange); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.50); font-size: 0.84rem;
  line-height: 1.65; display: block;
  transition: color var(--t-base) var(--ease);
}
.footer-contact-item a:hover { color: var(--brand-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.80rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); font-size: 0.80rem; transition: color var(--t-base) var(--ease); }
.footer-bottom-links a:hover { color: var(--brand-orange); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.fab-wrap {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 998;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: all var(--t-base) var(--ease-spring);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
}
.fab.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.fab:hover { transform: scale(1.12) translateY(-3px); }
.fab-top { background: var(--g-orange); color: var(--white); border: none; cursor: pointer; }
.fab-wa  { background: #25D366; color: var(--white); box-shadow: 0 8px 30px rgba(37,211,102,0.40); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark-900);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,21,0.95) 0%, rgba(255,107,0,0.20) 60%, rgba(8,8,21,0.90) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color var(--t-base) var(--ease); }
.breadcrumb a:hover { color: var(--brand-orange); }
.breadcrumb i { color: rgba(255,255,255,0.25); font-size: 0.72rem; }
.breadcrumb .bc-current { color: var(--brand-orange); font-size: 0.82rem; font-weight: 600; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.60); max-width: 560px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--t-xslow) var(--ease-out), transform var(--t-xslow) var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-30px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }
[data-delay="6"] { transition-delay: 0.60s; }

/* ============================================================
   DETAIL CARDS (service pages)
   ============================================================ */
.detail-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
}
.detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,107,0,0.12); }
.detail-card-top {
  height: 4px;
  background: var(--g-orange);
}
.detail-card-body { padding: 32px 28px; }
.detail-card-icon {
  width: 54px; height: 54px;
  background: rgba(255,107,0,0.09);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--brand-orange);
  margin-bottom: 18px;
  transition: all var(--t-base) var(--ease);
}
.detail-card:hover .detail-card-icon { background: var(--g-orange); color: var(--white); }
.detail-card h4 { margin-bottom: 12px; }
.detail-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 18px; }
.detail-list { display: flex; flex-direction: column; gap: 7px; }
.detail-list li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-b); }
.detail-list li i { color: var(--brand-orange); font-size: 0.72rem; flex-shrink: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 3px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .bc-bento { grid-template-rows: 280px 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-text { padding-left: 0; }
  .about-img-main { height: 420px; }
  .about-badge { left: 16px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
  .bc-span-4 { grid-column: span 6; }
  .bc-span-5 { grid-column: span 6; }
  .bc-span-7 { grid-column: span 6; }
  .bc-span-8 { grid-column: span 12; }
}
@media (max-width: 768px) {
  .nav-links, .nav-end .btn { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats-bar { display: none; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item:nth-child(2) { border-right: none; }
  .stats-band-item:nth-child(1),
  .stats-band-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .bc-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bc-span-4,.bc-span-5,.bc-span-7,.bc-span-8 { grid-column: 1; }
  .bc-card { height: 280px; }
  .bc-stat-card { height: 180px; }
  .bc-span-r2 { grid-row: span 1; }
  .gallery-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-span-5,.g-span-7,.g-span-4,.g-span-3 { grid-column: span 2; }
  .g-span-r2 { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-glass-card { padding: 32px 24px; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .section-pad { padding: 72px 0; }
  .section-pad-lg { padding: 90px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-bento { grid-template-columns: 1fr; }
  .g-span-5,.g-span-7,.g-span-4,.g-span-3 { grid-column: 1; }
}

/* ============================================================
   PAGE CTA BAND — shared across all inner pages
   ============================================================ */
.page-cta-band {
  position: relative;
  background: var(--dark-800);
  padding: 100px 0;
  overflow: hidden;
}
.page-cta-band::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta-band::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.4) 50%, transparent 100%);
}
.pcta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pcta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  color: #FFB347;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.pcta-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.pcta-left p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.pcta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pcta-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--g-orange);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transition: all 0.3s var(--ease);
}
.pcta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(255,107,0,0.55); }
.pcta-btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,211,102,0.1);
  border: 2px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.pcta-btn-wa:hover { background: rgba(37,211,102,0.18); border-color: #25d366; transform: translateY(-3px); }
.pcta-right { display: flex; flex-direction: column; gap: 20px; }
.pcta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pcta-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.3s;
}
.pcta-stat:hover { border-color: rgba(255,107,0,0.3); }
.pcta-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pcta-lbl {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
  line-height: 1.4;
}
.pcta-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pcta-contact-card a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.pcta-contact-card a:hover { color: var(--brand-orange); }
.pcta-contact-card i { color: var(--brand-orange); width: 16px; flex-shrink: 0; }
@media (max-width: 900px) {
  .pcta-inner { grid-template-columns: 1fr; gap: 44px; }
  .pcta-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .pcta-stats { grid-template-columns: 1fr 1fr; }
  .page-cta-band { padding: 70px 0; }
}
