/* =============================================
   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;
}

.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 page) */
.features-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px 40px;
  position: relative;
  z-index: 1;
}

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

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

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

/* 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;
}

/* Focus-visible focus indicators for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav-cta:focus-visible,
.cookie-btn:focus-visible,
.accordion-header:focus-visible,
.card .btn-add-quote:focus-visible,
.suggestion-chip:focus-visible,
nav a:focus-visible,
.status-filter-btn:focus-visible,
.admin-tab:focus-visible,
.btn-action:focus-visible,
.view-toggle-btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

/* 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); }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9995;
  background: rgba(240, 244, 248, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
}

.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(201, 168, 76, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.cookie-consent-banner.visible .cookie-consent-icon {
  animation: cookie-bounce 0.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cookie-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.cookie-consent-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
  color: #2563EB;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

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

.cookie-btn-accept:active {
  transform: translateY(0);
}

.cookie-btn-reject {
  background: rgba(30, 64, 175, 0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(30, 64, 175, 0.12);
}

.cookie-btn-reject:hover {
  background: rgba(30, 64, 175, 0.1);
  color: var(--text-primary);
  border-color: rgba(30, 64, 175, 0.2);
  transform: translateY(-2px);
}

.cookie-btn-reject:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 16px 20px;
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-consent-text {
    min-width: unset;
  }
  .cookie-consent-text p {
    font-size: 13px;
  }
  .cookie-consent-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    font-size: 12px;
  }
  .cookie-consent-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .cookie-consent-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* 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);
}



.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;
  }
}

/* ── Tablet (992px) ── */
@media (max-width: 992px) {
  .hero { padding: 80px 16px; min-height: auto; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 17px; }
  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 15px; margin-bottom: 35px; }
  .parallax-banner .banner-content h2 { font-size: 34px; }
  .parallax-banner .banner-content p { font-size: 15px; }
  .parallax-banner .banner-content { padding: 40px 24px; }
  .testimonial-container { padding: 40px 28px; margin: 40px auto; }
  .testimonial-container .quote { font-size: 20px; }
  .contact-hero h1 { font-size: 36px; }
  .custom-request-container { padding: 35px 28px; }
  .custom-request-icon { font-size: 38px; }
  .accordion-header { font-size: 14px; padding: 14px 20px; }
}

/* ── Small Phones (360px) ── */
@media (max-width: 360px) {
  nav { padding: 0 16px; }
  .nav-brand-name { font-size: 14px; }
  .nav-brand-tagline { font-size: 8px; letter-spacing: 1px; }
  nav .logo { max-height: 38px; }
  .hero { padding: 60px 12px; }
  .hero-box { padding: 30px 18px; border-radius: 24px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .hero-stats-row { font-size: 12px; gap: 8px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 13px; margin-bottom: 25px; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .card { padding: 22px 16px; }
  .card h3 { font-size: 15px; }
  .card p { font-size: 12px; }
  .card-img-wrapper { height: 140px; }
  .service-card { padding: 20px 14px; }
  .service-card .service-img-wrapper { width: 70px; height: 70px; }
  .service-card h3 { font-size: 14px; }
  .service-card p { font-size: 12px; }
  .parallax-banner { min-height: 350px; }
  .parallax-banner .banner-content h2 { font-size: 26px; }
  .parallax-banner .banner-content p { font-size: 14px; }
  .parallax-banner .banner-content { padding: 30px 18px; }
  .testimonial-container { padding: 30px 20px; margin: 30px auto; }
  .testimonial-container .quote { font-size: 18px; }
  .testimonial-container .description { font-size: 13px; }
  .site-footer { padding: 40px 16px 24px; }
  .footer-grid { gap: 24px; }
  .footer-col h3 { font-size: 14px; }
  .footer-col p, .footer-col ul a { font-size: 12px; }
  .copyright { font-size: 11px; padding-top: 20px; }
  .contact-hero h1 { font-size: 30px; }
  .contact-hero { padding: 40px 12px 16px; }
  .contact-form-section { padding: 10px 12px 40px; }
  .form-card { padding: 28px 20px 30px; border-radius: 20px; }
  .custom-request-container { padding: 28px 20px; }
  .custom-request-icon { font-size: 32px; }
  .features-grid { gap: 14px; }
  .process-card { padding: 22px 14px; }
  .process-card h4 { font-size: 15px; }
  .process-card p { font-size: 13px; }
  .accordion-header { font-size: 13px; padding: 12px 16px; }
  .accordion-panel p { font-size: 13px; padding: 0 16px 12px; }
  .stats-grid { gap: 12px; }
  .stat-item { padding: 20px 14px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .timeline-content { padding: 16px 18px; }
  .timeline-content h4 { font-size: 14px; }
  .timeline-content p { font-size: 12px; }
  .section-divider { gap: 12px; }
  .divider-heading { font-size: 16px; letter-spacing: 1px; }
  .suggestion-chip { font-size: 10px; padding: 4px 10px; }
  .hero-stats-row { flex-wrap: wrap; gap: 6px; }
  .hero-tagline { font-size: 14px !important; }
  /* Footer logo */
  .footer-logo-desc img { width: 120px; }
}

/* =============================================
   PAGE-SPECIFIC STYLES (consolidated from inline <style> blocks)
   ============================================= */

/* ─── Home Page — Spark Particles ─── */
.spark-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.spark-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: spark-float cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}

.spark-particle.type-blue {
  background: var(--accent-blue);
  box-shadow: 0 0 8px 3px rgba(30, 64, 175, 0.3);
}

.spark-particle.type-gold {
  background: var(--accent-gold);
  box-shadow: 0 0 6px 2px rgba(201, 168, 76, 0.2);
}

.spark-particle.type-white {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.2);
}

@keyframes spark-float {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.3); }
  10% { opacity: 0.7; transform: translateY(-10px) translateX(5px) scale(1); }
  50% { opacity: 0.5; transform: translateY(-60px) translateX(-10px) scale(0.8); }
  80% { opacity: 0.2; transform: translateY(-100px) translateX(8px) scale(0.4); }
  100% { opacity: 0; transform: translateY(-130px) translateX(-3px) scale(0.1); }
}

