/* ============================================
   AdsFlow Media - Main Stylesheet
   Premium Digital Marketing Agency
   ============================================ */


/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
  --primary: #1E5EFF;
  --primary-rgb: 30, 94, 255;
  --secondary: #4F7DFF;
  --accent: #0B63F6;
  --bg-white: #ffffff;
  --bg-light: #F6F9FF;
  --bg-lighter: #EBF1FF;
  --text-dark: #111827;
  --text-grey: #6B7280;
  --text-light: #9CA3AF;
  --border-light: #f0f0f0;
  --border-grey: #e5e7eb;
  --gradient: linear-gradient(135deg, #1E5EFF, #0B63F6);
  --gradient-secondary: linear-gradient(135deg, #1E5EFF, #4F7DFF, #0B63F6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 6px 24px rgba(30, 94, 255, 0.35);
  --shadow-primary-lg: 0 8px 32px rgba(30, 94, 255, 0.5);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-pill: 50px;
  --transition-fast: 0.25s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --font-family: 'Poppins', sans-serif;
  --footer-bg: #0F172A;
  --footer-text: #94A3B8;
  --footer-text-muted: #64748B;
  --whatsapp: #25D366;
  --success: #10B981;
  --star-color: #F59E0B;
  --danger: #EF4444;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: var(--font-family);
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-moz-selection {
  background: var(--primary);
  color: #fff;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; }

p {
  line-height: 1.7;
  color: var(--text-grey);
}

.gradient-text,
.hero-gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================
   4. CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================================
   5. PREMIUM LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.loader-logo span:first-child {
  color: var(--primary);
}

.loader-logo span:last-child {
  color: var(--text-dark);
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e7ff;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ============================================
   6. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  height: 3px;
  width: 0%;
  background: var(--gradient-secondary);
  transition: width 0.1s linear;
}


/* ============================================
   7. CUSTOM CURSOR
   ============================================ */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  z-index: 99998;
  border-radius: 50%;
  transition: transform 0.12s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(30, 94, 255, 0.45);
}


/* ============================================
   8. NAVBAR
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.07);
  padding: 0.55rem 0;
}

.nav-logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-logo .brand-blue {
  color: var(--primary);
}

.nav-logo .brand-dark {
  color: var(--text-dark);
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

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

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: var(--gradient);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(30, 94, 255, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(30, 94, 255, 0.5);
}


/* ============================================
   9. HAMBURGER MENU
   ============================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}


/* ============================================
   10. MOBILE NAVIGATION
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 2rem 1.5rem;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  float: right;
  color: var(--text-dark);
  transition: color 0.25s;
}

.mobile-nav .close-btn:hover {
  color: var(--primary);
}

.mobile-nav ul {
  list-style: none;
  padding: 2.5rem 0 0;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 1.1rem;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.25s;
}

.mobile-nav ul li a:hover {
  color: var(--primary);
}

.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
}


/* ============================================
   11. HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 60%, var(--bg-light) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 94, 255, 0.08) 0%, transparent 70%);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.06) 0%, transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-lighter);
  color: var(--primary);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-section h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 24px rgba(30, 94, 255, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.5);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.btn-hero-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero Visual / Dashboard */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.marketing-dashboard {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 94, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 20px 60px rgba(30, 94, 255, 0.12);
  width: 100%;
  max-width: 400px;
}

.dashboard-header {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}

.dashboard-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-header span:nth-child(1) { background: #ef4444; }
.dashboard-header span:nth-child(2) { background: #f59e0b; }
.dashboard-header span:nth-child(3) { background: #22c55e; }

.dash-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-grey);
  margin-bottom: 1rem;
}

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

.dash-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.dash-card .dash-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.dash-card .dash-label {
  font-size: 0.72rem;
  color: var(--text-grey);
  font-weight: 500;
  margin-top: 2px;
}

.dash-bar {
  margin-top: 1rem;
  height: 8px;
  background: var(--border-grey);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  width: 75%;
  background: var(--gradient-secondary);
  border-radius: 4px;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.float-badge i {
  font-size: 1.1rem;
}

.fb-top { top: 20px; left: 10px; }
.fb-right { top: 80px; right: 0; }
.fb-bottom { bottom: 50px; left: -10px; }
.fb-left { bottom: 20px; right: -20px; }

/* Floating Social Icons */
.float-social {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fs-fb { background: #1877f2; top: 30px; right: 30px; }
.fs-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); bottom: 100px; right: 0; }
.fs-gg { background: #4285f4; top: 130px; left: 0; }
.fs-yt { background: #ff0000; bottom: 30px; right: 60px; }


/* ============================================
   12. FLOATING ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.float {
  animation: float 3s ease-in-out infinite;
}

.float-delay {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.float-delay-2 {
  animation: float 3s ease-in-out infinite;
  animation-delay: 2s;
}

.float-delay-3 {
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}


/* ============================================
   13. MARQUEE / TRUST SECTION
   ============================================ */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
}

.marquee-heading {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  margin: 0 0.5rem;
  background: var(--bg-light);
  border: 1px solid #e0e7ff;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}

.marquee-pill:hover {
  background: var(--bg-lighter);
  border-color: var(--primary);
}

.marquee-pill i {
  font-size: 0.85rem;
}

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


/* ============================================
   14. SECTION COMMON STYLES
   ============================================ */
.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg-lighter);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-grey);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   15. SERVICES SECTION
   ============================================ */
.services-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-secondary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(30, 94, 255, 0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 0.7rem;
}


/* ============================================
   16. WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.why-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.why-visual-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(30, 94, 255, 0.08);
  width: 100%;
  max-width: 400px;
}

.why-visual-card .wv-top {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.wv-box {
  flex: 1;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.wv-box .wv-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.wv-box .wv-lbl {
  font-size: 0.7rem;
  color: var(--text-grey);
  font-weight: 500;
}

.wv-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wv-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wv-bar-item span:first-child {
  font-size: 0.75rem;
  color: var(--text-grey);
  font-weight: 500;
  min-width: 70px;
}

.wv-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border-grey);
  border-radius: 4px;
  overflow: hidden;
}

.wv-bar-track div {
  height: 100%;
  background: var(--gradient-secondary);
  border-radius: 4px;
  transition: width 1s ease;
}

.why-stat-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wsf-1 { top: 20px; right: 20px; }
.wsf-2 { bottom: 30px; left: 10px; }

.why-right h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}


/* ============================================
   17. PROCESS SECTION
   ============================================ */
.process-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 0;
}

.process-line {
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--border-grey);
  border-radius: 2px;
  z-index: 0;
}

.process-line-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--gradient-secondary);
  transition: width 1s ease;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: #fff;
  border: 3px solid var(--border-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-grey);
  transition: border-color 0.35s, color 0.35s, background 0.35s, transform 0.35s;
}

