/* ============================================
   GROWTH BURNER — GLOBAL STYLESHEET
   Premium Digital Marketing Agency
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #60A5FA;
  --navy:          #0F172A;
  --navy-mid:      #1E293B;
  --gold:          #64748B;
  --gold-light:    #94A3B8;
  --white:         #FFFFFF;
  --off-white:     #F8FAFF;
  --light-gray:    #F1F5F9;
  --border:        #E2E8F0;
  --text-dark:     #0F172A;
  --text-mid:      #334155;
  --text-light:    #64748B;
  --shadow-sm:     0 2px 12px rgba(37,99,235,0.06);
  --shadow-md:     0 8px 32px rgba(37,99,235,0.10);
  --shadow-lg:     0 20px 60px rgba(15,23,42,0.16);
  --shadow-orange: 0 8px 32px rgba(37,99,235,0.28);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display:  'Sora', sans-serif;
  --font-body:     'Manrope', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0; padding: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light-gray); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-4 { gap: 32px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.1); color: var(--primary);
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(255,90,31,0.2);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.25; padding-bottom: 0.06em; }
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 18px; color: var(--text-mid);
  max-width: 600px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 15px; padding: 14px 32px;
  border-radius: var(--radius-sm); transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 8px 32px rgba(37,99,235,0.28);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.38);
}
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn svg { width: 18px; height: 18px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37,99,235,0.15);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.4); background: rgba(15,23,42,0.99); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.nav-logo-text .tagline { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; font-weight: 500; }

/* ── GROWTH BURNER LOGO — White Glow + Colorful Text ── */
.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.gb-logo-wrap {
  position: relative; display: flex; align-items: center;
  justify-content: center; width: 56px; height: 56px; flex-shrink: 0;
}
.gb-logo-glow {
  position: absolute; inset: -6px; border-radius: 16px;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.0) 70%);
  animation: logo-glow-pulse 2.5s ease-in-out infinite;
  filter: blur(6px);
}
.gb-logo-img {
  width: 56px; height: 56px; object-fit: contain; border-radius: 12px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.6));
  animation: logo-float 3s ease-in-out infinite;
}
@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}

/* Colorful "GROWTH BURNER" brand text */
.gb-brand-text {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  letter-spacing: 0.06em; line-height: 1;
  display: flex; align-items: center;
}
.gb-brand-space { width: 6px; }
/* GROWTH = white, BURNER = primary blue — clean, professional */
.gb-brand-g, .gb-brand-r, .gb-brand-o,
.gb-brand-w, .gb-brand-t, .gb-brand-h  { color: #FFFFFF; }
.gb-brand-b, .gb-brand-u, .gb-brand-r1,
.gb-brand-n, .gb-brand-e, .gb-brand-r2 { color: var(--primary-light); }

/* ── STATS VIDEO BOX ── */
.why-stats-box {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 460px; display: flex; align-items: stretch;
  box-shadow: 0 24px 60px rgba(15,23,42,0.4);
}
.why-stats-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.why-stats-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(37,99,235,0.35) 100%);
}
.why-stats-content {
  position: relative; z-index: 2; padding: 36px; width: 100%; text-align: center;
}
.why-stat-tile {
  border-radius: 14px; padding: 20px; text-align: center;
  transition: transform 0.3s ease;
}
.why-stat-tile:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════
   OPENING ANIMATION — Page Intro Screen
   Home page: Grand Growth Burner reveal
   Other pages: Category-specific intro
══════════════════════════════════════ */
#page-intro {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; overflow: hidden;
  background: #0F172A;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  will-change: opacity;
}
#page-intro.done { opacity: 0; visibility: hidden; pointer-events: none; }

/* Video background for home intro */
#page-intro .intro-video-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
#page-intro .intro-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
}
#page-intro .intro-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.3) 0%, rgba(15,23,42,0.95) 70%);
}

