/*
  =========================================
  Ecom Uddokta Design System & Core Styles
  =========================================
*/

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

/* Variable Definitions */
:root {
  /* Color Tokens - Default Dark Mode */
  --bg-color: #050814;
  --bg-gradient: radial-gradient(circle at 50% 0%, #0c1630 0%, #050814 100%);
  --surface-color: rgba(10, 17, 38, 0.65);
  --surface-solid: #0b1226;
  --surface-hover: rgba(20, 32, 69, 0.8);
  --border-color: rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --gold-primary: #d4af37;
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f3e5ab 50%, #d4af37 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.5);
  
  --success: #10b981;
  --error: #ef4444;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Light Mode Variables Override */
[data-theme="light"] {
  --bg-color: #f8fafc;
  --bg-gradient: radial-gradient(circle at 50% 0%, #eff6ff 0%, #f8fafc 100%);
  --surface-color: rgba(255, 255, 255, 0.8);
  --surface-solid: #ffffff;
  --surface-hover: rgba(241, 245, 249, 0.9);
  --border-color: rgba(184, 134, 11, 0.2);
  --border-hover: rgba(184, 134, 11, 0.5);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --gold-primary: #b8860b;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b6508 100%);
  --gold-gradient-hover: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f3e5ab 100%);
  --gold-glow: 0 0 15px rgba(184, 134, 11, 0.25);
  --gold-glow-strong: 0 0 25px rgba(184, 134, 11, 0.45);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

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

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

/* Gold Gradient Text */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 8, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: var(--surface-solid);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--gold-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  background: var(--surface-hover);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
  transform: rotate(15deg);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c1226 !important;
  border: none;
  box-shadow: var(--gold-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-hover);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow-strong);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--surface-color);
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Glassmorphism Cards */
.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(12, 22, 48, 0.6) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

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

.hero-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: var(--gold-glow);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Target Locations / Scrolling marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background: rgba(10, 17, 38, 0.3);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
  position: relative;
}

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

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  gap: 3rem;
}

.marquee span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee span::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 0.8rem;
  box-shadow: var(--gold-glow);
}

.marquee span a {
  transition: var(--transition-fast);
}

.marquee span a:hover {
  color: var(--gold-primary);
}

/* Success Metrics Counter */
.metrics-strip {
  background: var(--surface-solid);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.metric-item {
  text-align: center;
  padding: 0 1.5rem;
}

.metric-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

/* About Section */
.about-grid {
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1.25rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Services Section */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.card:hover .service-icon {
  background: var(--gold-primary);
  color: #0c1226;
  box-shadow: var(--gold-glow);
  transform: scale(1.1);
}

.service-features-list {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-features-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: bold;
}

/* ROI Calculator Section */
.roi-calculator {
  background: var(--surface-solid);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.roi-inputs {
  padding: 3.5rem;
  border-right: 1px solid var(--border-color);
}

.roi-results {
  padding: 3.5rem;
  background: rgba(212, 175, 55, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.form-group label span {
  float: right;
  color: var(--gold-primary);
  font-weight: 700;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin: 1rem 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--gold-glow-strong);
}

.select-dropdown {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.select-dropdown:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

.roi-metric-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.roi-metric-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.roi-metric-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* How It Works Section */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-solid);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  top: 0;
  z-index: 10;
  box-shadow: var(--gold-glow);
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -22px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -22px;
}

.timeline-content {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

/* Why Choose Us & Industries Served */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.badge-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.badge-item-icon {
  color: var(--gold-primary);
}

/* Case Studies Section */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.case-study-image-placeholder {
  height: 250px;
  background: linear-gradient(135deg, rgba(12, 22, 48, 0.8) 0%, rgba(5, 8, 20, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.case-study-image-placeholder::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.case-study-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold-gradient);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-study-details {
  padding: 2.5rem;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.case-metric {
  text-align: center;
}

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

.case-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* FAQ Section (Accordion) */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  padding-right: 1.5rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: #0c1226;
  border-color: var(--gold-primary);
}

.faq-item.active .faq-content {
  max-height: 500px;
}

/* Contact & Forms */
.contact-grid {
  grid-template-columns: 1fr 1.2fr;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-details p,
.contact-info-details a {
  margin: 0;
  color: var(--text-secondary);
}

.contact-info-details a:hover {
  color: var(--gold-primary);
}

.contact-form-container {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(12px);
}

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

.form-input-group {
  margin-bottom: 1.5rem;
}

.form-input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

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

.map-container {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-box {
  background: var(--surface-solid);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: var(--gold-glow-strong);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 50%;
  border: 1px solid transparent;
}

.modal-close:hover {
  color: var(--text-primary);
  border-color: var(--border-color);
}

/* Exit Intent Popup */
.exit-intent-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

/* Floating Actions & Lead Capture elements */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-whatsapp:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.floating-call {
  background-color: #007bff;
}

.floating-call:hover {
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5);
}

/* Mobile Quick Bar (Alternative on screens <= 480px) */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface-solid);
  border-top: 1px solid var(--border-color);
  grid-template-columns: repeat(2, 1fr);
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.mobile-quick-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-quick-bar-item.wa {
  background-color: #25d366;
  color: #fff;
}

.mobile-quick-bar-item.call {
  background-color: var(--surface-solid);
  color: var(--text-primary);
}

/* CTA Sections */
.cta-banner {
  background: radial-gradient(circle at center, #0c1c3f 0%, #050814 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gold-glow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Blog / Resources Section */
.blog-card {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(10, 17, 38, 0.8) 0%, rgba(5, 8, 20, 0.95) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.blog-info {
  padding: 2rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* Footer styling */
footer {
  background-color: #03050c;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-item span {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-inputs { border-right: none; border-bottom: 1px solid var(--border-color); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .menu-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--surface-solid);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-actions {
    gap: 0.75rem;
  }
  
  .grid-2, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-strip {
    padding: 2rem 1rem;
  }
  
  .metrics-strip .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .metric-item:nth-child(even) {
    border-right: none;
  }
  
  .metric-item:nth-child(2) {
    border-right: none;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 3.5rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  
  .timeline-badge {
    left: 20px !important;
    transform: translateX(-50%);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .floating-actions {
    display: none; /* Hide floating buttons in favor of bottom quick bar */
  }
  .mobile-quick-bar {
    display: grid;
  }
  body {
    padding-bottom: 60px; /* Space for mobile bottom bar */
  }
  .metrics-strip .grid-4 {
    grid-template-columns: 1fr;
  }
  .metric-item {
    border-right: none !important;
    padding: 1rem 0;
  }
  .metric-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Breadcrumb Styles */
.breadcrumbs {
  background: rgba(10, 17, 38, 0.4);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  margin-top: var(--header-height);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--gold-primary);
}

.breadcrumbs span {
  color: var(--text-primary);
  font-weight: 500;
}

/* Dedicated Inner Page Spacing & Layout */
.inner-page-hero {
  padding: 5rem 0 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #0c1630 0%, #050814 100%);
  border-bottom: 1px solid var(--border-color);
}

.inner-page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.inner-page-hero p {
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Layout Elements */
.blog-post-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.blog-post-content h2, .blog-post-content h3 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--gold-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-primary);
  background: rgba(212, 175, 55, 0.03);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Service Detail Cards */
.service-detail-feature {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}