.process-step.active .step-circle {
  border-color: var(--primary);
  color: #fff;
  background: var(--gradient);
}

.process-step:hover .step-circle {
  transform: scale(1.1);
}

.process-step.active:hover .step-circle {
  border-color: transparent;
}

.step-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-grey);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}


/* ============================================
   18. STATISTICS SECTION
   ============================================ */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-lighter));
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.3s;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-grey);
  font-weight: 500;
  margin-top: 0.3rem;
}


/* ============================================
   19. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: transform 0.35s, box-shadow 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.tc-stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tc-text {
  font-size: 0.92rem;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.tc-client {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.tc-info .tc-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.tc-info .tc-role {
  font-size: 0.78rem;
  color: var(--text-grey);
}

/* Swiper customization */
.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border-grey);
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.3);
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--primary);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.3s;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
  font-size: 1rem;
}


/* ============================================
   20. CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-section::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
}

.cta-section::after {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: var(--primary);
}


/* ============================================
   21. FOOTER
   ============================================ */
.main-footer {
  background: var(--footer-bg);
  padding: 4rem 0 0;
  color: var(--footer-text);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--footer-text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--footer-text-muted);
}

.footer-bottom a {
  color: var(--danger);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.8;
}


/* ============================================
   22. WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}


/* ============================================
   23. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9990;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(30, 94, 255, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(30, 94, 255, 0.5);
}


/* ============================================
   24. SUCCESS MODAL
   ============================================ */
