/* ==========================================================================
   AIDER CREATIVE — Premium Agency Design System & Style Definitions
   ========================================================================== */

@import url('hero-grid.css');
@import url('brands-marquee.css');
@import url('nova-nav.css');

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #0A0A0A;
  --bg-secondary: #121212;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --bg-glass: rgba(10, 10, 10, 0.85);
  --bg-glass-card: rgba(22, 22, 22, 0.65);

  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #6E6E73;
  --text-inverse: #0A0A0A;

  --accent-red: #E63946;
  --accent-red-hover: #FF4D5A;
  --accent-orange: #FF5A36;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --accent-glow-strong: rgba(230, 57, 70, 0.6);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-active: rgba(230, 57, 70, 0.5);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.35rem);
  --text-xl: clamp(1.35rem, 1.25rem + 0.5vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.5rem + 1vw, 2.35rem);
  --text-3xl: clamp(2.25rem, 1.8rem + 2vw, 3.5rem);
  --text-hero: clamp(2.8rem, 2rem + 5vw, 5.8rem);

  /* Spacing Scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 9rem;

  /* Layout Container */
  --container-max: 1320px;
  --container-pad: clamp(1rem, 4vw, 3rem);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 450ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation Shadows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px -5px var(--accent-glow);
}

/* --------------------------------------------------------------------------
   02. BASE & RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   CUSTOM CURSOR FOLLOWER
   -------------------------------------------------------------------------- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 50ms ease-out;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(230, 57, 70, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

/* Custom Selection */
::selection {
  background: var(--accent-red);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   03. UTILITY & TYPOGRAPHY CLASSES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.text-accent {
  color: var(--accent-red);
}

.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-orange);
  padding-left: 0.15em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.dot-red {
  color: var(--accent-red);
  font-size: 0.8rem;
}

.heading-lg {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.subheading {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
}

.editorial-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-red);
  font-weight: 600;
  margin-right: 0.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary,
.btn-cta-main {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 25px rgba(255, 90, 54, 0.4);
}

.btn-primary:hover,
.btn-cta-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 35px rgba(255, 90, 54, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(10px);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-link {
  padding: 0;
  color: var(--accent-red);
  font-weight: 700;
  gap: 0.5rem;
}

.btn-link:hover {
  color: var(--accent-red-hover);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

.btn svg {
  transition: transform var(--transition-fast);
}

/* --------------------------------------------------------------------------
   04. STICKY NAVBAR (Handled via nova-nav.css)
   -------------------------------------------------------------------------- */
/* Legacy navbar rules removed to allow Nova Glow Navbar centering */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 900;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-secondary);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   05. HERO SECTION WITH 3D WORK WALL & PARALLAX
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--space-4xl) + 1rem);
  padding-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  perspective: 1400px;
}

/* 3D Interactive Floating Work Perspective Grid (Exact Omnix Studio Match) */
.hero-work-perspective {
  position: absolute;
  top: -25%;
  left: -20%;
  width: 140%;
  height: 150%;
  pointer-events: none;
  z-index: 1;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-work-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: rotateX(16deg) rotateY(-8deg) rotateZ(-3deg) scale(1.18);
  transition: transform 0.12s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

.work-grid-row {
  display: flex;
  gap: 1.6rem;
  width: max-content;
}

.work-grid-row:nth-child(even) {
  margin-left: -6rem;
}

.work-card-tile {
  width: 350px;
  height: 220px;
  background-size: cover;
  background-position: center top;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.05);
  opacity: 0.78;
  filter: saturate(1.1) brightness(1.02) contrast(1.05);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hero-section:hover .work-card-tile {
  opacity: 0.92;
  filter: saturate(1.2) brightness(1.08) contrast(1.08);
}

.work-card-tile:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 90, 54, 0.5);
}

/* Radial Vignette Dark Gradient Overlay matching Omnix Studio Lighting */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.88) 80%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-eyebrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-award-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
  color: #FFFFFF;
}

