/* =============================================
   FIRST FLY SERVICES PRIVATE LIMITED
   Global Stylesheet — Mobile First
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --yellow: #E8C900;
  --yellow-dark: #C9AE00;
  --yellow-light: #FFF8CC;
  /* Light theme — bg is white, text is dark */
  --black: #FFFFFF;
  --black-soft: #F4F6F9;
  --black-card: #FFFFFF;
  --black-border: #E0E4EA;
  --white: #1A1D23;
  --white-muted: #374151;
  --grey: #6B7280;
  --grey-light: #374151;
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-yellow: 0 0 30px rgba(232, 201, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-secondary);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { width: 90%; max-width: var(--container); margin: 0 auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.text-yellow { color: var(--yellow); }
.text-grey { color: var(--grey); }
.fw-900 { font-weight: 900; }
.fw-700 { font-weight: 700; }
.text-center { text-align: center; }

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

/* ---- Headings ---- */
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--grey);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--yellow);
  color: #1A1D23;
}
.btn-primary:hover {
  background: #1A1D23;
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--black-border);
}
.btn-outline:hover {
  border-color: var(--yellow-dark);
  color: var(--yellow-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--yellow-dark);
  border: 2px solid var(--yellow-dark);
}
.btn-ghost:hover {
  background: var(--yellow);
  color: #1A1D23;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text { font-family: var(--font-primary); }
.nav-logo-text span:first-child {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--yellow-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow-dark);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--yellow-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: 20px; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  background: #1A1D23;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 14px 24px;
  font-size: 1rem;
  border-bottom: 1px solid var(--black-border);
}
.nav-mobile .nav-link::after { display: none; }
.nav-mobile .nav-link:hover { background: var(--black-soft); padding-left: 36px; }
.nav-mobile .btn { margin: 20px 24px 0; justify-content: center; }

/* =============================================
   HERO — HOME
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFFDF0 0%, #F4F6F9 60%, #FFFCE8 100%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,170,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,170,0,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,0,0.18) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,201,0,0.12);
  border: 1px solid rgba(200,170,0,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7500;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow-dark);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--yellow-dark);
  -webkit-text-stroke: 0px;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--black-border);
  padding-top: 40px;
  margin-top: 10px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-visual {
  display: none;
  position: relative;
}
.hero-card-stack {
  position: relative;
  padding: 20px;
}
.hero-main-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.hero-card-icon {
  width: 60px; height: 60px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-card-icon svg { width: 30px; height: 30px; }
.hero-card-title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.hero-card-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-badge-1 { top: -20px; right: 20px; }
.floating-badge-2 { bottom: 20px; left: -20px; animation-delay: 3s; }
.fb-icon {
  width: 36px; height: 36px;
  background: rgba(232,201,0,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.fb-icon svg { width: 18px; height: 18px; color: var(--yellow-dark); }
.fb-text span:first-child { display: block; font-family: var(--font-primary); font-weight: 700; font-size: 0.9rem; color: #1A1D23; }
.fb-text span:last-child { display: block; font-size: 0.75rem; color: var(--grey); }

/* =============================================
   MARQUEE TICKER
   ============================================= */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
  border-top: 2px solid var(--yellow-dark);
  border-bottom: 2px solid var(--yellow-dark);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 25s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   CARDS & GRIDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(232,201,0,0.08), transparent);
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(200,170,0,0.5); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.10); }
.service-card:hover::before { height: 100%; }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(232,201,0,0.12);
  border: 1px solid rgba(200,170,0,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}