/* Logo reveal */
#page-intro .intro-logo-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  animation: intro-logo-in 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
}
#page-intro .intro-logo-ring {
  width: 110px; height: 110px; border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 28px;
}
#page-intro .intro-logo-ring::before {
  content: ''; position: absolute; inset: -4px; border-radius: 32px;
  background: linear-gradient(135deg, #60A5FA, #818CF8, #E879F9, #FB923C, #60A5FA);
  background-size: 300% 300%;
  animation: ring-rotate 2s linear infinite;
  z-index: -1;
}
#page-intro .intro-logo-ring::after {
  content: ''; position: absolute; inset: 0; border-radius: 28px;
  background: #0F172A; z-index: -1;
}
#page-intro .intro-logo-ring img {
  width: 90px; height: 90px; object-fit: contain; border-radius: 20px;
  filter: drop-shadow(0 0 20px rgba(96,165,250,0.8));
}
@keyframes ring-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Brand name letter-by-letter reveal */
#page-intro .intro-brand {
  font-family: var(--font-display); font-size: clamp(32px, 6vw, 60px);
  font-weight: 800; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center;
}
#page-intro .intro-brand span {
  display: inline-block;
  opacity: 0; transform: translateY(30px);
  animation: letter-in 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
#page-intro .intro-brand .sp { width: 16px; }
/* GROWTH = white, BURNER = blue — clean, no rainbow */
#page-intro .intro-brand span:nth-child(1)  { color: #FFFFFF; animation-delay: 0.3s; }
#page-intro .intro-brand span:nth-child(2)  { color: #FFFFFF; animation-delay: 0.38s; }
#page-intro .intro-brand span:nth-child(3)  { color: #FFFFFF; animation-delay: 0.46s; }
#page-intro .intro-brand span:nth-child(4)  { color: #FFFFFF; animation-delay: 0.54s; }
#page-intro .intro-brand span:nth-child(5)  { color: #FFFFFF; animation-delay: 0.62s; }
#page-intro .intro-brand span:nth-child(6)  { color: #FFFFFF; animation-delay: 0.70s; }
#page-intro .intro-brand span:nth-child(7)  { animation-delay: 0.75s; }
#page-intro .intro-brand span:nth-child(8)  { color: #60A5FA; animation-delay: 0.82s; }
#page-intro .intro-brand span:nth-child(9)  { color: #60A5FA; animation-delay: 0.90s; }
#page-intro .intro-brand span:nth-child(10) { color: #60A5FA; animation-delay: 0.98s; }
#page-intro .intro-brand span:nth-child(11) { color: #60A5FA; animation-delay: 1.06s; }
#page-intro .intro-brand span:nth-child(12) { color: #60A5FA; animation-delay: 1.14s; }
#page-intro .intro-brand span:nth-child(13) { color: #60A5FA; animation-delay: 1.22s; }

#page-intro .intro-tagline {
  font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-top: 12px;
  opacity: 0; animation: fade-in-up 0.6s ease 1.5s forwards;
  position: relative; z-index: 2;
}
#page-intro .intro-page-label {
  font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px;
  opacity: 0; animation: fade-in-up 0.5s ease 1.7s forwards;
  position: relative; z-index: 2;
}

/* Progress bar */
#page-intro .intro-progress {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 3px; background: rgba(255,255,255,0.08);
}
#page-intro .intro-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #60A5FA, #818CF8, #E879F9, #FB923C);
  background-size: 200% 100%;
  animation: progress-fill 2.2s ease-in-out forwards, ring-rotate 1s linear infinite;
  width: 0%;
}
@keyframes progress-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@keyframes intro-logo-in {
  from { opacity: 0; transform: scale(0.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes letter-in {
  from { opacity: 0; transform: translateY(30px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-light); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--primary-light); border-radius: 50%;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--navy-mid); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08);
  padding: 12px; min-width: 240px;
  opacity: 0; visibility: hidden; transition: var(--transition);
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); border-radius: var(--radius-sm);
  transition: var(--transition); width: 100%;
}
.dropdown-menu a:hover { background: rgba(37,99,235,0.12); color: var(--primary-light); }
.dropdown-menu a .dm-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--primary-light); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8);
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15); transition: var(--transition);
}
.nav-cta .phone-link:hover { border-color: var(--primary-light); color: var(--primary-light); }
.nav-cta .phone-link svg { color: var(--primary-light); }