.hero-headline-line {
  display: block;
}

.hero-subheadline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Trust Proof Badges Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  margin-bottom: var(--space-xl);
}

.trust-item {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-item:not(:last-child)::after {
  content: '•';
  margin-left: 0.8rem;
  color: var(--text-muted);
}

.badge-label {
  color: var(--text-primary);
}

.badge-star {
  color: #FFC107;
}

.badge-sub {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: var(--accent-orange);
}

/* Logo Marquee */
.marquee-container {
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.marquee-item:hover {
  opacity: 1;
  color: var(--accent-orange);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   06. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-card-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.about-card-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: var(--space-lg);
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-check-box {
  width: 28px;
  height: 28px;
  background: rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   07. SERVICES GRID SECTION
   -------------------------------------------------------------------------- */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.service-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 600;
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   08. STATS SECTION & IMPACT VISUAL
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: var(--space-2xl);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.stat-value {
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.stat-value span {
  color: var(--accent-red);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 600;
}

.stats-visual-box {
  margin-top: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* --------------------------------------------------------------------------
   09. TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-wrapper {
  position: relative;
  margin-top: var(--space-2xl);
}

.testimonials-track-outer {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), #500000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFF;
  font-size: 1.1rem;
  border: 2px solid var(--border-medium);
}

.author-info h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
}

.author-info p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.star-rating {
  color: #FFC107;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--accent-red);
  width: 26px;
  border-radius: var(--radius-full);
}

.carousel-btns {
  display: flex;
  gap: 0.75rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   10. PROCESS / METHOD SECTION
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-2xl);
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-base);
}

.process-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.process-number {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.process-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. CTA / CONTACT SECTION & MODAL
   -------------------------------------------------------------------------- */
.contact-section {
  background: radial-gradient(circle at 80% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: var(--text-base);
  font-weight: 600;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
}

.contact-info-link:hover {
  color: var(--accent-red);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 4, 7, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  background: linear-gradient(150deg, rgba(22, 22, 28, 0.96) 0%, rgba(12, 12, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 90, 54, 0.15);
  transform: scale(0.92) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.is-active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-top-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 90, 54, 0.8) 50%, transparent 100%);
}

.modal-ambient-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 90, 54, 0.2);
  border-color: rgba(255, 90, 54, 0.5);
  color: #FFF;
  transform: rotate(90deg);
}

.modal-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.6rem;
}

.modal-badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-orange, #FF5A36);
  background: rgba(255, 90, 54, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 90, 54, 0.25);
  margin-bottom: 0.85rem;
}

.modal-badge-eyebrow .live-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00E676;
  box-shadow: 0 0 10px #00E676;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.modal-title .gradient-text {
  background: linear-gradient(135deg, #FF5A36 0%, #FF9E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.modal-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-chip svg {
  color: #00E676;
}

.modal-form {
  position: relative;
  z-index: 2;
}

.modal-form .form-group {
  margin-bottom: 1rem;
}

.modal-form .form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper .input-icon {
  position: absolute;
  left: 14px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: color 0.25s ease;
}

.input-icon-wrapper.textarea-wrapper .textarea-icon {
  top: 14px;
}

.input-icon-wrapper .form-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #FFF;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.25s ease;
}

.input-icon-wrapper .form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.input-icon-wrapper .form-input:focus {
  outline: none;
  border-color: rgba(255, 90, 54, 0.7);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.18);
}

.input-icon-wrapper .form-input:focus+.input-icon,
.input-icon-wrapper:focus-within .input-icon {
  color: var(--accent-orange, #FF5A36);
}

.input-icon-wrapper .form-textarea {
  min-height: 85px;
  resize: vertical;
}

.modal-submit-btn {
  width: 100%;
  height: 50px;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF5A36 0%, #E63946 100%);
  color: #FFF;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 90, 54, 0.4);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(255, 90, 54, 0.6);
  filter: brightness(1.08);
}

.modal-submit-btn svg {
  transition: transform 0.25s ease;
}

.modal-submit-btn:hover svg {
  transform: translateX(4px);
}

.modal-form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.9rem;
  text-align: center;
}