.modal-overlay-success {
  position: fixed;
  inset: 0;
  z-index: 99997;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

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

.modal-box-success {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: scale(0.9);
  transition: transform 0.35s;
}

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

.checkmark-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-lighter);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.modal-box-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.modal-box-success p {
  color: var(--text-grey);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-box-success .btn-thank-you {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modal-box-success .btn-thank-you:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--shadow-primary);
}


/* ============================================
   25. CLIENTS PAGE - HERO
   ============================================ */
.clients-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  position: relative;
  overflow: hidden;
}

.clients-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 94, 255, 0.07) 0%, transparent 70%);
}

.clients-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.05) 0%, transparent 70%);
}

.clients-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.clients-hero p {
  font-size: 1.1rem;
  color: var(--text-grey);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-grey);
  position: relative;
  z-index: 1;
}

.breadcrumb-custom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.breadcrumb-custom a:hover {
  color: var(--accent);
}

.breadcrumb-custom .separator {
  color: #cbd5e1;
}


/* ============================================
   26. CLIENTS PAGE - FILTER BUTTONS
   ============================================ */
.filter-section {
  padding: 3rem 0 1rem;
  background: #fff;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid var(--border-grey);
  background: #fff;
  color: var(--text-grey);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-light);
}

.filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(30, 94, 255, 0.3);
}


/* ============================================
   27. CLIENTS PAGE - CLIENT CARDS
   ============================================ */
.clients-grid-section {
  padding: 2rem 0 4rem;
  background: #fff;
}

.client-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-secondary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}

.client-card:hover::before {
  opacity: 1;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(30, 94, 255, 0.12);
}

.client-card.hidden-card {
  display: none;
}

.client-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

.client-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.industry-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-hospital { background: var(--bg-lighter); color: var(--primary); }
.badge-doctor { background: #F0FDF4; color: #16a34a; }
.badge-clinic { background: #FFF7ED; color: #ea580c; }
.badge-education { background: #FEF3C7; color: #d97706; }
.badge-business { background: #F5F3FF; color: #7c3aed; }
.badge-restaurant { background: #FDF2F8; color: #db2777; }

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.service-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--bg-light);
  border: 1px solid #e0e7ff;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary);
}

.client-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-active .status-dot {
  background: #22c55e;
}

.status-active {
  color: #16a34a;
}

.status-past .status-dot {
  background: var(--text-light);
}

.status-past {
  color: var(--text-grey);
}

.btn-case-study {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.btn-case-study:hover {
  background: var(--primary);
  color: #fff;
}


/* ============================================
   28. CLIENTS PAGE - LOAD MORE
   ============================================ */
.load-more-section {
  padding: 2rem 0 4rem;
  background: #fff;
  text-align: center;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.4rem;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  box-shadow: 0 6px 24px rgba(30, 94, 255, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.5);
  color: #fff;
}


/* ============================================
   29. CONTACT PAGE - HERO
   ============================================ */
.contact-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 94, 255, 0.07) 0%, transparent 70%);
}

.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 560px;
  line-height: 1.75;
}

.breadcrumb-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
}

.breadcrumb-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.breadcrumb-contact a:hover {
  text-decoration: underline;
}

.breadcrumb-contact .separator {
  color: #cbd5e1;
}


/* ============================================
   30. CONTACT PAGE - DETAILS CARD
   ============================================ */
.contact-section {
  padding: 5rem 0;
  background: #ffffff;
}

