/* =========================================================
   DIGITALOMARK — style.css
   Design tokens + full layout
   ========================================================= */

:root {
  --primary: #4F46E5;
  --secondary: #06B6D4;
  --accent: #F97316;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #334155;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --muted: #64748B;
  --border: #E2E8F0;

  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-warm: linear-gradient(135deg, var(--accent), #FB923C);
  --gradient-dark: linear-gradient(180deg, var(--dark), #1E293B);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(79, 70, 229, 0.18);

  --section-pad: 120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

p { color: var(--muted); line-height: 1.75; margin: 0; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #C7D2FE;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow-dark { color: var(--primary); background: rgba(79,70,229,0.08); border-color: rgba(79,70,229,0.18); }
.eyebrow.mx-auto, .eyebrow-dark.mx-auto { display: inline-flex; }

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title-light { color: #fff; }
.section-text { font-size: 17px; max-width: 520px; }
.section-text.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary-gradient {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(79,70,229,0.55);
}
.btn-primary-gradient:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(79,70,229,0.6); color: #fff; }

.btn-outline-glass {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline-glass:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); color: #fff; }

.btn-white-solid { background: #fff; color: var(--primary); }
.btn-white-solid:hover { transform: translateY(-3px); color: var(--primary); box-shadow: 0 16px 32px -10px rgba(0,0,0,0.3); }

.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); color: #fff; }

.btn-nav-cta {
  background: var(--gradient-primary);
  color: #fff; font-size: 14px; padding: 11px 24px;
  box-shadow: 0 8px 20px -6px rgba(79,70,229,0.5);
}
.btn-nav-cta:hover { color: #fff; transform: translateY(-2px); }

.btn-view-project { background: #fff; color: var(--dark); padding: 10px 22px; font-size: 14px; }

.btn-ripple { isolation: isolate; }
.ripple-el {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(3); opacity: 0; } }

/* =========================================================
   LOADER
   ========================================================= */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark svg { display: block; }
#loaderPath { stroke-dasharray: 140; stroke-dashoffset: 140; animation: drawPath 1.4s ease-in-out infinite; }
@keyframes drawPath { 0% { stroke-dashoffset: 140; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -140; } }
.loader-word { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.3em; color: #fff; font-size: 14px; }

/* =========================================================
   SCROLL PROGRESS + CURSOR
   ========================================================= */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gradient-primary); z-index: 9998; transition: width 0.1s ease;
}

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 8px; height: 8px; background: var(--primary); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(79,70,229,0.5); transition: width 0.2s, height 0.2s, border-color 0.2s; }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--accent); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* =========================================================
   NAVBAR
   ========================================================= */
.glass-nav {
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}
.glass-nav.scrolled {
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.35);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500; font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gradient-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: #fff; }

.navbar-toggler {
  border: none; background: none; padding: 6px; width: 40px; height: 34px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.navbar-toggler span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: all 0.35s ease; }
.navbar-toggler.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler.open span:nth-child(2) { opacity: 0; }
.navbar-toggler.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.navbar-toggler:focus { box-shadow: none; }

.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(2px);
  z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-backdrop.show { opacity: 1; visibility: visible; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}
#particles-js { position: absolute; inset: 0; z-index: 0; }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; z-index: 0; }
.hero-blob-1 { width: 480px; height: 480px; background: var(--primary); top: -120px; right: -100px; animation: floatBlob 12s ease-in-out infinite; }
.hero-blob-2 { width: 380px; height: 380px; background: var(--secondary); bottom: -80px; left: -80px; animation: floatBlob 14s ease-in-out infinite reverse; }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.08); } }

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

.eyebrow i { color: var(--accent); }

.hero-title {
  font-size: clamp(34px, 5.2vw, 62px);
  color: #fff;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  min-height: 2.3em;
}
.typed-cursor { color: var(--accent); }