.modal-form-privacy svg {
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   12. MODERN ANIMATED FOOTER ENGINE (AIDER CREATIVE REINVENTED)
   -------------------------------------------------------------------------- */
.footer.modern-footer {
  position: relative;
  background-color: #070707;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-xl);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Animated Light Orbs & Grid Pattern */
.footer-bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.footer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.footer-glow-orb.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #FF5A36 0%, rgba(255, 90, 54, 0) 70%);
  top: -100px;
  left: -100px;
}

.footer-glow-orb.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #E63946 0%, rgba(230, 57, 70, 0) 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -6s;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }

  50% {
    transform: translate(30px, 40px) scale(1.1);
    opacity: 0.25;
  }

  100% {
    transform: translate(-20px, -30px) scale(0.95);
    opacity: 0.18;
  }
}

.footer-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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: 50px 50px;
  opacity: 0.6;
}

.footer-top-shimmer {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 90, 54, 0.9) 50%, transparent 100%);
  animation: shimmerMove 6s linear infinite;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}

.footer-container {
  position: relative;
  z-index: 2;
}

/* High Impact Footer CTA Banner Card */
.footer-cta-banner {
  margin-bottom: var(--space-3xl);
  position: relative;
}

.footer-cta-glass-card {
  padding: 2.8rem 3.5rem;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.footer-cta-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 90, 54, 0.2);
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

.footer-cta-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.footer-cta-sub {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin: 0;
  max-width: 540px;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* Footer Columns Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 90, 54, 0.45);
}

/* Footer Navigation & Services Links */
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-orange);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.footer-nav-link svg {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  color: var(--accent-orange);
}

.footer-nav-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-nav-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact Column Cards */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-card:hover {
  background: rgba(255, 90, 54, 0.08);
  border-color: rgba(255, 90, 54, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 54, 0.15);
}

.contact-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 90, 54, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow: hidden;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.contact-card-val {
  font-size: 0.86rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.footer-location-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  padding: 0 4px;
}

.footer-location-box svg {
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Modern Footer Bottom Row */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copyright strong {
  color: var(--text-secondary);
}

.footer-sub-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-arrow-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background: rgba(255, 90, 54, 0.15);
  border-color: rgba(255, 90, 54, 0.4);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 90, 54, 0.25);
}