.details-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.08);
  border: 1px solid var(--border-light);
  height: 100%;
}

.details-card .dc-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.details-card .dc-logo .brand-blue {
  color: var(--primary);
}

.details-card .dc-logo .brand-dark {
  color: var(--text-dark);
  font-weight: 500;
}

.details-card .dc-tagline {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-info-item .cii-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: background 0.3s;
}

.contact-info-item:hover .cii-icon {
  background: var(--gradient);
  color: #fff;
}

.contact-info-item .cii-text .cii-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-item .cii-text .cii-value {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-item .cii-text .cii-value a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s;
}

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

.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  margin-top: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.map-placeholder {
  margin-top: 2rem;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  border: 1px dashed #c7d2fe;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}

.map-placeholder p {
  color: var(--text-grey);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.map-placeholder a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.map-placeholder a:hover {
  text-decoration: underline;
  gap: 0.6rem;
}


/* ============================================
   31. CONTACT PAGE - FORM CARD
   ============================================ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.08);
  border: 1px solid var(--border-light);
  height: 100%;
}

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-card .form-subtitle {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-card .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid var(--border-grey);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fafafa;
  font-family: var(--font-family);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
  background: #fff;
  outline: none;
}

.form-card .form-control::placeholder {
  color: var(--text-light);
}

.form-card .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Services checkbox group */
.services-check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.services-check-group .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: #fafafa;
  border-radius: 10px;
  border: 1.5px solid var(--border-grey);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}

.services-check-group .form-check:hover {
  border-color: #c7d2fe;
  background: var(--bg-light);
}

.services-check-group .form-check-input:checked + .form-check-label {
  color: var(--primary);
  font-weight: 600;
}

.services-check-group .form-check-input {
  accent-color: var(--primary);
}

.services-check-group .form-check-label {
  font-size: 0.85rem;
  color: #374151;
  margin: 0;
  cursor: pointer;
}

.btn-submit-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  box-shadow: 0 6px 24px rgba(30, 94, 255, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.5);
  color: #fff;
}


/* ============================================
   32. THANK YOU PAGE - SECTION
   ============================================ */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
  padding: 120px 0 4rem;
}

/* Floating background shapes */
.thankyou-section .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 18s ease-in-out infinite;
}

.thankyou-section .shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1E5EFF, #4F7DFF);
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}

.thankyou-section .shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0B63F6, #4F7DFF);
  bottom: -40px;
  left: -50px;
  animation-delay: -6s;
}

.thankyou-section .shape-3 {
  width: 120px;
  height: 120px;
  background: #1E5EFF;
  top: 30%;
  left: 10%;
  animation-delay: -12s;
}

.thankyou-section .shape-4 {
  width: 80px;
  height: 80px;
  background: #4F7DFF;
  top: 20%;
  right: 15%;
  animation-delay: -3s;
}

.thankyou-section .shape-5 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #1E5EFF, #0B63F6);
  bottom: 20%;
  right: 10%;
  animation-delay: -9s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(5deg); }
  50% { transform: translateY(-15px) rotate(-3deg); }
  75% { transform: translateY(-40px) rotate(3deg); }
}

/* Confetti particles */
.confetti-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: confettiFall 4s ease-in-out infinite;
}

