/* ==========================================================================
   A2Z TARGET AGENCY — MASTER STYLESHEET
   "Your Target. Our Strategy. Real Growth."
   Design System: Dark Obsidian Base with Radiant Gold & White Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Syne:wght@600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Brand Colors */
  --bg-primary: #06070a;
  --bg-secondary: #0b0e15;
  --bg-tertiary: #10141f;
  --bg-card: rgba(16, 20, 31, 0.75);
  --bg-card-hover: rgba(22, 28, 44, 0.9);
  --bg-card-solid: #121723;
  --bg-glass: rgba(11, 14, 21, 0.75);

  /* Accents */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --gold-subtle: rgba(245, 158, 11, 0.08);

  /* Growth & Tech Accents */
  --emerald-success: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.2);
  --meta-blue: #1877f2;
  --instagram-pink: #e1306c;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #fbbf24;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(245, 158, 11, 0.14);
  --border-gold-focus: rgba(245, 158, 11, 0.5);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 35px rgba(245, 158, 11, 0.18);
  --shadow-gold-hover: 0 15px 45px rgba(245, 158, 11, 0.28);

  /* Fonts */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(24, 119, 242, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1f2736;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Selection */
::selection {
  background: rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-body);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  z-index: 2;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-light);
}

.section-title {
  margin-bottom: 18px;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- BUTTON SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  color: #08090d;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-heading);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: #08090d;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(6, 7, 10, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  height: 70px;
  background: rgba(6, 7, 10, 0.92);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #10141f 0%, #171d2b 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
  position: relative;
  overflow: hidden;
}

.brand-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 60%);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.brand-logo span.highlight {
  color: var(--gold-light);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-white);
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-white);
  margin: 5px 0;
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(8, 9, 13, 0.98);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  gap: 22px;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
  overflow-y: auto;
}

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

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

/* Particle Canvas Background */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-blob {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-top-center {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.09) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16, 20, 31, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-badge .tagline-tag {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-badge .divider-pill {
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title span.glow-text {
  background: linear-gradient(135deg, #ffffff 30%, #fcd34d 70%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto 38px auto;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Floating Trust Cards & Metrics in Hero */
.hero-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.metric-pill {
  background: rgba(16, 20, 31, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: all var(--transition-normal);
}

.metric-pill:hover {
  border-color: var(--border-card);
  transform: translateY(-3px);
  background: rgba(22, 28, 44, 0.85);
  box-shadow: var(--shadow-sm);
}

.metric-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

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

.metric-pill-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.metric-pill-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   AGENCY SHOWREEL (INTRO VIDEO CONCEPT)
   ========================================================================== */
.showreel-section {
  padding-top: 40px;
  padding-bottom: 110px;
}

.video-container-card {
  background: linear-gradient(180deg, #0e121e 0%, #080a10 100%);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 158, 11, 0.06);
  position: relative;
}

.video-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #040508;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#showreel-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Overlay Controls */
.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.95);
  color: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
  transition: all var(--transition-normal);
  border: none;
  z-index: 10;
}

.video-overlay-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fbbf24;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.9);
}

.video-overlay-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-overlay-play.playing {
  opacity: 0;
  pointer-events: none;
}

.video-screen:hover .video-overlay-play.playing {
  opacity: 0.85;
  pointer-events: auto;
}

/* Watermark Badge */
.video-watermark {
  position: absolute;
  top: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(6, 7, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 5;
}

.video-watermark .rec-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-red 1.8s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Current Scene Caption Badge */
.video-scene-indicator {
  position: absolute;
  bottom: 74px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.scene-title-badge {
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Control Bar */
.video-control-bar {
  background: #0a0d15;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.video-timeline-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-scrubber {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.video-time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.video-button-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-ctrl-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.video-ctrl-btn svg {
  width: 18px;
  height: 18px;
}

/* Showreel 8-Scene Jump Strip */
.showreel-scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.scene-jump-card {
  background: rgba(16, 20, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-normal);
  text-align: left;
}

.scene-jump-card:hover,
.scene-jump-card.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(24, 30, 48, 0.9);
  transform: translateY(-2px);
}

.scene-num {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 8px;
  border-radius: 6px;
}

.scene-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

/* Video Swap Banner Note for Client */
.video-swap-hint {
  margin-top: 18px;
  padding: 12px 20px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px dashed rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   ABOUT US SECTION & LIVE COUNTERS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.about-text-col .lead-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text-col p {
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: #94a3b8;
}

/* Capability Pills */
.capabilities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(16, 20, 31, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  transition: all var(--transition-fast);
}

.cap-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.cap-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

/* Stats Counter Grid */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: linear-gradient(135deg, rgba(16, 20, 31, 0.85) 0%, rgba(11, 14, 21, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-gold);
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-card);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.1);
}

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.03) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-light);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(3deg);
  background: var(--gold-primary);
  color: #08090d;
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-card-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.service-feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   RESULTS THAT SPEAK (PORTFOLIO & CASE STUDIES)
   ========================================================================== */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  background: rgba(16, 20, 31, 0.7);
  border: 1px solid var(--border-subtle);
  color: #94a3b8;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #08090d;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-card);
  box-shadow: var(--shadow-md);
}

.project-media {
  height: 210px;
  background: #0d111a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-visual-canvas {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-visual-canvas {
  transform: scale(1.05);
}

.project-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-demo-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: #34d399;
}