.back-to-top-btn:hover .btn-arrow-box {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Responsive Footer Breakpoints */
@media (max-width: 1024px) {
  .footer-cta-glass-card {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 2rem;
  }

  .footer-cta-sub {
    margin: 0 auto;
  }

  .footer-cta-actions {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer.modern-footer {
    padding-top: var(--space-2xl);
  }

  .footer-cta-headline {
    font-size: 1.65rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-work-grid {
    transform: rotateX(15deg) rotateY(-8deg) scale(0.9);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-visual-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-work-grid {
    transform: rotateX(10deg) rotateY(0deg) scale(0.75);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}


/* ==========================================================================
   WHITE & ORANGE SECTION THEME DEFINITIONS
   ========================================================================== */
.theme-white-orange {
  background-color: #FAFAFC;
  color: #0F172A;
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.theme-white-orange .eyebrow {
  color: #EA580C;
  background: rgba(249, 115, 22, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.theme-white-orange .heading-lg,
.theme-white-orange h2,
.theme-white-orange h3,
.theme-white-orange h4 {
  color: #0F172A;
}

.theme-white-orange .subheadline,
.theme-white-orange p,
.theme-white-orange .subheading {
  color: #475569;
}

.theme-white-orange .accent-serif {
  color: #EA580C;
}

/* Light Card System */
.light-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.light-card:hover {
  transform: translateY(-4px);
  border-color: #F97316;
  box-shadow: 0 20px 40px -15px rgba(249, 115, 22, 0.18);
}

.light-card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #EA580C;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

/* Services 10-Grid Layout */
.services-grid-10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 15px 35px -10px rgba(255, 90, 54, 0.25);
}

.service-card-v2:hover::before {
  opacity: 1;
}

.service-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-style: italic;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process 6-Steps Grid */
.process-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step-card {
  position: relative;
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #EA580C;
  background: rgba(249, 115, 22, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.process-step-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #0F172A;
}

.process-step-h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: #EA580C;
  margin-bottom: 0.75rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 880px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 25px -5px rgba(255, 90, 54, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-orange);
  transition: transform var(--transition-base);
  font-size: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-orange);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .services-grid-10 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-10 {
    grid-template-columns: 1fr;
  }

  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 15px 35px -10px rgba(255, 90, 54, 0.25);
}

.service-card-v2:hover::before {
  opacity: 1;
}

.service-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-style: italic;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process 6-Steps Grid */
.process-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step-card {
  position: relative;
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #EA580C;
  background: rgba(249, 115, 22, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.process-step-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #0F172A;
}

.process-step-h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: #EA580C;
  margin-bottom: 0.75rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 880px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 25px -5px rgba(255, 90, 54, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-orange);
  transition: transform var(--transition-base);
  font-size: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-orange);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .services-grid-10 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-10 {
    grid-template-columns: 1fr;
  }

  .process-grid-6 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   03. ENHANCED ABOUT US SECTION — FRAMER SCROLL TEXT REVEAL & CALICUT MAP
   ========================================================================== */
.about-map-section {
  position: relative;
  padding: 120px 0;
  background-color: #08080a;
  overflow: hidden;
  color: #ffffff;
}

/* Background Calicut Map Layer */
.about-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/calicut-map-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: contrast(1.15) brightness(0.85);
  transform: scale(1.05);
  transition: transform 0.6s ease-out;
  will-change: transform;
}

/* Dynamic Radial Mask & Vignette Overlay */
.about-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 8, 10, 0.38) 0%, rgba(8, 8, 10, 0.86) 68%, #08080a 100%),
    linear-gradient(to bottom, #0a0a0a 0%, rgba(8, 8, 10, 0.15) 30%, rgba(8, 8, 10, 0.15) 70%, #0b0c10 100%);
  pointer-events: none;
}

/* Interactive Grid Lines */
.about-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 94, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 94, 20, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glowing Calicut Location Pin Badge */
.about-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 94, 20, 0.12);
  border: 1px solid rgba(255, 94, 20, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  color: #FF5E14;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  box-shadow: 0 0 25px rgba(255, 94, 20, 0.15);
  transition: all 0.35s ease;
}

.about-location-tag:hover {
  background: rgba(255, 94, 20, 0.2);
  border-color: rgba(255, 94, 20, 0.6);
  box-shadow: 0 0 35px rgba(255, 94, 20, 0.3);
  transform: translateY(-2px);
}

.about-pin-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #FF5E14;
  border-radius: 50%;
  display: inline-block;
}

.about-pin-pulse::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border: 2px solid #FF5E14;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Glass Card Outer Wrapper */
.about-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(14, 14, 18, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 94, 20, 0.4);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 45px rgba(255, 94, 20, 0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.about-glass-card:hover {
  border-color: rgba(255, 94, 20, 0.45);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 94, 20, 0.18);
}

/* Top Shimmer Edge */
.about-card-shimmer {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 94, 20, 0.8), transparent);
  pointer-events: none;
}

/* Main Animated Title */
.about-title-animated {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 35px;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.about-headline-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 55%, #FF5E14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title-animated em.accent-serif {
  color: #FF5E14;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 0 25px rgba(255, 94, 20, 0.45);
}

/* Framer Scroll Paragraph Cards */
.about-paragraphs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}