.confetti-piece:nth-child(1) { left: 10%; background: #1E5EFF; animation-delay: 0s; border-radius: 2px; }
.confetti-piece:nth-child(2) { left: 25%; background: #4F7DFF; animation-delay: 0.5s; border-radius: 50%; }
.confetti-piece:nth-child(3) { left: 40%; background: #0B63F6; animation-delay: 1s; width: 8px; height: 14px; }
.confetti-piece:nth-child(4) { left: 55%; background: #f59e0b; animation-delay: 1.5s; border-radius: 2px; }
.confetti-piece:nth-child(5) { left: 70%; background: #1E5EFF; animation-delay: 0.8s; border-radius: 50%; width: 12px; height: 12px; }
.confetti-piece:nth-child(6) { left: 85%; background: #4F7DFF; animation-delay: 2s; }
.confetti-piece:nth-child(7) { left: 15%; background: #0B63F6; animation-delay: 2.5s; border-radius: 50%; }
.confetti-piece:nth-child(8) { left: 60%; background: #1E5EFF; animation-delay: 3s; width: 6px; height: 16px; }
.confetti-piece:nth-child(9) { left: 35%; background: #4F7DFF; animation-delay: 0.3s; border-radius: 50%; }
.confetti-piece:nth-child(10) { left: 80%; background: #0B63F6; animation-delay: 1.8s; width: 14px; height: 8px; }
.confetti-piece:nth-child(11) { left: 48%; background: #f59e0b; animation-delay: 3.2s; border-radius: 50%; width: 7px; height: 7px; }
.confetti-piece:nth-child(12) { left: 92%; background: #1E5EFF; animation-delay: 1.2s; width: 11px; height: 6px; }

@keyframes confettiFall {
  0% { transform: translateY(-60px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  50% { opacity: 0.5; }
  100% { transform: translateY(70vh) rotate(720deg); opacity: 0; }
}

/* Thank you card */
.thankyou-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 94, 255, 0.1);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(30, 94, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Animated checkmark */
.checkmark-animated {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 12px 40px rgba(30, 94, 255, 0.3);
  animation: popInAnimated 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.checkmark-animated::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(30, 94, 255, 0.15);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes popInAnimated {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(0deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.2; }
}

.checkmark-animated svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.checkmark-animated svg .checkmark-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.6s 0.5s ease forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thankyou-card h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}

.thankyou-card .ty-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.thankyou-card .ty-text {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.thankyou-card .ty-subtext {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ty-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 24px rgba(30, 94, 255, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ty-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.5);
  color: #fff;
}

.ty-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.ty-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Staggered entrance animations */
.thankyou-card .checkmark-animated { animation-delay: 0.1s; }
.thankyou-card h1 { opacity: 0; animation: fadeSlideUp 0.6s 0.4s ease forwards; }
.thankyou-card .ty-subtitle { opacity: 0; animation: fadeSlideUp 0.6s 0.55s ease forwards; }
.thankyou-card .ty-text { opacity: 0; animation: fadeSlideUp 0.6s 0.7s ease forwards; }
.thankyou-card .ty-subtext { opacity: 0; animation: fadeSlideUp 0.6s 0.85s ease forwards; }
.thankyou-card .ty-buttons { opacity: 0; animation: fadeSlideUp 0.6s 1s ease forwards; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   33. THANK YOU PAGE - WHAT'S NEXT
   ============================================ */
.whatsnext-section {
  padding: 5rem 0 6rem;
  background: #fff;
}

.whatsnext-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.35s, box-shadow 0.35s;
}

.whatsnext-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 94, 255, 0.1);
}

.whatsnext-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 94, 255, 0.25);
  transition: transform 0.3s;
}

.whatsnext-card:hover .whatsnext-icon {
  transform: scale(1.1);
}

.whatsnext-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.whatsnext-card p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ============================================
   34. UTILITY CLASSES
   ============================================ */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.me-2 { margin-right: 0.5rem; }

.d-inline-block { display: inline-block; }
.d-inline-flex { display: inline-flex; }
.d-block { display: block; }

.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }

.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }


/* ============================================
   35. FORM VALIDATION STYLES
   ============================================ */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--danger);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.invalid-feedback {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}


/* ============================================
   36. SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}


/* ============================================
   37. PRINT STYLES
   ============================================ */
@media print {
  .main-nav,
  .mobile-nav,
  .mobile-overlay,
  .whatsapp-float,
  .back-to-top,
  .scroll-progress,
  .cursor-dot,
  .cursor-outline,
  .page-loader {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .main-footer {
    background: #fff;
    color: #000;
  }
}
