/* =========================================
   CORE GROW ENTERPRISES — MAIN STYLESHEET
========================================= */

:root {
  --primary-blue: #1565C0;
  --blue: #1976D2;
  --sky-blue: #29B6F6;
  --green: #43A047;
  --light-green: #8BC34A;
  --orange: #FB8C00;
  --yellow: #FBC02D;

  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --text: #111827;
  --text-secondary: #6B7280;

  --gradient-brand: linear-gradient(135deg, var(--primary-blue), var(--sky-blue) 55%, var(--light-green));
  --gradient-warm: linear-gradient(135deg, var(--orange), var(--yellow));
  --gradient-full: linear-gradient(90deg, var(--primary-blue), var(--sky-blue), var(--green), var(--light-green), var(--orange));

  --shadow-sm: 0 2px 8px rgba(17,24,39,0.06);
  --shadow-md: 0 8px 30px rgba(17,24,39,0.08);
  --shadow-lg: 0 20px 60px rgba(17,24,39,0.12);
  --shadow-glow: 0 10px 40px rgba(21,101,192,0.25);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  line-height: 1.6;
  cursor: none;
}

@media (max-width: 900px) {
  body { cursor: auto; }
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.gradient-text {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

.tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21,101,192,0.08), rgba(41,182,246,0.08));
  border: 1px solid rgba(21,101,192,0.18);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
}

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

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(21,101,192,0.35);
  background-position: 100% 50%;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary-blue);
  background: rgba(21,101,192,0.05);
  transform: translateY(-3px);
}

.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* Ripple effect */
.ripple { position: relative; }
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: opacity 0.2s;
}
.cursor-glow {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(21,101,192,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.2s;
}
.cursor-glow.grow {
  width: 60px; height: 60px;
  border-color: rgba(41,182,246,0.7);
  background: rgba(41,182,246,0.08);
}
@media (max-width: 900px) {
  .cursor-dot, .cursor-glow { display: none; }
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 0.02em;
}
.loader-logo span {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.loader-bar {
  width: 220px; height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.loader-progress {
  width: 0%; height: 100%;
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: width 0.3s ease;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.scrolled {
  height: 72px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 4px 30px rgba(17,24,39,0.06);
  border-bottom: 1px solid rgba(229,231,235,0.6);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  position: relative;
}
.logo-core { color: var(--primary-blue); }
.logo-grow {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo small {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  position: absolute;
  bottom: -12px;
  left: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--primary-blue); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s ease;
}
.phone-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}
.phone-btn svg { animation: none; }
.phone-btn:hover svg { animation: ringShake 0.6s ease; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--bg-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 { width: 500px; height: 500px; background: var(--sky-blue); top: -150px; right: -100px; animation: blobFloat 14s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: var(--light-green); bottom: -100px; left: -100px; animation: blobFloat 18s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: var(--yellow); top: 40%; left: 45%; animation: blobFloat 10s ease-in-out infinite; opacity: 0.2; }

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(21,101,192,0.15);
}
.ring-1 { width: 600px; height: 600px; top: 10%; right: 5%; animation: rotateSlow 40s linear infinite; }
.ring-2 { width: 400px; height: 400px; top: 20%; right: 15%; border-color: rgba(41,182,246,0.2); animation: rotateSlow 30s linear infinite reverse; }

.light-ray {
  position: absolute;
  width: 200%; height: 300px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  top: 30%; left: -50%;
  transform: rotate(-15deg);
  animation: rayMove 8s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.5;
  filter: grayscale(0.2);
  animation: iconFloat 6s ease-in-out infinite;
}
.fi-1 { top: 15%; left: 8%; animation-delay: 0s; }
.fi-2 { top: 65%; left: 12%; animation-delay: 1.2s; }
.fi-3 { top: 25%; right: 30%; animation-delay: 2.4s; }
.fi-4 { top: 75%; right: 15%; animation-delay: 3.6s; }
.fi-5 { top: 45%; left: 3%; animation-delay: 4.8s; }

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(21,101,192,0.15);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 34px;
  min-height: 30px;
}
.cursor-blink { animation: blink 1s step-end infinite; color: var(--primary-blue); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hfeature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(21,101,192,0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.hfeature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.hf-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hf-blue { background: linear-gradient(135deg, rgba(21,101,192,0.14), rgba(41,182,246,0.14)); }
.hf-green { background: linear-gradient(135deg, rgba(67,160,71,0.14), rgba(139,195,74,0.14)); }
.hf-orange { background: linear-gradient(135deg, rgba(251,140,0,0.14), rgba(251,192,45,0.14)); }
.hf-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.hf-text span { color: var(--text-secondary); font-size: 0.8rem; }

/* Hero right visual */
.hero-right { position: relative; }
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-core-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--gradient-brand);
  background-size: 200% 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(21,101,192,0.35);
  animation: gradientShift 8s ease infinite, floatY 6s ease-in-out infinite;
  position: relative;
}
.hero-core-circle::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(21,101,192,0.25);
  animation: rotateSlow 20s linear infinite;
}
.core-inner {
  text-align: center;
  color: #fff;
}
.core-inner span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
}
.core-inner small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-md);
  animation: floatY 5s ease-in-out infinite;
}
.gc-1 { top: 4%; left: -4%; animation-delay: 0s; }
.gc-2 { bottom: 20%; right: -6%; animation-delay: 1.5s; }
.gc-3 { bottom: -2%; left: 6%; animation-delay: 3s; }