/* Font Awesome sizing helpers for icon-only containers */
.service-icon i,
.trust-icon i,
.why-point-icon i,
.ci-icon i,
.sdc-icon i,
.team-avatar i,
.industry-pill i,
.dm-icon i,
.section-title i,
.footer-contact-item .icon i,
.social-ico i {
  font-size: inherit;
  line-height: 1;
}
.team-avatar i { color: var(--white); }
.sdc-icon i { color: var(--primary); } /* fallback when no inline color set */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,28,46,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9) translateY(20px); transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }
.popup-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 32px 32px 24px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.popup-header .popup-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,90,31,0.2); color: var(--primary-light);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 12px;
}
.popup-header h3 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 6px; }
.popup-header p { color: rgba(255,255,255,0.65); font-size: 14px; }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; cursor: pointer; transition: var(--transition);
}
.popup-close:hover { background: var(--primary); }
.popup-body { padding: 32px; }
.popup-body .form-group { margin-bottom: 20px; }
.popup-body label { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.popup-body input,
.popup-body select,
.popup-body textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-dark); background: var(--off-white);
  transition: var(--transition);
}
.popup-body input:focus,
.popup-body select:focus,
.popup-body textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(255,90,31,0.08); }
.popup-body textarea { resize: vertical; min-height: 90px; }
.popup-submit {
  width: 100%; padding: 16px; background: var(--primary);
  color: var(--white); font-size: 16px; font-weight: 700;
  border-radius: var(--radius-sm); transition: var(--transition);
  box-shadow: var(--shadow-orange); margin-top: 8px;
}
.popup-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.popup-footer {
  text-align: center; margin-top: 16px;
  font-size: 12px; color: var(--text-light);
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
#preloader .pre-logo {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: var(--white); font-size: 26px;
  animation: pre-pulse 1.4s ease-in-out infinite;
}
#preloader .pre-text {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--white); letter-spacing: 0.5px;
}
#preloader .pre-bar {
  width: 140px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.12); overflow: hidden;
}
#preloader .pre-bar::after {
  content: ''; display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px; animation: pre-load 1.2s ease-in-out infinite;
}
@keyframes pre-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes pre-load {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(120%); }
  100% { transform: translateX(280%); }
}

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; display: flex; gap: 3px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.review-author-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.review-author-role { font-size: 12px; color: var(--text-light); }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── SERVICE LANDING PAGE HERO ── */
.service-hero {
  padding: 100px 0 40px; position: relative; overflow: hidden;
  background: var(--white);
}
.service-hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 55%; height: 120%; z-index: 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #E8F0FE 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.service-hero .hero-mesh {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background-image: radial-gradient(circle at 70% 30%, rgba(37,99,235,0.06) 0%, transparent 50%);
  z-index: 0;
}
.service-hero .hero-inner {
  align-items: flex-start; min-height: auto;
  padding-bottom: 0;
}
.service-hero h1 {
  font-size: clamp(36px, 4.2vw, 54px); line-height: 1.25;
  margin-bottom: 20px; color: var(--text-dark);
}
.service-benefits { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.service-benefit { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text-dark); }
.service-benefit .check {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(34,197,94,0.12);
  color: #22c55e; display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 28px; }
.faq-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.faq-item p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

@media (max-width: 768px) {
  .service-hero { padding: 110px 0 60px; }
  .service-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-hero::before { display: none; }
}
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(37,99,235,0.20) 100%);
  z-index: 1;
}
.hero::before { display: none; }
.hero-mesh { display: none; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(96,165,250,0.35);
  color: var(--primary-light); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary-light); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(38px, 3.8vw, 52px); font-weight: 800;
  line-height: 1.2; margin-bottom: 24px; color: var(--white);
}
.hero h1 .highlight {
  color: var(--primary-light); position: relative; display: inline-block;
}
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: var(--primary); border-radius: 2px; opacity: 0.4;
}
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-quick-contact { display: flex; align-items: center; gap: 12px; }
.hero-quick-contact a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  transition: var(--transition);
}
.wa-btn { background: #25D366; color: var(--white); }
.wa-btn:hover { background: #128C7E; transform: translateY(-2px); }
.call-btn { background: rgb(72, 140, 242); color: var(--white); }
.call-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--primary); }
.stat-label { font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 0.5px; margin-top: 4px; }
/* Hero Contact Form */
.hero-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3); padding: 36px;
  border: 1px solid var(--border); position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-card .form-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 6px;
}
.hero-form-card .form-subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-dark); background: var(--off-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(37,99,235,0.10); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit-btn {
  width: 100%; padding: 15px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); transition: var(--transition);
  box-shadow: var(--shadow-orange); cursor: pointer; border: none;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,90,31,0.38); }