.project-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-objective {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.project-title {
  font-size: 1.28rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.project-summary {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Metric Result Highlight Bar */
.project-metric-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px;
  background: rgba(8, 9, 13, 0.6);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.proj-metric-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.proj-metric-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   OUR PROCESS (5 STEPS)
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  border-color: var(--border-card);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-gold);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

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

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   MEET THE TEAM SECTION
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.team-card.founder-card {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(24, 30, 48, 0.8) 0%, rgba(14, 17, 26, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.08);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-card);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  height: 240px;
  background: #0e121e;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.founder-avatar {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(24, 119, 242, 0.15) 100%);
  border-color: var(--gold-primary);
  width: 110px;
  height: 110px;
}

.founder-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--gold-primary);
  color: #08090d;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.placeholder-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.team-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all var(--transition-fast);
}

.team-social-btn:hover {
  background: var(--gold-primary);
  color: #08090d;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   FOLLOW A2Z TARGET AGENCY (SOCIAL MEDIA)
   ========================================================================== */
.social-platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.social-platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-card);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card-hover);
}

.social-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.social-platform-card:hover .social-icon-box {
  transform: scale(1.1);
}

.platform-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.platform-handle-placeholder {
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px dashed rgba(245, 158, 11, 0.3);
  font-family: var(--font-mono);
  word-break: break-all;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.why-feature-card:hover {
  border-color: var(--border-card);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon svg {
  width: 16px;
  height: 16px;
}

.why-text h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Comparison Table Card */
.comparison-card {
  background: linear-gradient(135deg, rgba(16, 20, 31, 0.9) 0%, rgba(10, 12, 18, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.95rem;
}

.comp-col-a2z {
  color: var(--gold-light);
  text-align: center;
}

.comp-col-other {
  color: var(--text-muted);
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  align-items: center;
}

.comp-feature {
  color: #e2e8f0;
  font-weight: 500;
}

.comp-status-a2z {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-success);
  font-weight: 700;
}

.comp-status-other {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}

/* ==========================================================================
   GROWTH CALCULATOR SECTION
   ========================================================================== */
.calculator-box {
  background: linear-gradient(135deg, rgba(16, 20, 31, 0.9) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.05);
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calc-currency-toggle {
  display: inline-flex;
  background: rgba(8, 9, 13, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  align-self: flex-start;
}

.currency-btn {
  background: transparent;
  border: none;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn.active {
  background: var(--gold-primary);
  color: #08090d;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.calc-val-display {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Styled Range Sliders */
.calc-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #1e2638;
  outline: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
  transition: transform var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Calculator Results Display Card */
.calc-results-col {
  background: rgba(8, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-results-header {
  margin-bottom: 24px;
}

.calc-results-header h4 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.calc-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-metric-card {
  background: rgba(16, 20, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
}

.calc-metric-card.highlight {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.06);
  grid-column: span 2;
}

.calc-metric-title {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.calc-metric-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.calc-metric-card.highlight .calc-metric-value {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.calc-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

/* ==========================================================================
   META ADS AUDIT SECTION
   ========================================================================== */
.audit-card {
  background: linear-gradient(135deg, #10141f 0%, #0d1017 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.audit-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.audit-info-col h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.audit-info-col p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: #cbd5e1;
}

.audit-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.audit-benefit-item svg {
  color: var(--gold-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   FORM CONTROLS (SHARED SYSTEM)
   ========================================================================== */
.agency-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(8, 10, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
  background: rgba(12, 15, 24, 0.95);
}

.form-select option {
  background-color: #0b0e15;
  color: #ffffff;
}

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

/* Form Success & Feedback Alert */
.form-success-banner {
  display: none;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  animation: fadeIn 0.4s ease;
}

.form-success-banner.active {
  display: block;
}

.form-error-banner {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 10px;
  animation: fadeIn 0.4s ease;
}

.form-error-banner.active {
  display: block;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

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

/* ==========================================================================
   FREE STRATEGY CTA SECTION
   ========================================================================== */
.strategy-cta-wrapper {
  background: linear-gradient(180deg, #0e121e 0%, #080a11 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  max-width: 900px;
  margin: 0 auto;
}

.whatsapp-fast-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.whatsapp-fast-toggle a {
  color: #25d366;
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   CLIENT TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-slider-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  position: relative;
}

.test-badge-demo {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 20px;
}

.test-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.test-stars svg {
  width: 20px;
  height: 20px;
}

.test-quote {
  font-size: 1.22rem;
  color: #f1f5f9;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

.test-author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #171d2b;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
}

.test-author-meta {
  text-align: left;
}

.test-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.05rem;
}

.test-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 20, 31, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #08090d;
  border-color: var(--gold-primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   CONTACT SECTION & LOCATION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition-fast);
}

.contact-card-item:hover {
  border-color: var(--border-card);
  background: var(--bg-card-hover);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
  font-size: 0.98rem;
  color: #cbd5e1;
}

.contact-text a:hover {
  color: var(--gold-light);
}

/* Google Maps Dark Themed Embed */
.map-container {
  height: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-top: 10px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.whatsapp-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-bubble svg {
  width: 32px;
  height: 32px;
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.8;
  animation: pulse-ring 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-tooltip {
  background: rgba(10, 13, 20, 0.95);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp:hover .whatsapp-bubble {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 80px;
  padding-bottom: 36px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-title {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   MODALS (CASE STUDY & LEGAL)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 6, 0.88);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: #0d1017;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #08090d;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .social-platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .about-grid,
  .calculator-box,
  .audit-card,
  .why-choose-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav-menu,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

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

  .services-grid,
  .portfolio-grid,
  .team-grid,
  .process-timeline,
  .stats-cards-grid,
  .why-features-grid,
  .social-platforms-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics-strip {
    grid-template-columns: 1fr;
  }

  .showreel-scenes-grid {
    grid-template-columns: 1fr;
  }

  .calculator-box,
  .strategy-cta-wrapper,
  .audit-card,
  .modal-content-card,
  .testimonial-card {
    padding: 26px 20px;
  }

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

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

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

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-bubble {
    width: 52px;
    height: 52px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