.gc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.gc-blue { background: rgba(21,101,192,0.12); }
.gc-green { background: rgba(67,160,71,0.12); }
.gc-orange { background: rgba(251,140,0,0.12); }

.gc-text strong { display: block; font-size: 0.9rem; }
.gc-text span { font-size: 0.78rem; color: var(--text-secondary); }

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(21,101,192,0.3);
  border-radius: 20px;
  z-index: 2;
}
.scroll-indicator span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--primary-blue);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gradient-brand);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--bg); }
.about .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.about-points { margin-bottom: 34px; }
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}
.check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(67,160,71,0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.about-card:hover::after { transform: scaleX(1); }
.about-card .ac-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}
.about-card:hover .ac-icon { transform: scale(1.08) rotate(-6deg); }
.about-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}
.about-card p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 400; line-height: 1.55; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: var(--gradient-brand);
  -webkit-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.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.sc-shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.service-card:hover .sc-shine { left: 125%; }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.icon-blue { background: linear-gradient(135deg, rgba(21,101,192,0.15), rgba(41,182,246,0.15)); }
.icon-green { background: linear-gradient(135deg, rgba(67,160,71,0.15), rgba(139,195,74,0.15)); }
.icon-sky { background: linear-gradient(135deg, rgba(41,182,246,0.15), rgba(21,101,192,0.15)); }
.icon-orange { background: linear-gradient(135deg, rgba(251,140,0,0.15), rgba(251,192,45,0.15)); }
.icon-purple { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(21,101,192,0.15)); }
.icon-pink { background: linear-gradient(135deg, rgba(219,39,119,0.15), rgba(251,140,0,0.15)); }
.icon-teal { background: linear-gradient(135deg, rgba(13,148,136,0.15), rgba(67,160,71,0.15)); }
.icon-red { background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(251,140,0,0.15)); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ===== INDUSTRIES ===== */
.industries { padding: 120px 0; background: var(--bg); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: var(--gradient-brand);
  -webkit-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.4s ease;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.industry-card:hover::before { opacity: 1; }
.ic-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(41,182,246,0.12));
  transition: transform 0.4s ease;
}
.industry-card:hover .ic-icon { transform: scale(1.1) rotate(-6deg); }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.industry-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.55; }

/* ===== WHY US ===== */
.why-us { padding: 120px 0; background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 70px;
}
.why-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(41,182,246,0.12));
  transition: transform 0.4s ease;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-6deg); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.why-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