.form-privacy { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ── FLOATING ACTIONS ── */
.floating-actions {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  font-size: 22px;
}
.float-btn:hover { transform: translateY(-4px) scale(1.08); }
.float-wa { background: #25D366; }
.float-call { background: var(--navy); }
.float-ai {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  position: relative;
}
.float-ai::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--primary); opacity: 0.5;
  animation: ai-pulse 2.2s ease-out infinite;
}
@keyframes ai-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── AI CHAT WIDGET ── */
#ai-chat-panel {
  position: fixed; bottom: 240px; right: 24px; z-index: 1000;
  width: 360px; max-width: calc(100vw - 32px);
  height: 480px; max-height: calc(100vh - 280px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(24px) scale(0.96); opacity: 0; visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, visibility 0.3s ease;
}
#ai-chat-panel.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.ai-chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.ai-chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.ai-chat-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.ai-chat-subtitle { font-size: 12px; color: rgba(255,255,255,0.6); }
.ai-chat-close { margin-left: auto; cursor: pointer; font-size: 16px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.ai-chat-close:hover { color: var(--white); }
.ai-chat-lang-toggle {
  display: flex; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--border); background: var(--off-white);
}
.ai-lang-btn {
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white); color: var(--text-mid); cursor: pointer;
  transition: var(--transition);
}
.ai-lang-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.ai-chat-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px;
  background: var(--off-white);
}
.ai-msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.6; }
.ai-msg.bot { background: var(--white); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.ai-msg.user { background: var(--primary); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.ai-chat-input-row {
  display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: var(--white);
}
.ai-chat-input-row input {
  flex: 1; border: 1px solid var(--border); border-radius: 100px; padding: 10px 16px;
  font-size: 13px; outline: none;
}
.ai-chat-input-row input:focus { border-color: var(--primary); }
.ai-chat-send {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; flex-shrink: 0;
  transition: var(--transition);
}
.ai-chat-send:hover { background: var(--primary-dark); }
.ai-msg.typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.ai-msg.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-light); animation: ai-typing 1.2s infinite; }
.ai-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ai-typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@media (max-width: 480px) {
  #ai-chat-panel { right: 16px; bottom: 226px; width: calc(100vw - 32px); height: 420px; max-height: calc(100vh - 260px); }
}