.card-icon svg { width: 24px; height: 24px; color: var(--yellow-dark); transition: var(--transition); }
.service-card:hover .card-icon svg { color: #1A1D23; }
.card-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1A1D23;
}
.card-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }
.card-number {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

/* =============================================
   WHY CHOOSE US / FEATURES
   ============================================= */
.features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.feature-item:hover { border-color: rgba(200,170,0,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.fi-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fi-icon svg { width: 22px; height: 22px; color: #1A1D23; }
.fi-content h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #1A1D23;
}
.fi-content p { color: var(--grey); font-size: 0.88rem; line-height: 1.65; }
.features-visual {
  position: relative;
  padding: 20px;
}
.big-stat-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.big-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
}
.big-number {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.big-number-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.mini-stat-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.mini-stat-num {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
}
.mini-stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   PROCESS / STEPS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--black-border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: #D1D5DB;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: var(--transition);
}
.process-step:hover .step-num { color: var(--yellow-dark); }
.step-content h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1A1D23;
}
.step-content p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial-card:hover { border-color: rgba(200,170,0,0.4); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.testimonial-card .quote {
  font-family: var(--font-primary);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.8;
}
.testimonial-text {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.1rem;
  color: #1A1D23;
  flex-shrink: 0;
}
.author-info span:first-child {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1D23;
}
.author-info span:last-child {
  display: block;
  font-size: 0.8rem;
  color: var(--grey);
}
.stars { color: var(--yellow-dark); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }

/* =============================================
   TEAM / DIRECTORS
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.team-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.team-card:hover { border-color: rgba(200,170,0,0.45); transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.10); }
.team-card-top {
  background: linear-gradient(135deg, #F7F9FC 0%, #FFFDF0 100%);
  padding: 48px 36px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.team-card-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  color: #1A1D23;
  position: relative;
  border: 4px solid #E0E4EA;
}
.team-name {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 0.8rem;
  color: var(--yellow-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.team-card-body { padding: 28px; }
.team-card-body p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; }
.team-din {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 8px 16px;
  border: 1px solid var(--black-border);
  border-radius: 100px;
}
.team-din::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

/* =============================================
   CTA / BANNER SECTION
   ============================================= */
.cta-section {
  background: #1A1D23;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}
.btn-dark {
  background: var(--yellow);
  color: #1A1D23;
  font-family: var(--font-primary);
  font-weight: 700;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-dark:hover { background: #FFFFFF; color: #1A1D23; transform: translateY(-2px); }

/* =============================================
   CLIENTS / LOGOS
   ============================================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.client-item {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--grey);
  transition: var(--transition);
  min-height: 80px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.client-item:hover { border-color: rgba(200,170,0,0.4); color: var(--yellow-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.contact-info-item:hover { border-color: rgba(200,170,0,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 22px; height: 22px; color: #1A1D23; }
.ci-details h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 4px;
}
.ci-details p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #374151;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #1A1D23;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(200,170,0,0.12);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #FFFFFF; color: #1A1D23; }
.form-group textarea { resize: vertical; min-height: 130px; }
::placeholder { color: #9CA3AF; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF0 0%, #F4F6F9 60%, #FFFCE8 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,170,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,170,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,0,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--yellow-dark); }
.breadcrumb span { color: #D1D5DB; }

/* =============================================
   VALUES / MISSION
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.value-card:hover { border-color: rgba(200,170,0,0.4); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.value-card::before {
  content: attr(data-num);
  position: absolute;
  right: 20px; bottom: 10px;
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}
.value-icon {
  width: 48px; height: 48px;
  background: rgba(232,201,0,0.12);
  border: 1px solid rgba(200,170,0,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 22px; height: 22px; color: var(--yellow-dark); }
.value-card h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1A1D23;
}
.value-card p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; }

/* =============================================
   ACCORDION / FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item:hover { border-color: rgba(200,170,0,0.3); }
.faq-item.active { border-color: rgba(200,170,0,0.5); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.faq-question-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1D23;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,201,0,0.12);
  border: 1px solid rgba(200,170,0,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--yellow-dark); transition: var(--transition); }
.faq-item.active .faq-icon { background: var(--yellow); border-color: var(--yellow-dark); }
.faq-item.active .faq-icon svg { color: #1A1D23; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  height: 400px;
  background: #F8F9FB;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  text-align: center;
  padding: 40px;
}
.map-placeholder svg { width: 60px; height: 60px; color: var(--yellow-dark); margin: 0 auto 16px; }
.map-placeholder p { color: var(--grey); font-size: 0.9rem; }
.map-placeholder a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--yellow);
  color: #1A1D23;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.map-placeholder a:hover { background: #1A1D23; color: var(--yellow); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #1A1D23;
  border-top: 1px solid #2A2D33;
}
.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.footer-brand { display: block; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 24px; height: 24px; }
.footer-brand-name {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-tagline { color: #9CA3AF; font-size: 0.9rem; line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.footer-cin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  padding: 8px 14px;
  border: 1px solid #2A2D33;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.footer-cin::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: #9CA3AF;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '→'; font-size: 0.8rem; color: var(--yellow); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: #FFFFFF; padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #2A2D33;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: #6B7280; }
.footer-bottom a { color: var(--yellow); }

/* =============================================
   PAGE TRANSITION OVERLAY
   ============================================= */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--yellow);
  z-index: 9999;
  transform: translateY(100%);
  pointer-events: none;
}
#page-transition.enter { animation: ptEnter 0.4s ease forwards; }
#page-transition.exit { animation: ptExit 0.4s ease forwards; }
@keyframes ptEnter {
  from { transform: translateY(100%); }
  to { transform: translateY(0%); }
}
@keyframes ptExit {
  from { transform: translateY(0%); }
  to { transform: translateY(-100%); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =============================================
   RESPONSIVE — DESKTOP
   ============================================= */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .hero-content { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: block; }
  .features-layout { grid-template-columns: 1.1fr 0.9fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-layout { grid-template-columns: 1fr 1.5fr; }
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .hero-stats { gap: 40px; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-step { flex-direction: column; border-bottom: none; border-right: 1px solid var(--black-border); padding: 36px; }
  .process-step:last-child { border-right: none; }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F4F6F9; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-dark); }

/* =============================================
   SELECTION
   ============================================= */
::selection { background: var(--yellow); color: #1A1D23; }

/* =============================================
   DIVIDERS
   ============================================= */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), transparent);
  margin: 0;
}

/* =============================================
   NUMBERED BADGE
   ============================================= */
.numbered-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--yellow);
  color: #1A1D23;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   SERVICE PAGE FULL CARD
   ============================================= */
.service-full-card {
  background: #FFFFFF;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-full-card:hover { border-color: rgba(200,170,0,0.4); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.sfc-top {
  padding: 40px;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sfc-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sfc-icon svg { width: 28px; height: 28px; color: #1A1D23; }
.sfc-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1A1D23;
}
.sfc-subtitle { color: var(--grey); font-size: 0.88rem; }
.sfc-body { padding: 40px; }
.sfc-features { display: flex; flex-direction: column; gap: 10px; }
.sfc-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--grey);
}
.sfc-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow-dark);
  flex-shrink: 0;
}

/* Technology Tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-tag {
  padding: 6px 16px;
  background: rgba(200,170,0,0.08);
  border: 1px solid rgba(200,170,0,0.25);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow-dark);
  letter-spacing: 0.05em;
}