.spark-bolt {
  position: absolute;
  width: 2px;
  height: 12px;
  pointer-events: none;
  opacity: 0;
  animation: bolt-flash 3s ease-in-out infinite;
}

.spark-bolt::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-blue);
  clip-path: polygon(50% 0%, 30% 40%, 55% 45%, 35% 80%, 70% 50%, 45% 40%);
}

@keyframes bolt-flash {
  0%, 90%, 100% { opacity: 0; transform: scale(0.5); }
  92% { opacity: 0.8; transform: scale(1.2); }
  94% { opacity: 0.3; transform: scale(0.8); }
  96% { opacity: 0.6; transform: scale(1); }
  98% { opacity: 0.1; transform: scale(0.6); }
}

/* ─── Home Page — Hero Stats & Section Divider ─── */
.hero-tagline {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: var(--text-secondary) !important;
  max-width: 680px;
  margin: 0 auto 20px !important;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-stats-row strong {
  color: var(--accent-blue);
  font-weight: 700;
}

.hero-dot {
  color: var(--accent-gold);
  font-size: 10px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30, 64, 175, 0.2), transparent);
}

.divider-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-blue);
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
}



/* ─── Services Page ─── */
.page-title {
  text-align: center;
  padding: 60px 20px 10px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

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

.services-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 60px 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 32px 24px;
  border-radius: var(--card-radius);
  width: 270px;
  text-align: center;
  color: var(--text-primary);
  transition: all var(--transition-med);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card .service-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
  background: rgba(30, 64, 175, 0.04);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.service-card .service-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;
}

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

.service-card .service-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;
}

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

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

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

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

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

.cta-section {
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-title { font-size: 28px; padding: 40px 20px 10px; }
  .services-grid { padding: 20px 20px 40px; gap: 20px; }
  .service-card { width: 100%; max-width: 340px; }
  .cta-section h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .page-title { font-size: 24px; padding: 30px 12px 8px; }
  .services-grid { padding: 16px 12px 30px; gap: 16px; }
  .service-card { padding: 24px 16px; max-width: 100%; }
  .service-card .service-img-wrapper { width: 80px; height: 80px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 13px; }
  .cta-section { padding: 30px 16px 40px; }
  .cta-section h2 { font-size: 20px; }
}

/* ─── About Page ─── */
.page-header {
  text-align: center;
  padding: 60px 20px 20px;
  position: relative;
  z-index: 1;
}

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

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

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

@media (max-width: 768px) {
  .page-header h1 { font-size: 36px; }
  .page-header h2 { font-size: 20px; }
  .page-header { padding: 40px 16px 16px; }
}

@media (max-width: 480px) {
  .page-header h1 { font-size: 28px; }
  .page-header h2 { font-size: 17px; }
  .page-header h3 { font-size: 15px; }
  .page-header { padding: 30px 12px 12px; }
}

/* ─── Contact Page ─── */
.contact-hero {
  text-align: center;
  padding: 60px 20px 20px;
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0B1A33 0%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 28px 24px;
  border-radius: var(--card-radius);
  width: 260px;
  text-align: center;
  transition: all var(--transition-med);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.12);
  border-color: rgba(30, 64, 175, 0.2);
}