/* ── TRUST STRIP ── */
.trust-strip {
  padding: 38px 0; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(37,99,235,0.2);
}
.trust-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.trust-item {
  display: flex; align-items: center; gap: 14px; color: var(--white);
  transition: transform 0.3s ease;
}
.trust-item:hover { transform: translateY(-3px); }
.trust-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.08));
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}
.trust-text .t-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.trust-text .t-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; border: 2px solid var(--border);
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  background: rgba(255,90,31,0.1);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); box-shadow: 0 10px 22px rgba(22,163,74,0.22); }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.service-feat::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.service-link { color: var(--primary); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-visual { position: relative; perspective: 1200px; }
.why-visual .main-img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform: rotateY(0deg) rotateX(0deg);
}
.why-visual:hover .main-img { transform: rotateY(-4deg) rotateX(2deg) scale(1.02); }
.why-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--primary); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange); text-align: center;
}
.why-badge-float .big-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; line-height: 1; }
.why-badge-float .small-text { font-size: 12px; font-weight: 600; opacity: 0.85; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255,90,31,0.32), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: rotate(-4deg);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.why-point:hover .why-point-icon {
  transform: rotate(0deg) scale(1.08) translateY(-3px);
  box-shadow: 0 10px 24px rgba(255,90,31,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.why-point:nth-child(2) .why-point-icon { background: linear-gradient(145deg, var(--gold-light), var(--gold)); box-shadow: 0 6px 16px rgba(201,168,76,0.32), inset 0 1px 0 rgba(255,255,255,0.25); transform: rotate(4deg); }
.why-point:nth-child(2):hover .why-point-icon { box-shadow: 0 10px 24px rgba(201,168,76,0.4), inset 0 1px 0 rgba(255,255,255,0.3); }
.why-point:nth-child(3) .why-point-icon { background: linear-gradient(145deg, var(--navy-mid), var(--navy)); box-shadow: 0 6px 16px rgba(15,28,46,0.32), inset 0 1px 0 rgba(255,255,255,0.15); }
.why-point:nth-child(3):hover .why-point-icon { box-shadow: 0 10px 24px rgba(15,28,46,0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
.why-point-text h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-point-text p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; perspective: 800px; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-display); font-size: 26px; font-weight: 800;
  background: var(--white); border: 3px solid var(--primary); color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.process-step:hover .step-num { transform: rotateY(180deg) scale(1.08); background: var(--primary); box-shadow: 0 14px 30px rgba(255,90,31,0.35); }
.step-num span { display: inline-block; transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), color 0.4s ease; }
.process-step:hover .step-num span { transform: rotateY(180deg); color: var(--white); }
.process-step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: #FFB800; font-size: 16px; margin-bottom: 12px; display: flex; gap: 3px; }
.stars i { font-size: inherit; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--white);
}
.author-info .name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.author-info .role { font-size: 12px; color: var(--text-light); }

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-pill {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 100px; padding: 12px 20px;
  text-align: center; font-size: 13px; font-weight: 600; color: var(--text-mid);
  transition: var(--transition); cursor: default;
}
.industry-pill:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,90,31,0.05); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 200px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-content { padding: 24px; }
.blog-tag { display: inline-block; background: rgba(37,99,235,0.1); color: var(--primary); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.blog-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-content p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-light); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.contact-info p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon { width: 48px; height: 48px; background: rgba(37,99,235,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--primary); }
.ci-text .ci-label { font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.ci-text .ci-val { font-weight: 600; color: var(--text-dark); font-size: 15px; }
.ci-text a { color: var(--primary); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.social-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
.social-ico.wa { background: #25D366; color: var(--white); }
.social-ico.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.social-ico.fb { background: #1877F2; color: var(--white); }
.social-ico.yt { background: #FF0000; color: var(--white); }
.social-ico.li { background: #0A66C2; color: var(--white); }
.social-ico:hover { transform: translateY(-4px) scale(1.1); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-md);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,90,31,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); font-weight: 600; }

/* ── SERVICE DETAIL ── */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-detail-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px; border: 2px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-detail-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sdc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.sdc-icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 30px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.service-detail-card:hover .sdc-icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); box-shadow: 0 10px 22px rgba(0,0,0,0.12); }
.sdc-badge { background: rgba(37,99,235,0.1); color: var(--primary); font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 100px; }
.service-detail-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.service-detail-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.sdc-list { display: flex; flex-direction: column; gap: 10px; }
.sdc-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-mid); }
.sdc-list li::before { content: '→'; color: var(--primary); font-weight: 800; }