.about-paragraph-card {
  position: relative;
  background: rgba(18, 18, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 32px;
  text-align: left;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease, background 0.4s ease;
  backdrop-filter: blur(12px);
}

.about-paragraph-card.is-active-reveal,
.about-paragraph-card:hover {
  border-color: rgba(255, 94, 20, 0.65);
  box-shadow:
    0 12px 32px -5px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(255, 94, 20, 0.2);
  background: rgba(22, 22, 28, 0.92);
}

.scroll-reveal-text {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
}

/* Framer Word Reveal Spans */
.reveal-word {
  display: inline;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.15s ease, text-shadow 0.15s ease;
  will-change: color;
}

/* Coordinates Badge at bottom */
.about-coords-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #888899;
  letter-spacing: 1px;
}

.about-coords-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-coords-item svg {
  color: #FF5E14;
}

/* Responsiveness */
@media (max-width: 768px) {
  .about-map-section {
    padding: 80px 0;
  }

  .about-glass-card {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .about-paragraph-card {
    padding: 22px 20px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   FIXED LEFT SIDEBAR COMPONENT (Top to Bottom Site-Wide Sidebar)
   ========================================================================== */
.agency-fixed-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 70px;
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  box-sizing: border-box;
}

/* Top Brand Emblem Badge */
.sidebar-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.sidebar-logo-emblem {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 94, 20, 0.12);
  border: 1px solid rgba(255, 94, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.25);
}

.sidebar-emblem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sidebar-logo-emblem:hover {
  background: rgba(255, 94, 20, 0.25);
  border-color: rgba(255, 94, 20, 0.85);
  box-shadow: 0 0 22px rgba(255, 94, 20, 0.55);
  transform: translateY(-2px) scale(1.06);
}

.sidebar-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  background: #10B981;
  border: 2px solid #08090c;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Vertical Text Middle */
.sidebar-brand-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  user-select: none;
  pointer-events: none;
}

/* Social Icons Bottom */
.sidebar-socials {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.sidebar-icon-link {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-icon-link:hover {
  color: #FF5E14;
  transform: scale(1.2);
}

/* Page padding offset for desktop */
@media (min-width: 992px) {
  body {
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .agency-fixed-sidebar {
    display: none;
  }
}

/* ==========================================================================
   FRAMER-STYLE ODOMETER COUNTER COMPONENT
   ========================================================================== */
.odometer-card {
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 94, 20, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.odometer-card:hover {
  border-color: rgba(255, 94, 20, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 94, 20, 0.15);
}

.odometer-wrapper {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  height: 1em;
  line-height: 1em;
  overflow: hidden;
  vertical-align: bottom;
}

.odometer-digit-col {
  position: relative;
  display: inline-block;
  height: 1em;
  overflow: hidden;
  width: 0.65em;
  text-align: center;
}

.odometer-ribbon {
  display: flex;
  flex-direction: column;
  transform: translateY(0%);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.odometer-num {
  height: 1em;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.odometer-symbol {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  user-select: none;
}

/* ==========================================================================
   FRAMER STICKY TESTIMONIALS SECTION (Container-yvZdB4.js)
   ========================================================================== */
.sticky-testimonial-section {
  position: relative;
  padding: 120px 0 140px;
  background: #08090c;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
}

.testimonial-bg-glow.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.12) 0%, transparent 70%);
}

.testimonial-bg-glow.glow-bottom {
  bottom: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, transparent 70%);
}

/* Background Scrolling Marquee Ticker */
.testimonial-ticker-wrap {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) rotate(-3deg);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
}

.testimonial-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: testimonialTickerScroll 35s linear infinite;
  will-change: transform;
}

.testimonial-ticker-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  text-transform: uppercase;
  padding-right: 40px;
}

