/* ==============================================================================
   NEXORA DIGITAL - COMPONENT STYLES
   Hyderabad Web Development & Digital Marketing Agency
   ============================================================================== */

/* --- Top Header Info Bar --- */
.top-bar {
  background-color: #070C16;
  color: #94A3B8;
  font-size: 0.775rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-size: 0.775rem;
  color: #94A3B8;
}

.top-bar-location .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-contacts a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.775rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.top-bar-contacts a:hover {
  color: #60A5FA;
}

@media (max-width: 820px) {
  .top-bar-location {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
}

/* --- Main Navigation Bar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background-color: rgba(11, 18, 32, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(37, 99, 235, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-name span {
  color: #3B82F6;
}

.brand-desc {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94A3B8;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background-color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-2xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  list-style: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 1.25rem;
  color: #E2E8F0;
  transition: background var(--transition-fast);
}

.dropdown-item a:hover {
  background-color: rgba(37, 99, 235, 0.15);
  color: #FFFFFF;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 0.15rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #FFFFFF;
  padding: 0.55rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  line-height: 0;
}

.mobile-toggle:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(96, 165, 250, 0.5);
  color: #60A5FA;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 18, 32, 0.98);
  backdrop-filter: blur(16px);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  color: #F1F5F9;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.35);
  color: #FFFFFF;
}

.mobile-drawer-footer {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

/* --- Hero Section & Split Layout --- */
.hero-section {
  position: relative;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 1;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-form-card {
  background: rgba(17, 28, 50, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 5;
}

.hero-form-card h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.hero-form-card p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-form-input,
.hero-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  outline: none;
  transition: all var(--transition-fast);
}

.hero-form-input::placeholder {
  color: #64748B;
}

.hero-form-input:focus,
.hero-form-select:focus {
  border-color: var(--color-accent-hover);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  background-color: rgba(11, 18, 32, 0.95);
}

.hero-form-select option {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* --- Inner Page Hero --- */
.page-hero {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.page-hero-card {
  background: rgba(17, 28, 50, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 5;
}

.page-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-card-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 700;
}

.page-hero-card-badge {
  font-size: 0.75rem;
  background: rgba(37, 99, 235, 0.25);
  color: #93C5FD;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.page-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.page-hero-list li svg {
  color: #34D399;
  flex-shrink: 0;
}

/* --- Professional Animations & Visual Illustrations --- */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes barGrow {
  from { height: 0%; }
  to { height: var(--target-height); }
}

.animate-float {
  animation: floatSlow 4s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatSlow 4.5s ease-in-out 1.5s infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Hero Visual Graphic Wrapper */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  background: rgba(17, 28, 50, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
}

.hero-visual-badge-floating {
  position: absolute;
  background: #0B1220;
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(37,99,235,0.25);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.badge-top-right {
  top: -18px;
  right: -15px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -15px;
}

/* Terminal Mockup (Web Dev) */
.terminal-window {
  background: #070C16;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.term-dot-red { background-color: #EF4444; }
.term-dot-yellow { background-color: #F59E0B; }
.term-dot-green { background-color: #10B981; }

.terminal-body {
  padding: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #E2E8F0;
}

/* Analytics Chart Mockup (Marketing & SEO) */
.chart-bars-container {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  height: 120px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar-stick {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%);
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar-stick.active {
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.chart-label {
  font-size: 0.7rem;
  color: #94A3B8;
}

/* --- 1. Web Dev: Lighthouse 100/100 Circular Speed Meter & Server Metric --- */
.lighthouse-visual-card {
  background: radial-gradient(circle at top, #111C32 0%, #070C16 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6), 0 0 35px rgba(37,99,235,0.25);
  position: relative;
}

.lighthouse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lighthouse-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.lighthouse-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.lighthouse-label {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
  text-align: center;
}

/* --- 2. Digital Marketing: Live Lead Stream & Revenue Funnel --- */
.funnel-stream-card {
  background: linear-gradient(145deg, #111C32 0%, #0B1220 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6), 0 0 35px rgba(37,99,235,0.3);
  position: relative;
}

.lead-ticker-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: floatSlow 5s ease-in-out infinite;
}

.lead-ticker-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* --- 3. SEO Services: Hyderabad Geo-Radar & SERP Tracker --- */
.seo-radar-card {
  background: #0B1220;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6), 0 0 35px rgba(16,185,129,0.2);
  position: relative;
}

.radar-location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.785rem;
  font-weight: 700;
}

.radar-kw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.radar-kw-row:last-child {
  border-bottom: none;
}

.rank-badge-pill {
  background: #10B981;
  color: #070C16;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

/* --- 4. UI/UX Design: Figma Canvas & Mobile Frame with Designer Pointers --- */
.figma-frame-card {
  background: #0E172A;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6), 0 0 35px rgba(59,130,246,0.25);
  position: relative;
}

.figma-cursor {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 15;
}

.cursor-1 {
  top: 15px;
  right: 25px;
  background-color: #EC4899;
  animation: floatSlow 3.5s ease-in-out infinite;
}

.cursor-2 {
  bottom: 25px;
  left: 20px;
  background-color: #3B82F6;
  animation: floatSlow 4s ease-in-out 1s infinite;
}

/* --- 5. About Us: Capability Matrix & SLA Security Lock --- */
.matrix-card {
  background: linear-gradient(135deg, #111C32 0%, #070C16 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6), 0 0 30px rgba(245,158,11,0.18);
  position: relative;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.matrix-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.matrix-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FBBF24;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.matrix-title {
  font-size: 0.785rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* --- Live Social Proof Notification Pop-up --- */
.social-proof-toast {
  position: fixed;
  bottom: 95px;
  left: 24px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 998;
  max-width: 340px;
  animation: slideInLeft 0.5s ease forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-proof-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Clean Breadcrumbs --- */
.breadcrumbs {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0.5rem !important;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.breadcrumbs a {
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.breadcrumbs span.separator {
  color: #64748B;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs span.current {
  color: #60A5FA;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.breadcrumbs svg {
  display: inline-block !important;
  vertical-align: middle;
  flex-shrink: 0;
}

/* --- Infinite Scrolling Services & Tech Marquee --- */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
  background: #070C16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #070C16 0%, rgba(7, 12, 22, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #070C16 0%, rgba(7, 12, 22, 0) 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  animation: scrollMarquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(17, 28, 50, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.marquee-item:hover {
  border-color: var(--color-accent);
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.marquee-item .item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-hover);
  box-shadow: 0 0 8px var(--color-accent-hover);
}

.hero-glow-1 {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(11, 18, 32, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.3) 0%, rgba(11, 18, 32, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 1.75rem;
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.14;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #FFFFFF 40%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: #CBD5E1;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(17, 28, 50, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(10px);
}

.hero-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 1.25rem;
}

.hero-stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
}

.stat-number .stat-plus {
  color: var(--color-accent-hover);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

/* --- Feature Cards & Services --- */
.service-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-accent);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
}

.service-link svg {
  transition: transform var(--transition-fast);
}

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

/* --- Dark Theme Cards --- */
.dark-card {
  background-color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition-smooth);
}

.dark-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.4);
}

/* --- Process 6-Step Timeline --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.process-step {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.925rem;
  color: var(--color-text-muted);
}

/* --- Funnel Visual Section (Marketing) --- */
.funnel-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.funnel-step {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  transition: all var(--transition-fast);
}

.funnel-step:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.funnel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.funnel-bar {
  height: 12px;
  background: #F1F5F9;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 1.5rem;
}

.funnel-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #3B82F6);
  border-radius: 6px;
}

.funnel-metric {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* --- Portfolio / Case Study Card --- */
.case-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.case-header {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  padding: 1.75rem;
  position: relative;
}

.case-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93C5FD;
  background: rgba(37, 99, 235, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.case-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.case-client-location {
  font-size: 0.825rem;
  color: #94A3B8;
}

.case-body {
  padding: 1.75rem;
  flex-grow: 1;
}

.case-metric-box {
  background-color: var(--color-bg-light);
  border-left: 3px solid var(--color-accent);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}

.case-metric-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.case-metric-lbl {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.case-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.case-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #0F172A;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover .case-image {
  transform: scale(1.06);
}

.case-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.case-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.browser-dot.red { background-color: #EF4444; }
.browser-dot.yellow { background-color: #F59E0B; }
.browser-dot.green { background-color: #10B981; }

.browser-url-text {
  font-size: 0.7rem;
  color: #94A3B8;
  margin-left: 0.35rem;
  font-family: monospace;
}

.portfolio-badge-pill {
  font-size: 0.725rem;
  font-weight: 700;
  color: #60A5FA;
  background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* General Image Box for Showcase */
.showcase-media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.showcase-media-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.showcase-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-floating-stat {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}

/* --- Interactive Filter Tabs --- */
.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
  border-color: rgba(37, 99, 235, 0.3);
}

.filter-btn.active {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.2);
}

.case-card-wrapper {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* --- Interactive Project Calculator --- */
.calc-wrapper {
  background: linear-gradient(145deg, #0B1220 0%, #111D35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.calc-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #93C5FD;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.calc-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.calc-select option {
  background: #0B1220;
  color: #FFFFFF;
}

.calc-select:focus {
  border-color: #3B82F6;
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.calc-addon-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.calc-addon-label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
}

.calc-addon-label input:checked + span {
  color: #60A5FA;
  font-weight: 700;
}

.calc-output-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-output-metric {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.calc-output-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #34D399;
  line-height: 1.1;
  margin-top: 0.25rem;
}

.calc-output-timeline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #60A5FA;
  margin-top: 0.25rem;
}

/* --- Speed Benchmark Comparison Component --- */
.benchmark-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.benchmark-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.benchmark-row.header {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0;
}

.benchmark-badge-win {
  color: #10B981;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.benchmark-badge-fail {
  color: #EF4444;
  font-weight: 600;
}

/* --- Floating Quick Callback Drawer Trigger --- */
.quick-contact-pill {
  position: fixed;
  bottom: 5.25rem;
  right: 1.5rem;
  z-index: 998;
  background: #0B1220;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.quick-contact-pill:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-addons-grid { grid-template-columns: 1fr; }
  .benchmark-row { grid-template-columns: 1fr 1fr; }
  .benchmark-row .benchmark-feature-desc { grid-column: 1 / -1; margin-bottom: 0.35rem; }
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
}

.faq-answer-inner {
  padding-bottom: 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- Contact & Quote Form Styles --- */
.form-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* Budget Selector Pills */
.budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.budget-option {
  position: relative;
}

.budget-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.budget-option label {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.budget-option input:checked + label {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

/* --- Floating WhatsApp CTA --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

/* --- Toast Alert Notifications --- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  min-width: 320px;
  max-width: 420px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-2xl);
  border-left: 4px solid var(--color-accent);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: slideIn 0.3s ease forwards;
}

.toast.toast-success { border-left-color: var(--color-success); }
.toast.toast-error { border-left-color: var(--color-danger); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-primary);
  color: #94A3B8;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.site-footer .container {
  max-width: var(--max-width);
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1.3fr 1.8fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-areas-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.footer-area-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-area-tag:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #60A5FA;
  border-color: rgba(96, 165, 250, 0.3);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Responsive Footer & Nav */
@media (max-width: 1150px) {
  .nav-menu { display: none !important; }
  .mobile-toggle { display: block !important; }
  .top-bar-location { display: none; }
  .top-bar-inner { justify-content: center; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .funnel-step { grid-template-columns: 1fr; gap: 0.75rem; text-align: left; }
  .funnel-metric { text-align: left; }
  .funnel-bar { margin: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-header { padding: 0.65rem 0; min-height: 64px; }
  .brand-icon { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 8px; }
  .brand-name { font-size: 1.15rem; }
  .brand-desc { font-size: 0.55rem; }
  .hero-section { padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.6rem); line-height: 1.2; }
  .hero-desc { font-size: 0.975rem; margin-bottom: 1.5rem; }
  .hero-form-card { padding: 1.6rem 1.25rem; border-radius: var(--radius-lg); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1.25rem; text-align: center; justify-content: center; }
  .footer-bottom > div:last-child { justify-content: center; flex-wrap: wrap; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 1rem; }
  .budget-options { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; border-radius: var(--radius-lg); }
  
  /* Floating elements positioning on mobile */
  .quick-contact-pill {
    bottom: 5.25rem;
    right: 1.25rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
  }
  
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 580px) {
  .nav-quote-btn { display: none !important; }
  .hero-form-card [style*="grid-template-columns: 1fr 1fr"],
  .hero-form-card [style*="grid-template-columns: 1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .hero-badge {
    font-size: 0.725rem;
    padding: 0.3rem 0.75rem;
  }
}