/* ── ABOUT ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white);
  border: 4px solid var(--white); box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.team-card:hover .team-avatar { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 30px rgba(255,90,31,0.3); }
.team-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--primary); font-weight: 600; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.mv-card { padding: 36px; border-radius: var(--radius-md); }
.mv-card.mission { background: var(--navy); color: var(--white); }
.mv-card.vision { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.mv-card h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 16px; }
.mv-card p { font-size: 15px; line-height: 1.7; opacity: 0.85; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 50px; }
.footer-brand .brand { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,0.08); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom .heart { color: var(--primary); }

/* ── ABOUT STATS ── */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stat {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center; border: 2px solid var(--border); transition: var(--transition);
}
.about-stat:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.as-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.as-label { font-size: 14px; font-weight: 600; color: var(--text-mid); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--navy); color: var(--white);
  padding: 16px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 99999; transition: transform 0.3s ease;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 4px solid #60A5FA; }
.toast.error { border-left: 4px solid var(--primary); }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideIn { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
.fade-up { animation: fadeUp 0.6s ease forwards; }
/* ══════════════════════════════════════════════
   ANIMATION SYSTEM — Smooth Slide Animations
   Every page, every section, both directions
══════════════════════════════════════════════ */

/* Base reveal state */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Direction variants */
.reveal,
.reveal-up   { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right{ transform: translateX(50px); }
.reveal-scale{ transform: scale(0.88); }
.reveal-fade { transform: none; }

/* Visible state — all directions */
.reveal.visible,
.reveal-up.visible,
.reveal-down.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for card grids */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* Section titles slide in from left */
.section-header .section-label { transform: translateY(20px); }
.section-header .section-title { transform: translateY(24px); transition-delay: 0.08s; }
.section-header .section-subtitle { transform: translateY(20px); transition-delay: 0.14s; }

/* Scroll direction variants (set by JS) */
[data-scroll-dir="up"] .reveal:not(.visible)   { transform: translateY(-40px); }
[data-scroll-dir="up"] .reveal-left:not(.visible)  { transform: translateX(-50px); }
[data-scroll-dir="up"] .reveal-right:not(.visible) { transform: translateX(50px); }

/* Stats count-up animation */
.stat-number {
  display: inline-block;
  transition: color 0.4s ease;
}

/* Accessibility: skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--primary); color: white;
  padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: 14px;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Focus styles for keyboard nav */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(15,23,42,0.98); backdrop-filter: blur(20px);
  padding: 24px 20px; overflow-y: auto; flex-direction: column; gap: 4px;
  transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  padding: 16px 20px; font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,0.85); border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition); display: flex; align-items: center; gap: 10px;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary-light); background: rgba(37,99,235,0.1); }
