/* -------------------------------------------------------------------------
   PUBLICITY LANE - PREMIUM MINIMAL AGENCY STYLESHEET
   Theme: Refined Royal Blue (#0D3FA8), Consistent Geometric Dot Grid + Blinking Animations
------------------------------------------------------------------------- */

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

:root {
  --primary: #0D3FA8;
  --primary-hover: #0A3287;
  --primary-light: rgba(13, 63, 168, 0.08);
  --primary-glow: rgba(13, 63, 168, 0.2);
  --accent-blue: #2563EB;
  --accent-cyan: #0EA5E9;
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark-slate: #0F172A;
  --bg-dark-card: #1E293B;
  --border-light: #E2E8F0;
  --border-hover: #CBD5E1;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(13, 63, 168, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* =========================================================================
   GLOBAL BLINKING ANIMATIONS
========================================================================= */

@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.6); }
}

@keyframes blink-slow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.1; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.15; }
  100% { transform: scale(0.85); opacity: 0.5; }
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

@keyframes shimmer-line {
  0% { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

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

/* =========================================================================
   GLOBAL BODY & BACKGROUND — Full Website Dot Grid
========================================================================= */

body {
  overflow-x: hidden;
  background-color: #F8FAFC;
  /* Dot matrix that repeats throughout the whole page (not fixed, so it scrolls with content) */
  background-image:
    radial-gradient(rgba(13, 63, 168, 0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient top-left blob — fixed behind everything */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 63, 168, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float-orb 8s ease-in-out infinite;
}

/* Ambient bottom-right blob — fixed behind everything */
body::after {
  content: '';
  position: fixed;
  bottom: -140px;
  right: -140px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float-orb 11s ease-in-out infinite reverse;
}

/* =========================================================================
   FLOATING DECORATIVE DOT CANVAS (injected via JS)
   Minimal blinking dots scattered at fixed positions across every section
========================================================================= */

.bg-blink-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 0;
  animation: blink-dot var(--blink-speed, 3s) ease-in-out infinite;
  animation-delay: var(--blink-delay, 0s);
}

/* =========================================================================
   SECTION — Shared styles + per-section light background color blocks
========================================================================= */

section {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

/* Light sections get a subtle inner glow accent */
.hero,
.services,
.testimonials,
.faq,
.contact {
  background-color: #F8FAFC;
}

/* Alternate sections get a very faint blue-white tint so there's visual rhythm */
.about,
.process {
  background-color: rgba(248, 250, 252, 0.95);
  border-top: 1px solid rgba(13, 63, 168, 0.06);
  border-bottom: 1px solid rgba(13, 63, 168, 0.06);
}

/* Stats/dark section gets its own dot grid in white */
.stats-section {
  background-color: var(--bg-dark-slate);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  position: relative;
  overflow: hidden;
}

/* Blinking accent orbs on the dark stats section */
.stats-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 5%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-ring 6s ease-in-out infinite;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(13, 63, 168, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-ring 9s ease-in-out infinite reverse;
}

/* Corner accent rings — one per light section */
.hero::before,
.services::before,
.about::before,
.process::before,
.testimonials::before,
.faq::before,
.contact::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(13, 63, 168, 0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse-ring 7s ease-in-out infinite;
}

.hero::after,
.services::after,
.about::after,
.process::after,
.testimonials::after,
.faq::after,
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1.5px solid rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse-ring 10s ease-in-out infinite reverse;
}

/* Additional blinking shimmer line accents on specific sections */
.services .shimmer-accent,
.process .shimmer-accent,
.faq .shimmer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 63, 168, 0.18), transparent);
  animation: shimmer-line 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section-header,
.about-grid,
.services-grid,
.process-grid,
.stats-grid,
.testimonials-grid,
.faq-wrap,
.contact-container,
.about-content {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   SECTION HEADER
========================================================================= */

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.2rem;
  background: var(--primary-light);
  border: 1px solid rgba(13, 63, 168, 0.15);
  border-radius: 30px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================================================================
   CUSTOM CURSOR
========================================================================= */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(13, 63, 168, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

body.cursor-active .custom-cursor {
  width: 14px;
  height: 14px;
  background: var(--accent-blue);
}

body.cursor-active .cursor-follower {
  width: 55px;
  height: 55px;
  border-color: var(--primary);
  background: rgba(13, 63, 168, 0.05);
}

/* =========================================================================
   PRELOADER
========================================================================= */

#preloader {
  position: fixed;
  inset: 0;
  background-color: #0F172A;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.preloader-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
  animation: pulse-ring 2s ease-in-out infinite;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.preloader-title span {
  color: #38BDF8;
}

.preloader-bar-bg {
  width: 260px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #38BDF8);
  border-radius: 4px;
  transition: width 0.2s ease;
}

.preloader-percent {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* =========================================================================
   NAVBAR
========================================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.85rem 5%;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-box {
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo-box img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.logo-text-box {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-text-box span {
  color: var(--primary);
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--primary); }

.nav-link-active {
  color: var(--primary) !important;
  font-weight: 700;
  position: relative;
}

.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

/* =========================================================================
   BUTTONS
========================================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.6rem;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--primary-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 63, 168, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.6rem;
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.6rem;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* =========================================================================
   HERO SECTION
========================================================================= */

.hero {
  padding-top: 165px;
  padding-bottom: 90px;
  text-align: center;
}

/* Hero gets 3 blinking accent circles spread decoratively */
.hero .blink-circle-1,
.hero .blink-circle-2,
.hero .blink-circle-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.3rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge i { color: #F59E0B; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title span { color: var(--primary); }

.hero-subtitle {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-item i { color: var(--primary); font-size: 1.2rem; }

.hero-banner-image {
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-banner-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* =========================================================================
   ABOUT SECTION
========================================================================= */

.about-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.about-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-tag i { color: var(--primary); font-size: 1.5rem; }
.about-badge-tag strong { display: block; font-family: var(--font-heading); font-size: 1rem; color: var(--text-dark); }
.about-badge-tag span { font-size: 0.8rem; color: var(--text-muted); }

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-feature-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature-item h4 i { color: var(--primary); }
.about-feature-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* =========================================================================
   SERVICES SECTION
========================================================================= */

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-btn-link:hover { gap: 12px; }

/* =========================================================================
   PROCESS / ROADMAP SECTION
========================================================================= */

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.process-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #0D3FA8;
  opacity: 0.95;
  margin-bottom: 0.6rem;
  line-height: 1;
  letter-spacing: -1px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.process-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* =========================================================================
   STATS SECTION
========================================================================= */

.stats-section {
  color: #FFFFFF;
}

.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Subtle blinking shimmer inside each stat card */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  animation: shimmer-line 3s ease-in-out infinite;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
}

/* =========================================================================
   TESTIMONIALS SECTION
========================================================================= */

.testimonials-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.rating-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-muted); font-size: 0.98rem; line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }

.client-profile { display: flex; align-items: center; gap: 12px; }

.client-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-meta strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; color: var(--text-dark); }
.client-meta span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================================================
   FAQ SECTION
========================================================================= */

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-btn {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.6rem; }
.faq-box.active .faq-answer { max-height: 250px; padding: 0 1.6rem 1.5rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* =========================================================================
   CONTACT SECTION
========================================================================= */

.contact-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-card-info {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-row { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }

.contact-icon-bg {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-row-text h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.contact-row-text a, .contact-row-text p { color: var(--text-muted); text-decoration: none; font-size: 0.98rem; transition: color 0.2s ease; }
.contact-row-text a:hover { color: var(--primary); }

.contact-card-form {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}

.field-group { margin-bottom: 1.4rem; }
.field-group label { display: block; font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }

.input-control, .select-control, .textarea-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-control:focus, .select-control:focus, .textarea-control:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

/* =========================================================================
   CHATBOT WIDGET
========================================================================= */

.chatbot-trigger-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9990;
  box-shadow: 0 10px 25px rgba(13, 63, 168, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-trigger-btn:hover { transform: scale(1.1); }

.chatbot-badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  animation: blink-dot 2s ease-in-out infinite;
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  height: 520px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  z-index: 9991;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s var(--transition);
}

.chatbot-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  color: #FFFFFF;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading); }
.chatbot-header-info strong { display: block; font-family: var(--font-heading); font-size: 1rem; }
.chatbot-header-info span { font-size: 0.78rem; opacity: 0.85; }

.chatbot-close-btn { background: none; border: none; color: #FFFFFF; font-size: 1.2rem; cursor: pointer; opacity: 0.8; transition: opacity 0.2s ease; }
.chatbot-close-btn:hover { opacity: 1; }

.chatbot-messages { flex: 1; padding: 1.2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; background: #F8FAFC; }

.chat-bubble { max-width: 85%; padding: 0.85rem 1.1rem; border-radius: 16px; font-size: 0.9rem; line-height: 1.5; }
.chat-bubble.bot { background: #FFFFFF; border: 1px solid var(--border-light); color: var(--text-dark); align-self: flex-start; border-top-left-radius: 4px; box-shadow: var(--shadow-sm); }
.chat-bubble.user { background: var(--primary); color: #FFFFFF; align-self: flex-end; border-top-right-radius: 4px; }

.chatbot-quick-chips { padding: 0.8rem 1.2rem; background: #FFFFFF; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 0.5rem; }

.chip-btn { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: 20px; padding: 0.5rem 0.9rem; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--primary); text-align: left; cursor: pointer; transition: all 0.2s ease; }
.chip-btn:hover { background: var(--primary-light); border-color: var(--primary); }

.chatbot-input-area { padding: 0.8rem 1.2rem; background: #FFFFFF; border-top: 1px solid var(--border-light); display: flex; gap: 8px; }
.chatbot-input { flex: 1; padding: 0.65rem 1rem; background: var(--bg-page); border: 1px solid var(--border-light); border-radius: 20px; font-family: var(--font-body); font-size: 0.88rem; outline: none; }
.chatbot-send-btn { width: 36px; height: 36px; background: var(--primary); color: #FFFFFF; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.chatbot-send-btn:hover { background: var(--primary-hover); }

/* =========================================================================
   FOOTER
========================================================================= */

footer {
  background: var(--bg-dark-slate);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  color: #94A3B8;
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 63, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand p { font-size: 0.95rem; margin-top: 1.2rem; max-width: 320px; line-height: 1.65; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #FFFFFF; margin-bottom: 1.4rem; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 0.8rem; }
.footer-links-list a { color: #94A3B8; text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links-list a:hover { color: #FFFFFF; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* =========================================================================
   CONSULTATION MODAL
========================================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--bg-page);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================================
   RESPONSIVE
========================================================================= */

@media (max-width: 1024px) {
  .about-grid, .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding-top: 140px; }
  .chatbot-window { width: calc(100vw - 40px); right: 20px; bottom: 95px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* =========================================================================
   SUBPAGE & COMPONENT DESIGN SYSTEM EXTENSIONS
   Active states, subpage hero headers, services, comparison matrix, contact form
========================================================================= */

/* Nav link active state */
.nav-link.active, .nav-link-active {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

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

/* Page Hero Banner */
.page-hero {
  padding: 160px 5% 80px;
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(13,63,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 63, 168, 0.08);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(13, 63, 168, 0.15);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 750px;
  margin: 0 auto;
}

/* Service Detail Cards & Grids */
.services-detail-section {
  padding: 90px 5%;
}

.service-full-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

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

.service-full-card.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-full-card.reverse .service-full-content {
  order: 2;
}

.service-full-card.reverse .service-full-media {
  order: 1;
}

.service-full-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-full-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.service-full-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.service-full-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin-bottom: 2rem;
}

.service-deliverables-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-deliverables-list li i {
  color: #10B981;
  width: 18px;
  height: 18px;
}

.service-full-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Process Cards */
.process-steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr 240px;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  background: var(--primary-light);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.process-step-meta {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.process-step-meta strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.process-step-meta span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-page);
}

.comparison-table th.highlight-col {
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 12px 12px 0 0;
}

.comparison-table td.highlight-col {
  background: rgba(13, 63, 168, 0.04);
  font-weight: 700;
  color: var(--primary);
}

/* FAQ Controls */
.faq-filter-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.faq-pill-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-pill-btn:hover, .faq-pill-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Contact Page Form & Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
  color: var(--text-muted);
  font-size: 0.98rem;
  text-decoration: none;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-form-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: var(--bg-page);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
  background: #FFFFFF;
}

@media (max-width: 900px) {
  .service-full-card, .service-full-card.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-full-card.reverse .service-full-content { order: 1; }
  .service-full-card.reverse .service-full-media { order: 2; }
  .process-step-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   CTA STRIP & VALUES GRID COMPONENT STYLES
========================================================================= */

.cta-strip {
  padding: 90px 5%;
  background: linear-gradient(135deg, #0D3FA8 0%, #1E40AF 50%, #2563EB 100%);
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 40px 5%;
  box-shadow: 0 20px 50px rgba(13, 63, 168, 0.25);
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-strip p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-strip-btns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: #0D3FA8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #F8FAFC;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  color: #0A3287;
}

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-wa-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* Values Grid */
.mission-values {
  padding: 90px 5%;
  background: var(--bg-white);
  position: relative;
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.value-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.value-card .service-icon-box {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================================
   HIGH-IMPACT SOCIAL MEDIA & ANALYTICS UI MOCKUP COMPONENTS
========================================================================= */

.mockup-wrapper {
  background: #0F172A;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 100%;
}

/* 1. Instagram Profile & Feed Mockup */
.insta-mockup-card {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
}

.insta-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
  padding: 2px;
}

.insta-avatar-inner {
  width: 100%;
  height: 100%;
  background: #0D3FA8;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.insta-username {
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-badge {
  color: #38BDF8;
  width: 16px;
  height: 16px;
}

.insta-media {
  position: relative;
  height: 240px;
  background: #0F172A;
  overflow: hidden;
}

.insta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-ad-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.insta-actions {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.insta-actions-left {
  display: flex;
  gap: 14px;
}

.insta-stats {
  padding: 0 16px 14px;
  font-size: 0.85rem;
}

.insta-stats strong {
  color: #0F172A;
}

/* 2. Meta & Google Ad Performance Dashboard Mockup */
.dash-mockup-card {
  background: #1E293B;
  color: #F8FAFC;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.dash-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

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

.dash-metric-box {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-metric-box label {
  font-size: 0.72rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 4px;
}

.dash-metric-box .val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #38BDF8;
}

.dash-metric-box .trend {
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 600;
}

.dash-graph-preview {
  height: 90px;
  background: linear-gradient(180deg, rgba(13, 63, 168, 0.4) 0%, rgba(13, 63, 168, 0.0) 100%);
  border-bottom: 2px solid #2563EB;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 10px 5px;
}

.bar-stub {
  width: 12%;
  background: #38BDF8;
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

/* 3. Google Search Ad Result Mockup */
.google-ad-mockup-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #1F2937;
}

.google-ad-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.ad-badge {
  font-weight: 700;
  color: #202124;
  font-size: 0.8rem;
}

.google-ad-url {
  color: #202124;
  font-size: 0.82rem;
}

.google-ad-title {
  color: #1A0DAB;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.google-ad-desc {
  color: #4D5156;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.google-sitelinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
}

.sitelink-item {
  color: #1A0DAB;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 4. Mobile Reel Player Mockup */
.reel-phone-mockup {
  width: 260px;
  height: 480px;
  background: #000000;
  border-radius: 36px;
  border: 8px solid #1E293B;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.reel-phone-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px;
  color: #FFFFFF;
}

.reel-sidebar {
  position: absolute;
  right: 14px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.reel-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.reel-icon-btn i {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.reel-caption {
  max-width: 180px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.reel-caption strong {
  display: block;
  font-weight: 700;
}