@keyframes testimonialTickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Header Styling */
.testimonial-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.testimonial-badge {
  background: rgba(255, 94, 20, 0.1);
  color: #FF5E14;
  border: 1px solid rgba(255, 94, 20, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.testimonial-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.testimonial-subtitle {
  color: #FF5E14;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Staggered Grid Container */
.testimonial-staggered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Framer Testimonial Card */
.framer-testimonial-card {
  background: rgba(18, 19, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.framer-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 94, 20, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 94, 20, 0.25);
}

/* Staggered offset positions for Desktop (Framer Style) */
.card-pos-right-1 {
  margin-top: 70px;
}

.card-pos-right-2 {
  margin-top: 70px;
}

.card-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #eeeeee;
  font-weight: 400;
  margin-bottom: 30px;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 54px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 94, 20, 0.35);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.client-info .client-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.client-info .client-role {
  font-size: 0.86rem;
  color: #a0a0a0;
  font-weight: 500;
  display: block;
}

.client-brand-logo {
  max-width: 80px;
  max-height: 36px;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(1.2);
  transition: opacity 0.3s ease;
}

.framer-testimonial-card:hover .client-brand-logo {
  opacity: 1;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 900px) {
  .testimonial-staggered-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-pos-right-1,
  .card-pos-right-2 {
    margin-top: 0;
  }

  .testimonial-title {
    font-size: 2.2rem;
  }

  .framer-testimonial-card {
    padding: 28px;
  }
}

/* ==========================================================================
   SECTION 09: REDESIGNED CONTACT SECTION (DARK GLASS & MICRO-INTERACTIONS)
   ========================================================================== */
.contact-section-v2 {
  position: relative;
  background-color: #060608;
  padding: 110px 0 100px;
  overflow: hidden;
  color: #FFFFFF;
}

.contact-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-glow-orb {
  position: absolute;
  border-radius: 50%;
}

.contact-glow-orb.orb-c1 {
  width: 550px;
  height: 550px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  animation: floatGlow 20s ease-in-out infinite alternate;
}

.contact-glow-orb.orb-c2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

.contact-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 90, 54, 0.08);
  border: 1px solid rgba(255, 90, 54, 0.25);
  border-radius: 30px;
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.contact-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-headline .accent-serif {
  color: var(--accent-orange);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

.contact-subheadline {
  font-size: 1.08rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* Main Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: stretch;
}

/* Left Column: Info Cards */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.contact-info-card {
  background: rgba(18, 18, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.35s ease;
}

.contact-info-card:hover {
  border-color: rgba(255, 90, 54, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.contact-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 1.2px;
  background: rgba(255, 90, 54, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.contact-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 54, 0.12);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.contact-card-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  margin-bottom: 14px;
}

.contact-card-meta {
  font-size: 0.88rem;
  color: #CBD5E1;
  font-weight: 500;
}

.contact-info-cards-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-interactive-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 18, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-interactive-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 54, 0.4);
  background: rgba(24, 24, 30, 0.85);
  box-shadow: 0 10px 30px rgba(255, 90, 54, 0.12);
}

.contact-card-icon-wrap.email-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.contact-card-icon-wrap.phone-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}

.contact-interactive-details {
  display: flex;
  flex-direction: column;
}

.contact-meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.contact-meta-val {
  font-size: 0.96rem;
  font-weight: 600;
  color: #FFFFFF;
}

.contact-card-arrow {
  margin-left: auto;
  color: #64748B;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-interactive-card:hover .contact-card-arrow {
  transform: translateX(4px);
  color: var(--accent-orange);
}

/* WhatsApp Box */
.contact-whatsapp-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 18, 22, 0.85) 100%);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wa-box-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-status-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(37, 211, 102, 0.5);
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #25D366;
  border: 2px solid #08080a;
  border-radius: 50%;
}

.wa-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

.wa-sub {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
}