.contact-info-card .info-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.contact-info-card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* Contact Form Section */
.contact-form-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 50px;
  position: relative;
  z-index: 1;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
}

.form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 44px 40px 38px;
  box-shadow:
    0 8px 40px rgba(11, 26, 51, 0.08),
    0 2px 8px rgba(11, 26, 51, 0.04);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.3),
    rgba(201, 168, 76, 0.25),
    rgba(30, 64, 175, 0.35),
    rgba(201, 168, 76, 0.2),
    rgba(30, 64, 175, 0.3)
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: gradient-border-flow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes gradient-border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.form-card:hover {
  box-shadow:
    0 16px 60px rgba(11, 26, 51, 0.12),
    0 2px 8px rgba(11, 26, 51, 0.06);
}

.form-card-header {
  margin-bottom: 32px;
  text-align: center;
}

.form-card-header .form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 64, 175, 0.08);
  border: 1px solid rgba(30, 64, 175, 0.12);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.form-card-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0B1A33 0%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-card-header .form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Floating label inputs */
.floating-group {
  margin-bottom: 20px;
}

.floating-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.floating-input-wrap .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.floating-input-wrap.textarea-wrap .input-icon {
  top: 18px;
  transform: none;
}

.floating-input-wrap input,
.floating-input-wrap select,
.floating-input-wrap textarea {
  width: 100%;
  padding: 22px 18px 8px 44px;
  border: 1.5px solid rgba(30, 64, 175, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  position: relative;
  z-index: 1;
}

.floating-input-wrap textarea {
  padding: 26px 18px 10px 44px;
  min-height: 110px;
  resize: vertical;
}

.floating-input-wrap input:focus,
.floating-input-wrap select:focus,
.floating-input-wrap textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 3px rgba(30, 64, 175, 0.08),
    0 4px 20px rgba(30, 64, 175, 0.06);
}

.floating-input-wrap input:focus ~ .input-icon,
.floating-input-wrap textarea:focus ~ .input-icon {
  opacity: 0.9;
}

.floating-input-wrap label {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  background: transparent;
  padding: 0 4px;
  transform-origin: left center;
}

.floating-input-wrap.textarea-wrap label {
  top: 20px;
  transform: none;
}

.floating-input-wrap input:focus ~ label,
.floating-input-wrap input:not(:placeholder-shown) ~ label,
.floating-input-wrap textarea:focus ~ label,
.floating-input-wrap textarea:not(:placeholder-shown) ~ label,
.floating-input-wrap select:focus ~ label,
.floating-input-wrap.has-value select ~ label {
  top: 8px;
  transform: translateY(0) scale(0.78);
  left: 40px;
  color: var(--accent-blue);
  font-weight: 500;
}

.floating-input-wrap.textarea-wrap input:focus ~ label,
.floating-input-wrap.textarea-wrap input:not(:placeholder-shown) ~ label,
.floating-input-wrap.textarea-wrap textarea:focus ~ label,
.floating-input-wrap.textarea-wrap textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: scale(0.78);
  left: 40px;
}

.floating-input-wrap select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='%235C5348'%3E%3Cpath d='M1 2l6 6 6-6' stroke='%235C5348' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

.floating-input-wrap select option {
  background: #fff;
  color: var(--text-primary);
}

.floating-input-wrap input::placeholder,
.floating-input-wrap textarea::placeholder {
  color: transparent;
}

.floating-input-wrap.error input,
.floating-input-wrap.error select,
.floating-input-wrap.error textarea {
  border-color: #ff4a4a !important;
  box-shadow: 0 0 0 3px rgba(255, 74, 74, 0.1) !important;
}

.floating-input-wrap.error label {
  color: #ff4a4a !important;
}

.selected-services-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.04), rgba(201, 168, 76, 0.04));
  border: 1.5px dashed rgba(30, 64, 175, 0.2);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 22px;
  display: none;
  animation: fadeSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.selected-services-box.active {
  display: block;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.selected-services-box h4 {
  font-size: 13px;
  color: var(--accent-blue);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.services-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  background: rgba(30, 64, 175, 0.07);
  border: 1px solid rgba(30, 64, 175, 0.14);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.service-tag:hover {
  background: rgba(30, 64, 175, 0.12);
  transform: translateY(-1px);
}

.form-submit {
  position: relative;
  width: 100%;
  padding: 16px 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 50%, #0B1A33 100%);
  color: white;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 20px rgba(30, 64, 175, 0.35),
    0 1px 4px rgba(30, 64, 175, 0.15);
  margin-top: 8px;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(30, 64, 175, 0.45),
    0 2px 8px rgba(30, 64, 175, 0.2);
}

.form-submit:hover::after {
  opacity: 1;
}

.form-submit:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 3px 15px rgba(30, 64, 175, 0.3);
}

.form-submit:disabled {
  opacity: 0.7;
  transform: none !important;
  cursor: not-allowed;
}

.form-status {
  padding: 16px 20px;
  border-radius: 14px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: fadeSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.12), rgba(46, 213, 115, 0.06));
  border: 1.5px solid rgba(46, 213, 115, 0.3);
  color: #1a9b56;
}

