/* ==========================================================================
   FU-GLIDE | Modern 3D & Animated Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color Palette */
  --bg: #061124;
  --bg-deep: #030814;
  --bg-gradient: radial-gradient(circle at 50% 0%, #121f3d 0%, #061124 70%, #030814 100%);
  
  --primary: #b06cff;
  --primary-glow: rgba(176, 108, 255, 0.45);
  --primary-light: #c68fff;
  
  --secondary: #f6b84b;
  --secondary-glow: rgba(246, 184, 75, 0.4);
  --secondary-light: #ffd07a;
  
  --accent: #f6b84b;
  --text: #ffffff;
  --text-muted: rgba(246, 184, 75, 0.88);
  --text-dim: rgba(226, 232, 240, 0.75);
  
  /* Surfaces & Glassmorphism */
  --surface: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.11);
  --surface-card: rgba(12, 22, 45, 0.65);
  --surface-alt: rgba(255, 255, 255, 0.04);
  
  --border: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(246, 184, 75, 0.28);
  --border-glow: rgba(176, 108, 255, 0.5);
  
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(176, 108, 255, 0.15);
  --shadow-glow: 0 0 35px var(--primary-glow);
  
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 32px;
  --max-width: 1240px;
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg);
}

body {
  margin: 0;
  /* min-height: 100vh; */
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image: url('../images/logoback.jpeg');
  background-size: cover;
   background-position: center center;
  background-repeat: no-repeat; 
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fullscreen Dark Ambient Gradient Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 36, 0.82) 0%, rgba(3, 8, 20, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient Canvas Layer */
#ambient-bg-canvas,
.ambient-particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button {
  font-family: inherit;
}

/* Container */
.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, var(--secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  color: #f8fafc;
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.hero-copy {
  color: rgba(226, 232, 240, 0.92);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.accent-text {
  color: var(--secondary);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(246, 184, 75, 0.1);
  border: 1px solid rgba(246, 184, 75, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(246, 184, 75, 0.12);
}
.heroba-gold{
  margin-bottom: 10px;
}

/* --- Sticky Modern Glass Header --- */
:root {
  --announcement-height: 44px;
}

.announcement-bar {
  height: var(--announcement-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: rgba(3, 8, 20, 0.94);
  border-bottom: 1px solid rgba(246, 184, 75, 0.22);
  color: #ffffff;
}

.announcement-bar__contact,
.announcement-bar__marquee {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.announcement-bar__contact {
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(246, 184, 75, 0.2);
}

.announcement-bar__phone {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.announcement-bar__phone:hover {
  color: var(--secondary-light);
}

.announcement-bar__instagram,
.announcement-bar__email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  color: var(--secondary);
  border: 1px solid rgba(246, 184, 75, 0.55);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.announcement-bar__instagram svg,
.announcement-bar__email svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.announcement-bar__instagram:hover,
.announcement-bar__instagram:focus-visible,
.announcement-bar__email:hover,
.announcement-bar__email:focus-visible {
  color: var(--bg-deep);
  background: var(--secondary);
  transform: translateY(-1px);
}

.announcement-bar__viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  animation: announcement-scroll 28s linear infinite;
  will-change: transform;
}

.announcement-bar__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 2.5rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-bar__item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 12px var(--secondary-glow);
}

.announcement-bar:hover .announcement-bar__track,
.announcement-bar:focus-within .announcement-bar__track {
  animation-play-state: paused;
}

@keyframes announcement-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar__track {
    animation: none;
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  :root {
    --announcement-height: 88px;
  }

  .announcement-bar {
    grid-template-columns: 1fr;
  }

  .announcement-bar__contact,
  .announcement-bar__marquee {
    height: 44px;
  }

  .announcement-bar__contact {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 184, 75, 0.2);
  }

  .announcement-bar__item {
    padding: 0 1.75rem;
    font-size: 0.7rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: radial-gradient(ellipse 70% 80% at 20% 0%, rgba(176, 108, 255, 0.08), transparent 70%),
              radial-gradient(ellipse 50% 60% at 85% 100%, rgba(246, 184, 75, 0.05), transparent 60%),
              linear-gradient(180deg, rgba(6, 17, 36, 0.96) 0%, rgba(3, 8, 20, 0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(246, 184, 75, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(176, 108, 255, 0.4) 20%, rgba(246, 184, 75, 0.75) 50%, rgba(176, 108, 255, 0.4) 80%, transparent 100%);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(3, 8, 20, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(176, 108, 255, 0.15);
  border-bottom-color: rgba(246, 184, 75, 0.35);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
  transition: min-height var(--transition);
}

.site-header.scrolled .navbar {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid rgba(246, 184, 75, 0.65);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 18px rgba(246, 184, 75, 0.3);
  transition: all var(--transition);
}

.brand:hover {
  background: #ffffff;
  border-color: var(--secondary, #f6b84b);
  box-shadow: 0 6px 26px rgba(246, 184, 75, 0.55), 0 0 22px rgba(176, 108, 255, 0.35);
  transform: translateY(-2px) scale(1.02);
}

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

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.site-header.scrolled .brand {
  padding: 4px 11px;
}

.site-header.scrolled .brand-logo {
  height: 42px;
}

/* Nav Links Container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Common Nav Item Pill Style for both <a> and <button> */
.nav-links a,
.dropdown-toggle {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(248, 250, 252, 0.9);
  font-family: var(--font-body, system-ui, sans-serif);
  font-weight: 600;
  font-size: 0.925rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-links a:hover,
.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle,
.dropdown.is-open .dropdown-toggle,
.dropdown.is-expanded .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  border-color: rgba(246, 184, 75, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(246, 184, 75, 0.15);
}

.nav-links a.active,
.dropdown-toggle.active,
.nav-links a[style*="f6b84b"],
.dropdown-toggle[style*="f6b84b"] {
  color: var(--secondary, #f6b84b) !important;
  background: rgba(246, 184, 75, 0.12);
  border-color: rgba(246, 184, 75, 0.3);
}

.dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
  opacity: 0.85;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.dropdown:hover .dropdown-toggle svg,
.dropdown.is-open .dropdown-toggle svg,
.dropdown.is-expanded .dropdown-toggle svg,
.dropdown:focus-within .dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 270px;
  padding: 0.75rem;
  background: rgba(8, 17, 38, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(176, 108, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(176, 108, 255, 0.2);
  transition: opacity 0.28s var(--transition), transform 0.28s var(--transition), visibility 0.28s;
  pointer-events: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.is-open .dropdown-menu,
.dropdown.is-expanded .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  color: rgba(248, 250, 252, 0.9);
  border: 1px solid transparent;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.4;
  white-space: normal;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(176, 108, 255, 0.2);
  color: var(--secondary);
  border-color: rgba(246, 184, 75, 0.35);
  transform: translateX(4px);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.65rem;
  width: 44px;
  height: 44px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  transform: scale(1.05);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Modern Premium Above-the-Fold Hero Section
   ========================================================================== */
.hero-elevating {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-banner-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
}

.hero-elevating::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 11, 24, 0.86) 0%, rgba(6, 17, 36, 0.8) 45%, rgba(4, 11, 24, 0.92) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-elevating::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(176, 108, 255, 0.16) 0%, rgba(246, 184, 75, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-elevating-container {
  position: relative;
  z-index: 2;
  width: min(var(--max-width, 1200px), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column Content */
.hero-elevating-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-elevating-headline {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}

.hero-rotator-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.2rem 0 2rem;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-rotator-dynamic {
  display: inline-block;
  color: #f6b84b;
  background: linear-gradient(135deg, #ffd07a 0%, #f6b84b 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(246, 184, 75, 0.5));
  min-width: 250px;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-rotator-dynamic.rotate-out {
  opacity: 0;
  transform: translateY(-16px);
}

.hero-rotator-dynamic.rotate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Features List with Neon-Red Badges */
.hero-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: #f1f5f9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-feature-item:hover {
  transform: translateX(6px);
  color: #ffffff;
}

.hero-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3366 0%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 51, 102, 0.65), 0 4px 10px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hero-feature-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-feature-item:hover .hero-feature-badge {
  transform: scale(1.14) rotate(6deg);
  box-shadow: 0 0 24px rgba(255, 51, 102, 0.9);
}

/* Right Column Lead Generation Form */
.hero-elevating-form-wrap {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  z-index: 2;
}

.hero-lead-card {
  background: rgba(8, 18, 36, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(176, 108, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-lead-card:hover {
  border-color: rgba(246, 184, 75, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 45px rgba(246, 184, 75, 0.2);
}

.hero-lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 184, 75, 0.85), transparent);
}

.hero-lead-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.35rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.hero-lead-subtitle {
  font-size: 0.92rem;
  color: #94a3b8;
  margin: 0 0 1.5rem;
  text-align: center;
}

.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.hero-input-capsule {
  width: 100%;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.96rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.hero-input-capsule:focus {
  border-color: #f6b84b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(246, 184, 75, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-input-capsule::placeholder {
  color: rgba(226, 232, 240, 0.65);
}

.hero-select-capsule {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f6b84b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.35rem center;
  cursor: pointer;
}

.hero-select-capsule option {
  background-color: #0c182c;
  color: #f8fafc;
  padding: 12px;
}

/* Prominent Gold Capsule CTA Button */
.hero-btn-gold, .heroba-gold {
  width: 100%;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd07a 0%, #f6b84b 50%, #f59e0b 100%);
  color: #0f172a;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(246, 184, 75, 0.45), 0 0 25px rgba(246, 184, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, filter 0.25s ease;
  margin-top: 0.5rem;
  box-sizing: border-box;
}

.hero-btn-gold .hero-btn-text {
  flex: 1;
  text-align: center;
}

.hero-btn-gold .hero-btn-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn-gold .hero-btn-arrow-circle svg {
  width: 18px;
  height: 18px;
  stroke: #0f172a;
  stroke-width: 2.5;
  fill: none;
}

.hero-btn-gold:hover, .heroba-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(246, 184, 75, 0.65), 0 0 40px rgba(246, 184, 75, 0.4);
  filter: brightness(1.04);
}

.hero-btn-gold:hover .hero-btn-arrow-circle {
  transform: translateX(4px);
}

.hero-btn-gold:active {
  transform: translateY(0) scale(0.99);
}

.hero-form-status {
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0.4rem;
  min-height: 1.2rem;
  font-weight: 600;
  display: none;
}

.hero-form-status.success {
  color: #34d399;
  display: block;
}

.hero-form-status.error {
  color: #f87171;
  display: block;
}

/* ==========================================================================
   Sticky Floating WhatsApp Demo Button (Bottom-Left)
   ========================================================================== */
.whatsapp-demo-float {
  position: fixed;
  left: 1.75rem;
  bottom: 1.75rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-demo-float svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  flex-shrink: 0;
}

.whatsapp-demo-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.7);
  color: #ffffff;
}

/* Responsive Rules for Hero Elevating */
@media (max-width: 1024px) {
  .hero-elevating {
    padding: 4rem 0 3.5rem;
    min-height: auto;
  }

  .hero-elevating-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-elevating-content {
    align-items: center;
    text-align: center;
  }

  .hero-features-list {
    align-items: flex-start;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-elevating-form-wrap {
    justify-self: center;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-elevating {
    padding: 3rem 0 2.5rem;
  }

  .hero-elevating-headline {
    font-size: 1.85rem;
  }

  .hero-rotator-wrap {
    font-size: 1.65rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-rotator-dynamic {
    min-width: auto;
  }

  .hero-feature-item {
    font-size: 0.98rem;
  }

  .hero-lead-card {
    padding: 1.75rem 1.25rem;
  }

  .whatsapp-demo-float {
    left: 1.15rem;
    bottom: 1.15rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.88rem;
  }

  .whatsapp-demo-float svg {
    width: 19px;
    height: 19px;
  }
}

/* --- Hero Section & 3D Stage --- */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 3D WebGL Canvas in Hero */
.hero-3d-canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  background: rgba(12, 22, 45, 0.55);
  border: 1px solid rgba(246, 184, 75, 0.22);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  width: fit-content;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-signature:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: 0 16px 36px var(--secondary-glow);
}

.hero-signature__photo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 18px var(--secondary-glow);
  flex-shrink: 0;
}

.hero-signature__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-signature div {
  display: flex;
  flex-direction: column;
}

/* Page Hero (Subpages) */
.page-hero {
  position: relative;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 1.2rem;
}

.page-hero p {
  font-size: 1.18rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.75;
}

/* --- Interactive 3D Cards & Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* Common 3D Tilt Card Base */
.hero-card .card-panel,
.stat-card,
.testimonial-card,
.partner-card,
.feature-item,
.info-card,
.portfolio-card,
.form-shell,
.contact-panel {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  will-change: transform;
  overflow: hidden;
}

/* Specular Light Reflection Overlay */
.hero-card .card-panel::after,
.stat-card::after,
.partner-card::after,
.feature-item::after,
.info-card::after,
.portfolio-card::after,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12), transparent 80%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.hero-card .card-panel:hover::after,
.stat-card:hover::after,
.partner-card:hover::after,
.feature-item:hover::after,
.info-card:hover::after,
.portfolio-card:hover::after,
.team-card:hover::after {
  opacity: 1;
}

.hero-card .card-panel:hover,
.stat-card:hover,
.testimonial-card:hover,
.partner-card:hover,
.feature-item:hover,
.info-card:hover,
.portfolio-card:hover {
  border-color: rgba(176, 108, 255, 0.45);
  box-shadow: var(--shadow-lg);
}

.card-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-panel h2 {
  font-size: 1.85rem;
}

.feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item h3 {
  color: var(--secondary);
  font-size: 1.2rem;
}

.feature-item ul,
.grid-2 ul {
  padding-left: 1.2rem;
  margin-top: 0.75rem;
}

.feature-item li,
.grid-2 li {
  margin-bottom: 0.65rem;
  color: rgba(226, 232, 240, 0.88);
}

/* Stat & Course Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.8rem;
  gap: 1rem;
}

.stat-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}

.stat-card:hover img {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 15px 35px var(--secondary-glow);
}

.stat-card p {
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.5rem 0 0.85rem;
}

/* Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.partner-card {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.partner-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-bounce), filter var(--transition);
}

.partner-card:hover img {
  transform: scale(1.06) translateY(-4px);
  filter: brightness(1.08);
}

.partner-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

/* --- Team Grid (About Page) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.team-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid rgba(246, 184, 75, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.team-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(6, 17, 36, 0.05) 0%, rgba(6, 17, 36, 0.95) 75%);
  backdrop-filter: blur(8px);
  transform: translateY(20%);
  opacity: 0.92;
  transition: transform 0.4s var(--transition), opacity 0.4s var(--transition);
  z-index: 3;
}

.team-card:hover .team-body {
  transform: translateY(0);
  opacity: 1;
}

.team-body h3 {
  margin: 0 0 0.3rem;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.35s ease;
}

.team-body p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Section Layouts --- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  margin-bottom: 2.75rem;
}

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

.section-heading p {
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.1rem;
  max-width: 760px;
}

.section-heading h3 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.cta-section {
  text-align: center;
  padding: 6rem 0;
}

.cta-section h2 {
  max-width: 750px;
  margin: 0 auto 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #9047ea 50%, var(--secondary) 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(176, 108, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 16px 40px rgba(176, 108, 255, 0.5), 0 0 20px var(--secondary-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* --- Forms & Inputs --- */
.form-shell {
  background: var(--surface-card);
  border: 1px solid rgba(176, 108, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-panel {
  padding: 2.5rem;
}

.contact-panel h2 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}

.contact-panel p {
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.contact-panel .btn {
  margin-top: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.hero-elevating-headline{
  font-size: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hero-btn-gold{
  width: 350px;
}

label {
  display: grid;
  gap: 0.6rem;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(6, 14, 32, 0.85);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(10, 20, 44, 0.95);
  box-shadow: 0 0 0 4px rgba(246, 184, 75, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.contact-form select option {
  background-color: #081226;
  color: #ffffff;
  padding: 0.5rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-message {
  min-height: 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0 0;
  transition: opacity 0.3s ease;
}

/* Map Frame */
iframe {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Modern 4-Column Footer Redesign (Elevated Glass & Ambient Glow)
   ========================================================================== */
.site-footer {
  padding: 5rem 0 2.25rem;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(176, 108, 255, 0.12), transparent 70%),
              radial-gradient(ellipse 60% 40% at 90% 80%, rgba(246, 184, 75, 0.05), transparent 60%),
              linear-gradient(180deg, #070d1e 0%, #030712 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  position: relative;
  z-index: 10;
  font-family: var(--font-body, system-ui, sans-serif);
  overflow: visible;
}

/* Ambient luminous top glow line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(176, 108, 255, 0.6) 20%, rgba(246, 184, 75, 0.85) 50%, rgba(176, 108, 255, 0.6) 80%, transparent 100%);
  box-shadow: 0 0 16px rgba(246, 184, 75, 0.4);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.35fr 1.3fr;
  gap: 2.75rem 2.25rem;
  align-items: start;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
  width: 100%;
}

/* Col 1: Brand Info */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
}

.footer-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(176, 108, 255, 0.3));
  transition: filter 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo {
  filter: drop-shadow(0 4px 16px rgba(246, 184, 75, 0.5));
}

.footer-brand-name {
  font-family: var(--font-heading, system-ui, sans-serif);
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #f6b84b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer-about-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0 0 1.6rem;
  max-width: 340px;
}

/* Social Media Icons Row */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  flex-shrink: 0;
}

.footer-social-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.06);
  background: rgba(246, 184, 75, 0.18);
  border-color: rgba(246, 184, 75, 0.5);
  color: #ffd07a;
  box-shadow: 0 6px 20px rgba(246, 184, 75, 0.3);
}

.footer-social-btn[aria-label*="Instagram"]:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(246, 184, 75, 0.2));
  border-color: rgba(225, 48, 108, 0.5);
  color: #fca5a5;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
}

.footer-social-btn[aria-label*="WhatsApp"]:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
  color: #4ade80;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.footer-social-btn[aria-label*="Email"]:hover,
.footer-social-btn[aria-label*="Mail"]:hover {
  background: rgba(176, 108, 255, 0.18);
  border-color: rgba(176, 108, 255, 0.5);
  color: #c084fc;
  box-shadow: 0 6px 20px rgba(176, 108, 255, 0.35);
}

/* Section Headings */
.footer-heading {
  font-family: var(--font-heading, system-ui, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.35rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.65rem;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--secondary, #f6b84b), var(--primary, #b06cff));
  border-radius: 2px;
}

/* Col 2: Quick Links */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.footer-nav-item {
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #cbd5e1;
  font-size: 0.935rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  padding: 0.2rem 0;
}

.footer-nav-link svg.footer-link-arrow {
  width: 14px;
  height: 14px;
  color: var(--secondary, #f6b84b);
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.footer-nav-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-nav-link:hover svg.footer-link-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: #ffd07a;
}

/* Col 3: Contact Us */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(246, 184, 75, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(176, 108, 255, 0.15), rgba(246, 184, 75, 0.15));
  border: 1px solid rgba(246, 184, 75, 0.25);
  color: var(--secondary, #f6b84b);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.footer-contact-val {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--secondary, #f6b84b);
}

.footer-contact-item span strong {
  color: #ffffff;
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

/* Col 4: Our Location */
.footer-map-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.footer-map-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.footer-map-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease;
}

.footer-map-wrapper:hover {
  border-color: rgba(246, 184, 75, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(246, 184, 75, 0.15);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 175px;
  border: 0;
  display: block;
}

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

.footer-tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.825rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* Floating Back To Top Button */
.back-to-top {
  position: fixed;
  right: 1.75rem;
  bottom: 6.25rem;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background-color: var(--secondary, #f6b84b);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(246, 184, 75, 0.35);
  border: none;
  cursor: pointer;
  z-index: 1190;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
}

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

.back-to-top:hover {
  background-color: #ffd07a;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(246, 184, 75, 0.5);
  color: #000000;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- WhatsApp Floating Action Button --- */
.whatsapp-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 1200;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  animation: floatBreathing 3.6s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulseRing 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.14) translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

@keyframes floatBreathing {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- Reveal & Animation States (Ease In From Right) --- */
.reveal {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 1280px) {
  .nav-links {
    gap: 0.3rem;
  }

  .nav-links a,
  .dropdown-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1.25fr 1.25fr;
    gap: 2rem 1.5rem;
  }

  .footer-logo {
    height: 44px;
  }

  .footer-brand-name {
    font-size: 1.45rem;
  }

  .footer-map-wrapper iframe {
    height: 165px;
  }
}

@media (max-width: 1080px) {
  .brand {
    padding: 5px 12px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-card {
    order: -1;
  }

  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(246, 184, 75, 0.4) transparent;
    background: rgba(6, 14, 32, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(176, 108, 255, 0.35);
    border-radius: 20px;
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(176, 108, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 1001;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    box-sizing: border-box;
    border-radius: 12px;
  }

  .dropdown {
    width: 100%;
    position: static;
    display: block;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: none;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown.is-expanded .dropdown-menu,
  .dropdown.is-open .dropdown-menu {
    display: flex !important;
  }

  .dropdown-menu a {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    color: #cbd5e1;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    display: block;
    background: transparent;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background: rgba(176, 108, 255, 0.18);
    color: var(--secondary);
    transform: translateX(4px);
  }

  .site-footer {
    padding: 4.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.25rem;
  }

  .footer-about-text {
    max-width: 100%;
  }

  .footer-map-wrapper iframe {
    height: 190px;
  }

  .footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
  }
}

/* ==========================================================================
   Services Page & Hash-Anchor Component Styles
   ========================================================================== */
.services-subnav-wrapper {
  position: sticky;
  top: 140px;
  z-index: 40;
  padding: 0.85rem 0;
  background: rgba(6, 17, 36, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  transition: all var(--transition);
}

.services-subnav-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-subnav-list::-webkit-scrollbar {
  display: none;
}

.service-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}

.service-pill-btn:hover,
.service-pill-btn.active {
  background: linear-gradient(135deg, rgba(176, 108, 255, 0.25), rgba(246, 184, 75, 0.25));
  border-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(246, 184, 75, 0.25);
  transform: translateY(-2px);
}

.service-block-item {
  scroll-margin-top: 140px;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.service-block-item:last-of-type {
  border-bottom: none;
}

.service-detail-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.service-detail-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(246, 184, 75, 0.12);
  border: 1px solid rgba(246, 184, 75, 0.35);
  color: var(--secondary-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.service-metric-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  background: rgba(176, 108, 255, 0.15);
  border: 1px solid rgba(176, 108, 255, 0.35);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem 1.5rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.service-features-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--secondary);
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.service-tech-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

/* Tablets Portrait & Large Handhelds (577px - 768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.75rem;
  }

  .footer-brand-name {
    font-size: 1.35rem;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.15rem;
  }

  .footer-contact-item {
    padding: 0.65rem 0.8rem;
    gap: 0.75rem;
  }

  .footer-map-wrapper iframe {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-top: 3rem;
  }

  .footer-tagline-pill {
    margin: 0 auto;
  }

  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 1.5rem;
    bottom: 5.75rem;
    width: 44px;
    height: 44px;
  }
}

/* Standard Mobile Handsets (376px - 640px) */
@media (max-width: 640px) {
  .brand {
    padding: 4px 10px;
    border-radius: 12px;
  }

  .brand-logo {
    height: 40px;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-shell,
  .contact-panel {
    padding: 1.75rem 1.25rem;
  }

  .stats-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
  }

  .nav-links {
    left: 0.85rem;
    right: 0.85rem;
    max-width: calc(100vw - 1.7rem);
    padding: 1.1rem 0.85rem;
  }

  .site-footer {
    padding: 3.5rem 0 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo-wrap {
    margin-bottom: 1rem;
  }

  .footer-about-text {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }

  .footer-social-row {
    gap: 0.65rem;
  }

  .footer-social-btn {
    width: 42px;
    height: 42px;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.5rem;
  }

  .footer-nav-list {
    gap: 0.7rem;
  }

  .footer-nav-link {
    font-size: 0.92rem;
    padding: 0.25rem 0;
  }

  .footer-contact-list {
    gap: 0.8rem;
  }

  .footer-contact-item {
    padding: 0.75rem 0.85rem;
  }

  .footer-contact-val {
    font-size: 0.88rem;
  }

  .footer-map-wrapper iframe {
    height: 185px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding-top: 1.35rem;
    margin-top: 2.75rem;
    font-size: 0.825rem;
  }

  .footer-tagline-pill {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .whatsapp-float {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 1.25rem;
    bottom: 5.25rem;
    width: 42px;
    height: 42px;
  }
}

/* Ultra-Small & Compact Devices / Foldables (max-width: 375px) */
@media (max-width: 375px) {
  .nav-links {
    left: 0.6rem;
    right: 0.6rem;
    max-width: calc(100vw - 1.2rem);
    padding: 0.9rem 0.65rem;
    border-radius: 16px;
  }

  .nav-links a,
  .dropdown-toggle {
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }

  .dropdown-menu a {
    padding: 0.55rem 0.75rem;
    font-size: 0.84rem;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 1.85rem;
  }

  .footer-logo {
    height: 38px;
  }

  .footer-brand-name {
    font-size: 1.3rem;
  }

  .footer-about-text {
    font-size: 0.86rem;
  }

  .footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .footer-social-btn svg {
    width: 16px;
    height: 16px;
  }

  .footer-heading {
    font-size: 1.05rem;
  }

  .footer-nav-link {
    font-size: 0.88rem;
  }

  .footer-contact-item {
    padding: 0.65rem 0.75rem;
    gap: 0.65rem;
  }

  .footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .footer-contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .footer-contact-label {
    font-size: 0.68rem;
  }

  .footer-contact-val,
  .footer-contact-info a {
    font-size: 0.84rem;
    word-break: break-all;
  }

  .footer-map-wrapper iframe {
    height: 160px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .footer-tagline-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 4.5rem;
    width: 38px;
    height: 38px;
  }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