.btn-wa-direct {
  background: #25D366;
  color: #08080a;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-wa-direct:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* Agency Trust & Impact Guarantee Card */
.contact-guarantee-card {
  background: rgba(18, 18, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 90, 54, 0.22);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  flex: 1;
}

.contact-guarantee-card:hover {
  border-color: rgba(255, 90, 54, 0.45);
  box-shadow: 0 20px 45px rgba(255, 90, 54, 0.15);
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 90, 54, 0.12);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent-orange);
  text-transform: uppercase;
  background: rgba(255, 90, 54, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 90, 54, 0.2);
}

.guarantee-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.guarantee-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-mini-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.metric-num {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF5A36 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  display: block;
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* Right Column: Glassmorphic Form */
.contact-form-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  position: relative;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 34px 38px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-card-top-shimmer {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-red), transparent);
}

.form-card-header {
  margin-bottom: 26px;
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 0.9rem;
  color: #94A3B8;
}

.service-select-group {
  margin-bottom: 22px;
}

.service-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.chip-option {
  cursor: pointer;
  position: relative;
}

.chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-text {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.chip-option input:checked+.chip-text {
  background: rgba(255, 90, 54, 0.15);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 90, 54, 0.2);
}

.chip-option:hover .chip-text {
  border-color: rgba(255, 90, 54, 0.4);
  color: #FFFFFF;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-row-2col .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required-star {
  color: var(--accent-orange);
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #64748B;
  pointer-events: none;
  transition: color 0.3s ease;
}

.textarea-wrapper .textarea-icon {
  top: 14px;
}

.form-input-v2 {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 13px 16px 13px 44px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input-v2:focus {
  border-color: var(--accent-orange);
  background: rgba(255, 90, 54, 0.04);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.12);
}

.input-icon-wrapper:focus-within .input-icon {
  color: var(--accent-orange);
}

.form-textarea-v2 {
  resize: vertical;
  min-height: 110px;
}

.btn-contact-submit {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
  border: none;
  border-radius: 14px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(255, 90, 54, 0.3);
  margin-top: 6px;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 90, 54, 0.45);
}

.btn-contact-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Contact Section Responsive Breakpoints */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-chips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-section-v2 {
    padding: 80px 0;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-whatsapp-box {
    flex-direction: column;
    text-align: center;
  }

  .wa-box-left {
    flex-direction: column;
  }

  .btn-wa-direct {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION 04: REDESIGNED STATS / COUNTER SECTION (DARK GLASS & GRADIENTS)
   ========================================================================== */
.counter-section-v2 {
  position: relative;
  background-color: #070709;
  padding: 85px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.counter-glow-orb {
  position: absolute;
  border-radius: 50%;
}

.counter-glow-orb.orb-stat1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.12) 0%, transparent 70%);
  filter: blur(85px);
  animation: floatGlow 18s ease-in-out infinite alternate;
}

.counter-glow-orb.orb-stat2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  right: 15%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

.counter-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.counter-top-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 54, 0.4), transparent);
}

.counter-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.counter-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-card-v2 {
  position: relative;
  background: rgba(16, 16, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.counter-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 54, 0.45);
  background: rgba(22, 22, 30, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 90, 54, 0.15);
}

.card-glow-shimmer {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 54, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.counter-card-v2:hover .card-glow-shimmer {
  opacity: 1;
}

.counter-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 90, 54, 0.12);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
  flex-shrink: 0;
}

.counter-icon-wrap.icon-retention {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}

.counter-icon-wrap.icon-roi {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.counter-icon-wrap.icon-services {
  background: rgba(168, 85, 247, 0.12);
  color: #A855F7;
}

.counter-card-v2:hover .counter-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.counter-badge-pill {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-orange);
  background: rgba(255, 90, 54, 0.1);
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 90, 54, 0.2);
}

