/* =============================================
   SANTUSHTI INDIA - Premium Design System
   ============================================= */

:root {
  --bg-start: #F0F4F8;
  --bg-end: #E4EAF1;
  --accent-blue: #1E40AF;
  --accent-gold: #C9A84C;
  --accent-amber: #D4943A;
  --accent-bronze: #8B6914;
  --accent-gradient: linear-gradient(135deg, #1E40AF 0%, #1E3A5F 100%);
  --accent-gradient-warm: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(30, 64, 175, 0.1);
  --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  --text-primary: #0B1A33;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --card-radius: 20px;
  --btn-radius: 50px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 85px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background: radial-gradient(circle at 50% 50%, var(--bg-start), var(--bg-end));
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated background blobs - Enhanced */
.bg-blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Subtle grid overlay */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: float-particle linear infinite;
}

.particle:nth-child(1) { left: 10%; width: 3px; height: 3px; animation-duration: 22s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; width: 5px; height: 5px; animation-duration: 28s; animation-delay: 2s; background: var(--accent-amber); }
.particle:nth-child(3) { left: 40%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; width: 4px; height: 4px; animation-duration: 32s; animation-delay: 1s; background: var(--accent-amber); }
.particle:nth-child(5) { left: 70%; width: 3px; height: 3px; animation-duration: 25s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: 5s; background: var(--accent-gold); }
.particle:nth-child(7) { left: 50%; width: 2px; height: 2px; animation-duration: 30s; animation-delay: 7s; background: var(--accent-gold); }
.particle:nth-child(8) { left: 15%; width: 4px; height: 4px; animation-duration: 26s; animation-delay: 2.5s; }

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.25; }
  50% { opacity: 0.2; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.08;
  mix-blend-mode: multiply;
  animation: float-blob 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -15%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: var(--accent-blue);
  animation-duration: 25s;
}

.blob-2 {
  bottom: -15%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: #1E3A5F;
  animation-duration: 35s;
}

.blob-3 {
  top: 35%;
  left: 45%;
  width: 500px;
  height: 500px;
  background: #2563EB;
  animation-duration: 28s;
  animation-delay: -7s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -80px) scale(1.15); }
  100% { transform: translate(-60px, 60px) scale(0.9); }
}

/* Enhanced Modern Sticky Header */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: var(--nav-height);
  background: rgba(240, 244, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-med);
}

nav.scrolled {
  background: rgba(240, 244, 248, 0.95);
  height: 72px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Brand area */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-brand-tagline {
  font-size: 9px;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

nav .logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

nav .logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition-med);
}

nav a:hover {
  color: var(--accent-blue);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Sliding nav indicator */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative; /* For indicator positioning */
}

/* Nav CTA button */
.nav-cta {
  padding: 10px 24px;
  background: var(--accent-gradient);
  color: white !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  transition: all var(--transition-med) !important;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.45);
  color: white !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-med);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Elements */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  min-height: 75vh;
}

.hero-box {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 70px 60px;
  max-width: 800px;
  width: 100%;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle glowing accent inside hero box */
.hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0B1A33 0%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border: none;
  border-radius: var(--btn-radius);
  background: var(--accent-gradient);
  color: white;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-med);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.45);
}

.btn:active {
  transform: translateY(-1px);
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Feature Cards Grid (Home & Services) */
.features-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 40px 60px;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

/* About section cards (Who We Are / Mission / Vision) */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 40px;
  position: relative;
  z-index: 1;
}

.features .features-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  width: 100%;
}

.features .features-about-grid .card {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 992px) {
  .features .features-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features .features-about-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 30px 24px;
  border-radius: var(--card-radius);
  color: var(--text-primary);
  transition: all var(--transition-med);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  border: 1px solid transparent;
  background: var(--accent-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

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

/* Card Image Wrapper - premium style */
.card-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: rgba(30, 64, 175, 0.04);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Subtle gradient overlay for consistency */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(11, 26, 51, 0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-img-wrapper::after {
  opacity: 1;
}

/* Thin accent border on hover */
.card-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--accent-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.card:hover .card-img-wrapper::before {
  opacity: 1;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: transform, filter;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.12);
  filter: contrast(1.05) saturate(1.05);
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.card .btn-add-quote {
  margin-top: 15px;
  width: 100%;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.15);
  background: rgba(30, 64, 175, 0.06);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-family);
}

.card .btn-add-quote:hover {
  background: rgba(30, 64, 175, 0.1);
  color: var(--accent-blue);
}

.card .btn-add-quote.added {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.card .btn-add-quote.added:hover {
  background: #1E3A5F;
  color: white;
}

/* ======================== */
/* FYBROS-STYLE SCROLL FX   */
/* ======================== */

/* Base animation keyframes */
/* =============================================
   GOLD SHIMMER ANIMATIONS
   ============================================= */

/* Shimmer sweep for hero heading - gold light moves across text */
.hero h1.shimmer-heading {
  background: linear-gradient(
    115deg,
    #0B1A33 0%,
    #1E3A5F 30%,
    #2563EB 48%,
    #1E40AF 50%,
    #2563EB 52%,
    #1E3A5F 70%,
    #0B1A33 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-sweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shimmer-sweep {
  0% { background-position: 200% center; }
  50% { background-position: -200% center; }
  100% { background-position: -200% center; }
}

/* Gold sheen sweep for CTA button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 70%
  );
  background-size: 300% 100%;
  animation: btn-shimmer-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

@keyframes btn-shimmer-sweep {
  0% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

/* Staggered scroll reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Legacy support */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax banner sections */
.parallax-banner {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.parallax-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.parallax-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240,244,248,0.88) 0%, rgba(228,234,241,0.6) 100%);
  z-index: 0;
}

.parallax-banner .banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 40px;
  text-align: center;
}