.value-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--gradient-brand);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  border-radius: var(--radius-lg);
  padding: 46px 30px;
  box-shadow: var(--shadow-glow);
}
.value-box {
  text-align: center;
  color: #fff;
  padding: 6px 12px;
  position: relative;
}
.value-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: rgba(255,255,255,0.22);
}
.vb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 1.5rem;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}
.value-box:hover .vb-icon { transform: translateY(-4px) scale(1.06); }
.value-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.vb-sub { font-size: 0.85rem; opacity: 0.9; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.info-card {
  position: relative;
  background: var(--gradient-brand);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  margin-bottom: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
/* soft decorative glows */
.info-card::before,
.info-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.info-card::before { width: 190px; height: 190px; top: -60px; right: -50px; }
.info-card::after { width: 150px; height: 150px; bottom: -50px; left: -40px; background: rgba(255,255,255,0.06); }
.info-card > * { position: relative; z-index: 1; }

.info-card-head { margin-bottom: 22px; }
.info-card-head h3 { font-size: 1.5rem; margin-bottom: 6px; }
.info-sub { font-size: 0.92rem; opacity: 0.9; line-height: 1.5; max-width: 90%; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.info-row:last-of-type { border-bottom: none; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.info-row:hover .info-icon { transform: translateY(-2px) scale(1.06); background: rgba(255,255,255,0.28); }
.info-row strong {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-row p { font-size: 0.98rem; font-weight: 500; line-height: 1.5; }
.info-row a { color: #fff; transition: opacity 0.25s ease; }
.info-row a:hover { text-decoration: underline; opacity: 0.85; }

/* quick-action buttons */
.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.contact-action {
  flex: 1 1 0;
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s ease, color 0.3s ease;
}
.contact-action svg { width: 17px; height: 17px; flex-shrink: 0; }
.contact-action:hover { transform: translateY(-3px); background: #fff; color: var(--primary-blue); }
.contact-action.ca-whatsapp:hover { color: #25D366; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-head { margin-bottom: 28px; }
.form-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-head p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.55; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  position: relative;
  margin-bottom: 26px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.1);
}
.form-group label {
  position: absolute;
  left: 14px; top: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input.filled + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group textarea.filled + label {
  top: 6px;
  font-size: 0.72rem;
  color: var(--primary-blue);
  font-weight: 600;
}
/* ---- Service dropdown: label pinned above, custom arrow (fixes overlap) ---- */
.form-group-select select {
  color: var(--text-secondary);
  padding: 24px 42px 8px 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231565C0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 15px;
}
.form-group-select select:valid { color: var(--text); }
.form-group.form-group-select label {
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--primary-blue);
  font-weight: 600;
  pointer-events: none;
}
.form-group.form-group-select select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231565C0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
}
.form-error {
  display: block;
  color: #DC2626;
  font-size: 0.78rem;
  margin-top: 6px;
  min-height: 16px;
}
.btn-submit {
  width: 100%;
  position: relative;
}
.btn-submit .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-submit .btn-text svg { transition: transform 0.3s ease; }
.btn-submit:hover .btn-text svg { transform: translateX(4px) rotate(3deg); }
.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-loader {
  display: block;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
/* Honeypot — visually hidden, off-screen, not display:none (bots skip hidden) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  border: 1px solid transparent;
}
.form-status.show { display: block; animation: fadeUp 0.5s ease; }
.form-status.success {
  background: rgba(67,160,71,0.1);
  color: var(--green);
  border-color: rgba(67,160,71,0.25);
}
.form-status.error {
  background: rgba(220,38,38,0.08);
  color: #DC2626;
  border-color: rgba(220,38,38,0.25);
}

/* ===== FOOTER ===== */
.footer { background: #0F172A; color: #CBD5E1; padding: 80px 0 0; }
.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-logo small { color: #94A3B8; }
.footer-col p { color: #94A3B8; font-size: 0.92rem; margin: 10px 0; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col a {
  display: block;
  color: #94A3B8;
  padding: 6px 0;
  font-size: 0.92rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-col a:hover { color: var(--sky-blue); transform: translateX(4px); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-social a:hover { transform: translateY(-4px); background: var(--primary-blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary-blue); }
.fab-quote { background: var(--orange); }
.fab:hover { transform: scale(1.12) translateY(-3px); box-shadow: var(--shadow-lg); }

.back-to-top {
  position: fixed;
  bottom: 30px; left: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-blue); color: #fff; transform: translateY(-4px); }
