/* ==========================================================================
   PREMIUM FU-TURISTIC SEO AGENCY HOMEPAGE STYLESHEET
   Brand: Qubrixa SEO
   Colors: Dark Blue (#020617) | Electric Cyan (#00f2fe) | Deep Indigo (#2563eb)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-primary: #030712;
  --bg-secondary: #0b1329;
  --bg-tertiary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #d4af37;
  --accent-blue: #aa7c11;
  --accent-purple: #f5ebd0;
  
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  --gradient-cyber: linear-gradient(135deg, #d4af37 0%, #f5ebd0 100%);
  --gradient-dark: linear-gradient(180deg, #0b1329 0%, #030712 100%);
  --gradient-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(170, 124, 17, 0) 70%);

  /* Glassmorphism */
  --glass-bg: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover-border: rgba(212, 175, 55, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(12px);

  /* Fonts */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

p {
  color: var(--text-secondary);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   3. REUSABLE UTILITIES & LAYOUTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.section-title-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Glassmorphic Panel */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}
.glass-panel:hover {
  border-color: var(--glass-hover-border);
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition-normal);
  opacity: 0;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #020617;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 242, 254, 0.5);
  color: #000;
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.05);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.15);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Glow Background Element */
.glow-bg {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: var(--gradient-glow);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   4. STICKY HEADER & FLOATING WIDGETS
   -------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

header.scrolled .header-container {
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo span, .logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  display: inline-block;
  white-space: nowrap;
}

.logo-svg {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-svg {
  transform: rotate(15deg) scale(1.08);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 900;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--accent-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

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

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1.5rem;
  border: 1px solid var(--glass-border);
}

.btn-whatsapp {
  background: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.btn-floating-audit {
  background: var(--gradient-cyber);
  border-color: rgba(0, 242, 254, 0.3);
}
.btn-floating-audit:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 242, 254, 0.6);
}

/* Sticky CTA Button at bottom on mobile */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  z-index: 998;
  display: none;
  justify-content: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

/* --------------------------------------------------------------------------
   5. SECTION 1: HERO SECTION & CANVAS BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 6rem;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.5) 0%, rgba(2, 6, 23, 1) 100%);
}

#cgi-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  contain: layout paint;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

.indicator-item {
  display: flex;
  flex-direction: column;
}

.indicator-num {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.indicator-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Embedded Form */
.hero-form-panel {
  background: rgba(10, 18, 40, 0.7);
  border: 1px solid rgba(0, 242, 254, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 254, 0.05);
}

.hero-form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-form-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  transition: var(--transition-normal);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
  background: rgba(2, 6, 23, 0.8);
}

.form-select option {
  background: var(--bg-secondary);
  color: #fff;
}

.btn-form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   6. SECTION 2: TRUST BADGES & RESULTS STRIP
   -------------------------------------------------------------------------- */
.results-strip {
  background: #060b18;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.results-marquee {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.results-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.results-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
}