.counter-badge-pill.pill-green {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.counter-badge-pill.pill-gold {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.counter-value-wrap {
  margin-top: 4px;
}

.counter-number {
  font-size: clamp(2.6rem, 3.5vw, 3.5rem);
  font-weight: 800;
  color: #FF5E14;
  -webkit-text-fill-color: #FF5E14;
  margin: 0;
  line-height: 1.1;
  display: inline-block;
  letter-spacing: -0.02em;
}

.odometer-num,
.odometer-symbol {
  color: #FF5E14;
  -webkit-text-fill-color: #FF5E14;
  text-shadow: 0 0 20px rgba(255, 94, 20, 0.35);
}

.counter-label-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.counter-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.counter-subtext {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

/* Counter Section Responsive Breakpoints */
@media (max-width: 1024px) {
  .counter-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .counter-section-v2 {
    padding: 60px 0;
  }

  .counter-grid-4col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .counter-card-v2 {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   DEDICATED INNER PAGES STYLES (ABOUT & SERVICES)
   ========================================================================== */
.inner-page-hero {
  position: relative;
  padding: 160px 0 90px;
  background: radial-gradient(circle at 50% 20%, rgba(230, 57, 70, 0.12) 0%, rgba(10, 10, 10, 0.98) 70%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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: 60px 60px;
  pointer-events: none;
  opacity: 0.4;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.inner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255, 90, 54, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 90, 54, 0.25);
  margin-bottom: 24px;
}

.inner-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.inner-hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 32px;
}

/* Glass Section Container */
.inner-section {
  position: relative;
  padding: 100px 0;
}

.inner-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.inner-section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
  display: block;
}

.inner-section-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.inner-section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Values & Philosophy Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  position: relative;
  background: rgba(22, 22, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 16px 36px -12px rgba(255, 90, 54, 0.15);
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 90, 54, 0.12);
  border: 1px solid rgba(255, 90, 54, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Detailed Services Grid */
.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.detailed-service-card {
  position: relative;
  background: rgba(22, 22, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detailed-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 20px 45px -15px rgba(230, 57, 70, 0.2);
}

.service-card-top {
  margin-bottom: 24px;
}

.service-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 90, 54, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 90, 54, 0.2);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.detailed-service-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.detailed-service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.service-features-list li svg {
  color: #22C55E;
  flex-shrink: 0;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subpage Call-to-Action Banner */
.inner-cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  margin: 80px 0;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.inner-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.inner-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.inner-cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .inner-page-hero {
    padding: 130px 0 60px;
  }

  .detailed-services-grid {
    grid-template-columns: 1fr;
  }

  .inner-cta-banner {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   LOCATION & GPS MAP SECTION STYLING
   ========================================================================== */
.location-map-section {
  position: relative;
  padding: 100px 0;
  background-color: #070708;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  margin-top: 45px;
}

.map-frame-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(255, 90, 54, 0.15);
  background: rgba(18, 18, 22, 0.8);
  min-height: 440px;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  filter: grayscale(0.85) invert(0.92) contrast(1.2) hue-rotate(190deg);
  transition: filter 0.4s ease;
}

.map-frame-wrapper:hover iframe {
  filter: grayscale(0.2) invert(0.9) contrast(1.1) hue-rotate(190deg);
}

.map-location-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(14, 14, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.map-location-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange, #FF5A36);
  box-shadow: 0 0 10px var(--accent-orange, #FF5A36);
  animation: pulseGreen 2s infinite;
}

.map-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(18, 18, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.map-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 90, 54, 0.15);
}

.map-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 90, 54, 0.12);
  border: 1px solid rgba(255, 90, 54, 0.25);
  color: var(--accent-orange, #FF5A36);
  flex-shrink: 0;
}

.map-card-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}

.map-card-content p,
.map-card-content a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease;
}

.map-card-content a:hover {
  color: var(--accent-orange, #FF5A36);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF5A36 0%, #E63946 100%);
  color: #FFF;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 90, 54, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 6px;
}

.map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(255, 90, 54, 0.55);
}

@media (max-width: 992px) {
  .map-grid-layout {
    grid-template-columns: 1fr;
  }

  .map-frame-wrapper {
    min-height: 350px;
  }
}