.parallax-banner .banner-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-primary);
}

.parallax-banner .banner-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Unused highlight/feature classes removed */

/* Testimonial Panel */
.testimonial-container {
  text-align: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 60px auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  box-shadow: var(--glass-shadow);
}

.testimonial-container .quote {
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 500;
}

.testimonial-container .description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-container .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
}

.testimonial-container .title {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Premium Multi-Column Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  background: rgba(240, 244, 248, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 80px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-desc img {
  width: 150px;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

.status-badge span {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: block;
  animation: pulse-gold 1.8s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* WhatsApp Floating Button */
/* Smooth current-flow particles */
.current-flow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.current-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none !important;
  will-change: transform, opacity;
}

.current-dot.type-blue {
  background: var(--accent-blue);
  box-shadow:
    0 0 6px 3px rgba(30, 64, 175, 0.25),
    -10px 0 5px -2px rgba(30, 64, 175, 0.12);
}

.current-dot.type-gold {
  background: var(--accent-gold);
  box-shadow:
    0 0 5px 2px rgba(201, 168, 76, 0.2),
    -10px 0 5px -2px rgba(201, 168, 76, 0.1);
}

.current-dot.type-white {
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .current-flow-container { display: none; }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
  display: block;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  left: 76px;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 6px solid rgba(255, 255, 255, 0.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 105px;
    left: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .whatsapp-tooltip { display: none; }
}

.copyright {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(30, 64, 175, 0.08);
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats Section - About Page */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 20px 20px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition-med);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 64, 175, 0.2);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline Section */
.timeline-section {
  position: relative;
  z-index: 1;
  padding: 20px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), #2563EB);
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-marker {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-blue);
  border: 3px solid rgba(240, 244, 248, 0.9);
  box-shadow: 0 0 12px rgba(30, 64, 175, 0.3);
  z-index: 1;
}

.timeline-content {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all var(--transition-med);
}

.timeline-content:hover {
  transform: translateX(6px);
  border-color: rgba(30, 64, 175, 0.15);
}

.timeline-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--accent-gradient);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 28px;
  }
  .timeline {
    padding-left: 30px;
  }
  .timeline-marker {
    left: -26px;
    width: 12px;
    height: 12px;
  }
}

/* Enhanced Form Fields */
.required {
  color: #ff4a4a;
  font-size: 14px;
}

.field-error {
  display: block;
  color: #ff4a4a;
  font-size: 12px;
  margin-top: 4px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}

.field-error.visible {
  height: 18px;
}

.char-count {
  text-align: right;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Custom Service Request Section - Home Page */
.custom-request-home-section {
  position: relative;
  z-index: 1;
  padding: 20px 20px 40px;
}

.custom-request-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: var(--glass-shadow);
}

.custom-request-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.custom-request-input-row {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .custom-request-input-row {
    flex-direction: column;
  }
}

/* About Merged Section */
.about-merged-section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 90px;
}

.about-merged-section .page-header {
  text-align: center;
  padding: 60px 20px 20px;
  position: relative;
  z-index: 1;
}

.about-merged-section .page-header h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-merged-section .page-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-secondary);
}

.about-merged-section .page-header h3 {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Process Section */
.process-section {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.process-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 30px 20px;
  border-radius: var(--card-radius);
  text-align: center;
  transition: all var(--transition-med);
  box-shadow: var(--glass-shadow);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.15);
}

.process-card .step-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--accent-gradient);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.process-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Accordion Section */
.accordion-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 1;
}

.accordion-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: box-shadow var(--transition-med);
}

.accordion-item:hover {
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.accordion-header {
  width: 100%;
  padding: 16px 24px;
  background: white;
  color: #333;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: #FDFBFA;
}

.accordion-header .arrow {
  transition: transform var(--transition-med);
  font-size: 12px;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
  color: #555;
}

.accordion-panel.open {
  max-height: 400px;
}

.accordion-panel p {
  padding: 0 24px 16px;
  font-size: 14px;
  line-height: 1.7;
}

/* Suggestion Chips for Custom Service */
.suggestion-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.suggestion-chip {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.12);
  background: rgba(30, 64, 175, 0.04);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.suggestion-chip:hover {
  background: rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.25);
  color: var(--accent-blue);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 30px; }
  .hamburger { display: flex; }
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(240, 244, 248, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: right var(--transition-med);
    border-left: 1px solid var(--glass-border);
  }
  nav ul.open {
    right: 0;
  }
  .nav-indicator { display: none; }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero h1 { font-size: 36px; }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-box {
    padding: 40px 24px;
  }
  .site-footer {
    padding: 60px 24px 30px;
  }
}