.results-badge-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.results-badge-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   7. SECTION 3: ABOUT AGENCY
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-desc-highlight {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-bullets {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-bullets i {
  color: var(--accent-cyan);
}

/* Futuristic Dashboard Mockup */
.dashboard-mockup {
  position: relative;
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  background: #090e1c;
}

.dashboard-header {
  height: 40px;
  background: #0c152b;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}
.dashboard-dot:nth-child(2) { background: #ffbd2e; }
.dashboard-dot:nth-child(3) { background: #27c93f; }

.dashboard-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  font-family: monospace;
}

.dashboard-body {
  padding: 1.5rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mock-metric {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.mock-metric-val {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

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

.dashboard-graph {
  height: 150px;
  background: rgba(0, 242, 254, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(0, 242, 254, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 1rem;
}

.dashboard-graph svg {
  width: 100%;
  height: 100%;
}

.live-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27c93f;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

/* --------------------------------------------------------------------------
   8. SECTION 4: SEO SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 242, 254, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 242, 254, 0.1);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--accent-cyan);
  color: #020617;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.02);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
  margin-top: 1.5rem;
}

.service-enquiry-btn:hover {
  background: var(--gradient-primary);
  color: #030712 !important;
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2.5px);
}

/* --------------------------------------------------------------------------
   9. SECTION 5: INDUSTRIES WE SERVE
   -------------------------------------------------------------------------- */
.industries-section {
  position: relative;
  background: var(--gradient-dark);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-card p {
  flex-grow: 1;
}

.industry-card:hover {
  background: rgba(0, 242, 254, 0.03);
  border-color: var(--accent-cyan);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.1);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
  transition: var(--transition-fast);
}

.industry-card:hover .industry-icon {
  color: #ffffff;
}

.industry-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.industry-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. SECTION 6: GLOBAL SEO TARGET COUNTRIES
   -------------------------------------------------------------------------- */
.global-section {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.global-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: #050b18;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.12;
  filter: invert(0.85) sepia(1) saturate(8) hue-rotate(10deg);
  pointer-events: none;
  z-index: 1;
}

.world-map-svg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -85%);
  transition: var(--transition-normal);
}

.map-pin i {
  font-size: 1.35rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
  transition: var(--transition-fast);
  animation: float-pin 3s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  bottom: 12px;
  width: 20px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-cyan);
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
  z-index: -1;
}

.map-pin.active i {
  color: #ffffff;
  filter: drop-shadow(0 0 10px #ffffff);
}

.map-pin.active::after {
  border-color: #ffffff;
}

.pin-label {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid var(--glass-border);
  padding: 1px 5px;
  border-radius: 4px;
  margin-top: 1px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-pin:hover .pin-label,
.map-pin.active .pin-label {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

@keyframes float-pin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.pin-usa { top: 38%; left: 22%; }
.pin-canada { top: 28%; left: 20%; }
.pin-uk { top: 28%; left: 47%; }
.pin-dubai { top: 45%; left: 61%; }
.pin-india { top: 52%; left: 69%; }
.pin-singapore { top: 58%; left: 74%; }
.pin-australia { top: 76%; left: 83%; }
.pin-nz { top: 82%; left: 88%; }

.country-details-panel {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.country-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.country-flag {
  font-size: 2.5rem;
}

.country-name-title {
  font-size: 2rem;
  font-family: var(--font-headings);
}

.country-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.country-stat {
  border-left: 2px solid var(--accent-cyan);
  padding-left: 1rem;
}

.country-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-headings);
}

.country-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. SECTION 7: WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.why-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  background: var(--bg-secondary);
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  transition: var(--transition-normal);
}

.why-feature-item:hover {
  background: rgba(0, 242, 254, 0.02);
  border-color: var(--glass-hover-border);
  transform: translateX(10px);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-feature-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-feature-info p {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   12. SECTION 8: PROCESS SECTION (TIMELINE)
   -------------------------------------------------------------------------- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.05);
  transform: translateX(-50%);
  z-index: 1;
}

.process-timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  z-index: 2;
  height: 0;
  transition: height 0.5s ease;
}

.process-step {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
  z-index: 3;
}

.process-step:nth-child(even) {
  left: 50%;
  text-align: left;
}

.process-step:nth-child(odd) {
  left: 0;
  text-align: right;
}

.process-step:nth-child(even) .step-number {
  left: -20px;
}

.process-step:nth-child(odd) .step-number {
  right: -20px;
}

.step-number {
  position: absolute;
  top: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-secondary);
  z-index: 4;
  transition: var(--transition-normal);
  font-family: var(--font-headings);
}

.process-step.active .step-number {
  background: var(--bg-primary);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.process-step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
}

.process-step.active .process-step-card {
  border-color: var(--glass-hover-border);
  box-shadow: var(--glass-shadow);
  transform: scale(1.02);
}

.process-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-step:nth-child(odd) .process-step-card h3 {
  justify-content: flex-end;
}

.process-step.active .process-step-card h3 {
  color: var(--accent-cyan);
}

.process-step-card p {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   13. SECTION 9: CASE STUDY / RESULT PREVIEW
   -------------------------------------------------------------------------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.case-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  will-change: transform, opacity;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-hover-border);
}

.case-preview-chart {
  height: 180px;
  background: rgba(2, 6, 23, 0.5);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.case-preview-chart svg {
  width: 100%;
  height: 100%;
}

.case-body {
  padding: 2rem;
}

.case-growth-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.case-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-details-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.case-detail-item {
  display: flex;
  flex-direction: column;
}

.case-detail-num {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
}

.case-detail-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   14. SECTION 10: AI SEO / GEO SEO SECTION
   -------------------------------------------------------------------------- */
.ai-seo-section {
  position: relative;
  background: radial-gradient(circle at bottom, rgba(139, 92, 246, 0.1) 0%, rgba(2, 6, 23, 1) 100%);
}

.ai-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ai-seo-graphic {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 2.5rem;
  background: rgba(10, 15, 30, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.ai-seo-graphic::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(0, 242, 254, 0.05) 50%, transparent 100%);
  animation: slow-rotate 20s linear infinite;
  pointer-events: none;
}

.ai-engine-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ai-node {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-normal);
}

.ai-node:hover {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-5px);
}

.ai-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-purple);
}

.ai-node:nth-child(even) .ai-node-icon {
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
}

.ai-node-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.ai-node-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. SECTION 11: TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rating-stars {
  color: #ffb703;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   16. SECTION 12: FREE AUDIT CTA BANNER
   -------------------------------------------------------------------------- */
.audit-cta-section {
  position: relative;
  background: var(--bg-primary);
}

.audit-cta-banner {
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(11, 19, 41, 0.9) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.audit-cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.audit-cta-banner p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* --------------------------------------------------------------------------
   17. SECTION 13: ADVANCED CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
}

.channel-details h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.channel-details p {
  font-size: 1.1rem;
  color: #ffffff;
}

/* Contact Advanced Form */
.contact-form-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   18. SECTION 14: FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--glass-hover-border);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question h3 {
  color: var(--accent-cyan);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.4s ease;
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active FAQ State */
.faq-item.active {
  border-color: rgba(0, 242, 254, 0.25);
  background: rgba(10, 18, 40, 0.4);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* arbitrary high value for smooth animation */
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --------------------------------------------------------------------------
   19. SECTION 15: FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #02050f;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-cyan);
  color: #020617;
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

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

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

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 5px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.newsletter-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0.75rem 1.5rem;
}

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

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

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

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

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   20. ANIMATIONS & MEDIA QUERIES
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.35); opacity: 1; }
  80%, 100% { transform: scale(1.2); opacity: 0; }
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  body {
    padding-bottom: 5rem;
  }

  .hero-grid, .about-grid, .global-grid, .why-grid, .ai-seo-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .global-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand, .footer-newsletter {
    grid-column: span 2;
  }
  
  .process-timeline::before, .process-timeline-progress {
    left: 20px;
  }
  
  .process-step {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    text-align: left !important;
  }
  
  .process-step:nth-child(even) {
    left: 0;
  }
  
  .process-step:nth-child(odd) .step-number,
  .process-step:nth-child(even) .step-number {
    left: 0;
    right: auto;
  }
  
  .process-step:nth-child(odd) .process-step-card h3 {
    justify-content: flex-start;
  }

  .header-actions {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100%);
    background: var(--bg-primary);
    backdrop-filter: var(--glass-blur);
    padding: 3rem 2rem;
    transition: var(--transition-normal);
    z-index: 99;
    border-bottom: 1px solid var(--glass-border);
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  nav a {
    font-size: 1.25rem;
  }
  
  .sticky-cta-mobile {
    display: flex;
  }
  
  .floating-widgets {
    bottom: 5.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }

  .section-title-wrapper {
    margin-bottom: 2.5rem;
  }
  
  .services-grid, .industries-grid, .case-grid {
    gap: 1.5rem;
  }
}