.form-status.error {
  display: block;
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.12), rgba(255, 71, 87, 0.06));
  border: 1.5px solid rgba(255, 71, 87, 0.3);
  color: #cc0033;
}

.form-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.form-info-item:hover {
  transform: translateX(6px);
  border-color: rgba(30, 64, 175, 0.15);
  box-shadow: 0 4px 16px rgba(11, 26, 51, 0.06);
}

.form-info-item .info-emoji {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 64, 175, 0.06);
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.form-info-item:hover .info-emoji {
  background: rgba(30, 64, 175, 0.12);
  transform: scale(1.05);
}

.form-info-item .info-content h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.form-info-item .info-content p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-info-item .info-content a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.form-info-item .info-content a:hover {
  color: var(--accent-blue);
}

.form-hours-compact {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
  transition: all 0.3s ease;
}

.form-hours-compact:hover {
  border-color: rgba(30, 64, 175, 0.15);
  box-shadow: 0 4px 16px rgba(11, 26, 51, 0.06);
}

.form-hours-compact h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hours-row-inline {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 3px 0;
  color: var(--text-secondary);
}

.hours-row-inline .hours-days {
  color: var(--text-muted);
}

.hours-row-inline .hours-time {
  font-weight: 500;
  color: var(--text-primary);
}

.hours-emergency {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
}

@media (max-width: 960px) {
  .form-card {
    padding: 32px 24px 30px;
  }
  .form-card-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .form-card {
    padding: 24px 18px 24px;
    border-radius: 20px;
  }
  .form-card::before {
    border-radius: 20px;
  }
  .floating-input-wrap input,
  .floating-input-wrap select,
  .floating-input-wrap textarea {
    padding-left: 40px;
    font-size: 13px;
  }
  .floating-input-wrap label {
    left: 40px;
    font-size: 13px;
  }
  .floating-input-wrap .input-icon {
    left: 13px;
    font-size: 14px;
  }
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--glass-shadow);
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

/* OpenStreetMap (Leaflet) */
.map-embed {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.1);
  background: rgba(30, 64, 175, 0.04);
  transition: box-shadow 0.3s ease;
}

.sidebar-card:hover .map-embed {
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
}

.map-embed .leaflet-container {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ─── Legal Pages (Privacy Policy, Terms & Conditions) ─── */
.legal-container {
  max-width: 860px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.legal-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--glass-shadow);
}

.legal-card h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-card .last-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text-primary);
}

.legal-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-primary);
}

.legal-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-card ul,
.legal-card ol {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 8px 0 16px;
  padding-left: 24px;
}

.legal-card li {
  margin-bottom: 6px;
}

.legal-card .highlight-box {
  background: rgba(30, 64, 175, 0.05);
  border-left: 4px solid var(--accent-blue);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.legal-card .highlight-box strong {
  color: var(--accent-blue);
}

@media (max-width: 768px) {
  .legal-card { padding: 28px 20px; }
  .legal-card h1 { font-size: 26px; }
  .legal-card h2 { font-size: 18px; }
}

/* ─── Home Page — hero override (included after base hero styles) ─── */
.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

/* =============================================
   REDUCED MOTION — Accessibility for vestibular disorders
   Consolidated from previously scattered inline <style> blocks
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  /* Kill all animations & transitions site-wide */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Hide decorative particle systems entirely */
  .spark-container,
  .current-flow-container {
    display: none !important;
  }

  /* Disable hover transform effects */
  .card:hover,
  .btn:hover,
  .nav-cta:hover,
  .service-card:hover,
  .contact-info-card:hover,
  .stat-item:hover,
  .process-card:hover,
  .enquiry-card:hover,
  .timeline-content:hover,
  .form-info-item:hover,
  .whatsapp-float:hover,
  .card-img-wrapper img:hover {
    transform: none !important;
  }

  /* Disable parallax scrolling */
  .parallax-banner .banner-bg {
    transform: none !important;
  }

  /* Disable hero box entrance animation */
  .hero-box {
    animation: none !important;
    opacity: 1 !important;
  }

  /* Ensure reveal elements are visible immediately */
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Keep CSS scroll-behavior off */
  html {
    scroll-behavior: auto;
  }
}