.mobile-menu .mobile-submenu-title {
  padding: 20px 20px 8px; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.35); letter-spacing: 0.15em; text-transform: uppercase;
}
.mobile-cta-wrap { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; padding: 0 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-cta {display: none;}
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero h1 { font-size: 34px; line-height: 1.25; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .why-badge-float { right: 0; bottom: -16px; }
  /* Trust strip — 2+2+1 on mobile */
  .trust-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .trust-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }
  /* Hero service hero on mobile */
  .service-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Stats bar hero on mobile */
  .ws-hero-inner { grid-template-columns: 1fr !important; }
  /* Gb logo text smaller on mobile */
  .gb-brand-text { font-size: 15px; }
  .gb-logo-img { width: 44px; height: 44px; }
  .gb-logo-wrap { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
}

/* ── MOBILE TRUST STRIP ANIMATIONS (2+2+1) ── */
@media (max-width: 768px) {
  .trust-item { opacity: 0; animation: trust-slide-in 0.5s ease forwards; }
  .trust-item:nth-child(1) { animation-delay: 0.1s; }
  .trust-item:nth-child(2) { animation-delay: 0.2s; }
  .trust-item:nth-child(3) { animation-delay: 0.3s; }
  .trust-item:nth-child(4) { animation-delay: 0.4s; }
  .trust-item:nth-child(5) { animation-delay: 0.5s; }
  @keyframes trust-slide-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Process steps mobile */
  .process-steps { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  /* Service hero mobile */
  .service-hero { padding: 100px 0 50px; }
  /* Fix AI chat panel on mobile */
  #ai-chat-panel { bottom: 200px; }
}

/* ── FOOTER WORKSHOP BANNER ── */
.footer-workshop-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(251,146,60,0.1));
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--radius-md); padding: 24px 32px; margin-bottom: 32px;
}
.footer-ws-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,146,60,0.15); border: 1px solid rgba(251,146,60,0.3);
  color: #FB923C; font-size: 12px; font-weight: 800;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.footer-ws-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.footer-ws-sub { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-ws-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: linear-gradient(135deg, #FB923C, #FBBF24);
  color: #0F172A; font-size: 15px; font-weight: 800;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(251,146,60,0.35);
  transition: all 0.3s ease; flex-shrink: 0;
}
.footer-ws-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(251,146,60,0.5); }
@media (max-width: 640px) {
  .footer-workshop-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .footer-ws-btn { width: 100%; justify-content: center; }
}

/* ── WORKSHOP STANDALONE HEADER ── */
.ws-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.ws-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.ws-header-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.ws-header-logo img {
  width: 44px; height: 44px; object-fit: contain; border-radius: 10px;
  filter: drop-shadow(0 0 8px rgba(96,165,250,0.4));
}
.ws-header-logo span {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em;
}
.ws-header-logo span strong { color: var(--white); font-weight: 800; }
.ws-header-right { display: flex; align-items: center; gap: 14px; }
.ws-header-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 700;
  text-decoration: none; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
  transition: all 0.2s ease;
}
.ws-header-phone:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.ws-header-phone i { color: #60A5FA; }
.ws-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FB923C, #FBBF24);
  color: #0F172A; font-size: 14px; font-weight: 800;
  padding: 11px 24px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(251,146,60,0.4);
  transition: all 0.3s ease; white-space: nowrap;
}
/* Workshop hero top padding handled by inline style in workshop.html */

@media (max-width: 640px) {
  .ws-header-phone { display: none; }
  .ws-header-cta { font-size: 13px; padding: 10px 18px; }
  .ws-header-logo span { font-size: 14px; }
}
.ws-header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,146,60,0.55); }

/* ── WORKSHOP NAV PILL (small, compact) ── */
.ws-nav-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(251,146,60,0.15); border: 1px solid rgba(251,146,60,0.35);
  color: #FBBF24 !important; padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 800; text-decoration: none;
  transition: all 0.2s ease; white-space: nowrap;
}
.ws-nav-pill i { color: #FB923C; font-size: 11px; }
.ws-nav-pill span { color: #FBBF24; }
.ws-nav-pill em { font-style: normal; color: #4ADE80; font-size: 11px; font-weight: 800; }
.ws-nav-pill:hover { background: rgba(251,146,60,0.25); transform: translateY(-1px); }

.workshop-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;
    border-radius:50px;

    background:linear-gradient(135deg,#ff8a00,#ff5e00);
    color:#fff;

    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 8px 25px rgba(255,120,0,.35);
    transition:.3s ease;
}

.workshop-btn:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 12px 35px rgba(255,120,0,.45);
}

.workshop-btn .price{
    font-weight:700;
}