.hero-subtitle { color: #94A3B8; font-size: 18px; max-width: 480px; margin: 24px 0 36px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--dark); background: var(--gradient-primary);
}
.trust-avatars span:nth-child(2) { background: var(--gradient-warm); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #F97316, #4F46E5); }
.hero-trust p { color: #94A3B8; font-size: 14px; margin: 0; }
.hero-trust strong { color: #fff; }

/* dashboard illustration */
.dashboard-illustration { position: relative; height: 460px; }
.dash-glow { position: absolute; inset: 10%; background: var(--gradient-primary); filter: blur(80px); opacity: 0.35; border-radius: 50%; }

.dash-panel {
  position: absolute;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.dash-panel-main { top: 40px; left: 20px; right: 20px; padding: 22px; }
.dash-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.dash-head .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.red { background: #F87171; } .dot.amber { background: #FBBF24; } .dot.green { background: #34D399; }
.dash-title { margin-left: 8px; color: #CBD5E1; font-size: 13px; font-weight: 500; }
.dash-chart { width: 100%; height: 130px; }
.dash-stats { display: flex; justify-content: space-between; margin-top: 18px; }
.dash-stats span { display: block; color: #94A3B8; font-size: 12px; }
.dash-stats strong { color: #fff; font-size: 18px; font-family: var(--font-display); }

.dash-float { display: flex; align-items: center; gap: 12px; padding: 14px 18px; animation: floatY 4.5s ease-in-out infinite; }
.dash-float i { font-size: 20px; color: var(--secondary); }
.dash-float span { display: block; color: #94A3B8; font-size: 11px; }
.dash-float strong { color: #fff; font-size: 15px; font-family: var(--font-display); }
.dash-float-1 { bottom: 30px; left: -10px; animation-delay: 0s; }
.dash-float-2 { top: 60px; right: -20px; animation-delay: 1.2s; }
.dash-float-2 i { color: var(--accent); }
.dash-float-3 { bottom: 70px; right: 10px; animation-delay: 2.2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.scroll-indicator {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
}
.scroll-mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 4px; height: 8px; background: var(--accent); border-radius: 4px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }
.scroll-text { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

.section-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.section-divider svg { width: 100%; height: 100px; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-illustration { position: relative; }
.about-svg { width: 100%; height: auto; filter: drop-shadow(var(--shadow-soft)); }

.feature-grid { margin: 32px 0; }
.feature-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-box i { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.feature-box h6 { font-size: 16px; margin-bottom: 6px; }
.feature-box p { font-size: 14px; margin: 0; }

.counters-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 10px; }
.counter-item h3 { font-size: 34px; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.counter-item p { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-section { background: var(--bg); position: relative; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.14; z-index: 0; }
.services-blob { width: 500px; height: 500px; background: var(--primary); top: 10%; right: -10%; }

.service-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-lg); padding: 40px 28px;
  height: 100%; border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.service-card:hover { box-shadow: var(--shadow-card); border-color: transparent; }
.service-icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; margin-bottom: 22px;
  box-shadow: 0 10px 24px -8px rgba(79,70,229,0.5);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-card h5 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 20px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; align-items: center; }
.service-link i { transition: transform 0.3s ease; font-size: 12px; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: #fff; }
.why-timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px 24px; }
.why-line { display: none; }
.why-item { text-align: center; padding: 10px; transition: transform 0.3s ease; }
.why-item:hover { transform: translateY(-6px); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(79,70,229,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  border: 1px dashed rgba(79,70,229,0.35);
  transition: background 0.3s ease, color 0.3s ease;
}
.why-item:hover .why-icon { background: var(--gradient-primary); color: #fff; border-style: solid; }
.why-item h6 { font-size: 14.5px; margin: 0 auto; max-width: 160px; }
.why-item p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ---------- Specialized Solutions ---------- */
.specializations-section { background: var(--bg); }
.spec-row {
  display: flex; align-items: center; gap: 50px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; margin-bottom: 28px;
}
.spec-row-reverse { flex-direction: row-reverse; }
.spec-text { flex: 1 1 46%; }
.spec-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 18px; box-shadow: 0 10px 24px -8px rgba(79,70,229,0.5);
}
.spec-text h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.3; }
.spec-text p { font-size: 15px; }
.spec-chips { flex: 1 1 54%; display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.chip {
  display: inline-flex; align-items: center;
  background: rgba(79,70,229,0.06); color: var(--primary);
  border: 1px solid rgba(79,70,229,0.18);
  padding: 9px 18px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500;
  transition: all 0.3s ease;
}
.chip:hover { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-section { background: var(--bg); }
.portfolio-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); }
.portfolio-media {
  position: relative; height: 220px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.portfolio-media i { font-size: 62px; color: rgba(255,255,255,0.9); transition: transform 0.5s ease; }
.portfolio-card:nth-child(3n+2) .portfolio-media { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.portfolio-card:nth-child(3n) .portfolio-media { background: var(--gradient-warm); }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(15,23,42,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover .portfolio-media i { transform: scale(1.15); }
.portfolio-info { padding: 22px; }
.portfolio-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.portfolio-info h6 { font-size: 18px; margin: 8px 0 10px; }
.portfolio-metric { font-size: 13px; color: var(--primary); font-weight: 600; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-section { background: var(--gradient-dark); }
.process-section .section-text { color: #94A3B8; }
.eyebrow.mx-auto { color: #C7D2FE; }

.process-track { position: relative; padding-top: 20px; }
.process-line { position: absolute; top: 46px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.12); display: none; }
.process-line-fill { height: 100%; width: 0%; background: var(--gradient-primary); }

.process-steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.process-step { text-align: center; position: relative; }
.process-node {
  width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--secondary);
  position: relative; z-index: 2;
}
.process-num { display: block; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.08em; margin-bottom: 6px; }
.process-step h6 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.process-step p { color: #94A3B8; font-size: 12.5px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: #fff; }
.testimonial-card {
  background: var(--bg); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border); max-width: 640px; margin: 0 auto; text-align: center;
}
.stars { color: var(--accent); font-size: 15px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card p { font-size: 18px; color: var(--dark); font-style: italic; margin-bottom: 26px; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-primary); }
.avatar-2 { background: var(--gradient-warm); }
.avatar-3 { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.testimonial-person h6 { font-size: 15px; }
.testimonial-person span { font-size: 13px; color: var(--muted); }
.testimonialSwiper .swiper-pagination { position: static; margin-top: 30px; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--bg); }
.faq-accordion .accordion-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 14px; overflow: hidden; }
.faq-accordion .accordion-button {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--dark);
  padding: 20px 24px; box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(79,70,229,0.05); }
.faq-accordion .accordion-button::after { filter: hue-rotate(220deg); }
.faq-accordion .accordion-body { padding: 4px 24px 22px; font-size: 14.5px; color: var(--muted); }

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  padding: 100px 0;
  text-align: center;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-blob { position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.15); border-radius: 50%; filter: blur(90px); top: -200px; left: 50%; transform: translateX(-50%); }
.cta-section h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: #fff; }
.contact-info-list { list-style: none; padding: 0; margin: 30px 0; }
.contact-info-list li { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info-list i {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(79,70,229,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.contact-info-list span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-info-list p { font-size: 15px; color: var(--dark); font-weight: 500; margin-top: 2px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(79,70,229,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.social-icons a:hover { background: var(--gradient-primary); color: #fff; transform: translateY(-4px); }

.contact-form { background: var(--bg); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }

/* Honeypot spam-trap field: visually hidden, still present in the DOM for bots to fill */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-floating .form-control, .form-floating .form-select {
  border-radius: var(--radius-sm); border: 1px solid var(--border); font-family: var(--font-body);
  height: 58px;
}
.form-floating textarea.form-control { height: 140px !important; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,0.12); }

.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.form-alert-success { background: rgba(16,185,129,0.1); color: #059669; }
.form-alert-error { background: rgba(239,68,68,0.1); color: #DC2626; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--dark); padding-top: 20px; position: relative; }
.footer-top-divider { line-height: 0; margin-top: -1px; }
.footer-top-divider svg { width: 100%; height: 80px; }
.site-footer .container { padding-top: 60px; padding-bottom: 30px; }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.footer-desc { font-size: 14px; color: #94A3B8; margin-bottom: 20px; max-width: 280px; }

.footer-heading { color: #fff; font-size: 15px; margin-bottom: 22px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94A3B8; font-size: 14px; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: #94A3B8; font-size: 14px; }
.footer-contact i { color: var(--secondary); width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; margin-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: #64748B; font-size: 13px; margin: 0; }
.footer-heart i { color: var(--accent); }

#backToTop {
  position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff; border: none; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(79,70,229,0.6);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.35s ease; z-index: 900; cursor: pointer;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thankyou-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 140px 0 100px;
}
.thankyou-hero .hero-blob-1,
.thankyou-hero .hero-blob-2 { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; z-index: 0; }

.thankyou-card {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto; text-align: center;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 60px 44px;
  box-shadow: var(--shadow-soft);
}

.thankyou-icon {
  width: 88px; height: 88px; margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: #fff;
  box-shadow: 0 16px 40px -10px rgba(79,70,229,0.6);
  animation: thankyouPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes thankyouPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.thankyou-eyebrow { color: #C7D2FE; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.thankyou-title { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.thankyou-title span { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.thankyou-text { color: #94A3B8; font-size: 16px; max-width: 480px; margin: 0 auto 34px; }

.thankyou-steps {
  display: flex; flex-direction: column; gap: 14px;
  text-align: left; margin: 0 auto 36px; max-width: 440px;
}
.thankyou-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.thankyou-step span.num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-step p { color: #CBD5E1; font-size: 14px; margin: 0; }

.thankyou-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
