/* ==========================================================================
   MARUTHAMALAI Andavar TOOLS - MODERN DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & THEME TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors - Dark burnt-orange gradient & Navy */
  --primary: #040F1F;
  --primary-light: #0D2A52;
  --primary-deep: #020812;
  --secondary: #E65100;
  --secondary-dark: #B73200;
  --secondary-light: #FF6F00;
  --accent: #FFC107;
  --accent-glow: #FFE082;

  /* Neutral Shades */
  --bg: #FFFFFF;
  --bg-alt: #F4F7FA;
  --bg-card: rgba(255, 255, 255, 0.96);
  --text: #0F172A;
  --text-muted: #64748B;
  --border-light: rgba(226, 232, 240, 0.8);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #020812 0%, #040F1F 45%, #0D2A52 100%);
  --grad-orange: linear-gradient(135deg, #B73200 0%, #E65100 48%, #FF6F00 100%);
  --grad-orange-hover: linear-gradient(135deg, #D93B00 0%, #F55900 50%, #FF8000 100%);
  --grad-dark-glass: linear-gradient(135deg, rgba(13, 42, 82, 0.82) 0%, rgba(4, 15, 31, 0.94) 100%);
  --grad-mesh: radial-gradient(circle at 10% 20%, rgba(230, 81, 0, 0.12), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(13, 42, 82, 0.15), transparent 45%);

  /* Shadows & Elevation */
  --shadow-xs: 0 4px 12px rgba(4, 15, 31, 0.06);
  --shadow-soft: 0 16px 38px -10px rgba(4, 15, 31, 0.14);
  --shadow-hard: 0 30px 70px -15px rgba(4, 15, 31, 0.28);
  --shadow-orange: 0 14px 34px -6px rgba(230, 81, 0, 0.45);
  --shadow-orange-lg: 0 22px 55px -10px rgba(230, 81, 0, 0.6);
  --shadow-glow: 0 0 28px rgba(230, 81, 0, 0.35);

  /* Radius & Motion */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-height: 84px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL BASE & TYPOGRAPHY
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.15;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

section {
  position: relative;
  padding: clamp(80px, 10vw, 150px) 0;
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  background: var(--secondary-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  z-index: 10002;
  transition: top 0.3s var(--ease);
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* Section Header Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--grad-orange);
  display: inline-block;
  border-radius: 3px;
  flex-shrink: 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.3s var(--ease);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.btn i {
  transition: transform 0.35s var(--ease);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--grad-orange-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-orange-lg);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-4px) scale(1.02);
  border-color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 16px 36px -10px rgba(4, 15, 31, 0.45);
}

.btn-dark:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px -10px rgba(4, 15, 31, 0.6);
}

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

@keyframes rippleAnim {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   4. LOADER & SCROLL INDICATORS
   -------------------------------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--grad-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  text-align: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: clamp(14px, 4.5vw, 24px);
  letter-spacing: clamp(1px, 0.5vw, 3px);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.loader-logo-img {
  height: clamp(65px, 14vw, 90px);
  width: auto;
  border-radius: 20px;
  background: #000000;
  padding: 8px;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 30px rgba(230, 81, 0, 0.45);
  margin-bottom: 0;
}

.loader-logo span {
  color: var(--secondary-light);
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--grad-orange);
  animation: loadingBar 1.4s ease-in-out infinite;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(250%);
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-orange);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: var(--shadow-glow);
}

.mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s var(--ease);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION BAR
   -------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}

header.scrolled {
  background: rgba(4, 15, 31, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.site-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}

.logo:hover .site-logo-img {
  transform: scale(1.06);
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  font-size: 17px;
}

.logo-text small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: var(--secondary-light);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 0;
  background: var(--grad-orange);
  transition: width 0.35s var(--ease);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-btn {
  background: var(--grad-orange);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow-orange);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-orange-lg);
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary);
  z-index: 1100;
  transition: right 0.4s var(--ease);
  padding: 90px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-close {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020812;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(1.1);
  transform: scale(1.1);
  transition: transform 0.2s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 8, 18, 0.96) 20%, rgba(4, 15, 31, 0.75) 55%, rgba(13, 42, 82, 0.4) 100%),
    linear-gradient(0deg, rgba(2, 8, 18, 0.85) 0%, transparent 35%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .6) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}

.blob1 {
  width: 480px;
  height: 480px;
  background: var(--secondary);
  top: -100px;
  right: 5%;
  animation: float1 11s ease-in-out infinite;
}

.blob2 {
  width: 360px;
  height: 360px;
  background: var(--accent);
  bottom: -80px;
  right: 25%;
  animation: float2 13s ease-in-out infinite;
}

.blob3 {
  width: 280px;
  height: 280px;
  background: #0D2A52;
  top: 25%;
  left: -80px;
  animation: float2 15s ease-in-out infinite;
  opacity: 0.45;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 40px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -30px);
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--secondary-light);
  border-radius: 50%;
  opacity: 0.5;
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  15% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(25px);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

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

.hero-text .eyebrow::before {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.hero-text h1 {
  font-size: clamp(38px, 5.8vw, 72px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-text h1 .line1 {
  display: block;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.2s;
}

.hero-text h1 .line2 {
  display: block;
  opacity: 0;
  background: linear-gradient(100deg, var(--secondary-light) 0%, var(--secondary) 40%, var(--accent) 80%, var(--secondary-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.85s var(--ease) forwards 0.4s, shimmer 7s linear infinite 1.2s;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 300;
  max-width: 530px;
  margin-bottom: 38px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.8s;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-live-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.9s;
}

.tool-card-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.tool-card-float:hover {
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 81, 0, 0.5);
  transform: translateY(-8px) scale(1.03);
}

.tf1 {
  width: 210px;
  top: 15px;
  left: 10px;
  animation: floatCard 6.5s ease-in-out infinite;
  z-index: 1;
}

.tf2 {
  width: 200px;
  bottom: 25px;
  left: 45px;
  animation: floatCard 7.5s ease-in-out infinite 1s;
  z-index: 2;
}

.tf3 {
  width: 190px;
  top: 140px;
  right: 15px;
  animation: floatCard 5.5s ease-in-out infinite 0.5s;
  z-index: 3;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1.5deg);
  }
}

.tool-card-float img {
  border-radius: 14px;
  width: 100%;
  height: 115px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
}

.tool-card-float .tf-label {
  color: #fff;
  font-size: 13px;
  margin-top: 12px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-card-float .tf-label i {
  color: var(--secondary-light);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 300;
}

.scroll-cue .dot-track {
  width: 2px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-cue .dot-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: var(--grad-orange);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: -14px;
  }

  100% {
    top: 38px;
  }
}

/* --------------------------------------------------------------------------
   7. STICKY OVERLAPPING CARD STACKING ENGINE (MOBILE & DESKTOP DECK UX)
   -------------------------------------------------------------------------- */
.stacking-container,
.stack-container {
  position: relative;
}

/* Base stack card styling */
.stack-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
  will-change: transform, filter;
}

/* --------------------------------------------------------------------------
   8. TRUST BAR SECTION
   -------------------------------------------------------------------------- */
.trust-bar {
  padding: clamp(50px, 6vw, 84px) 0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 32px 18px;
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 1px solid #EEF2F6;
  background: #fff;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform 0.4s var(--ease);
}

.trust-card:hover .trust-icon {
  transform: scale(1.1) rotate(-6deg);
}

.trust-card h4 {
  font-size: 15px;
  color: var(--primary);
  letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   9. TOOLS SECTION WITH FILTER TABS
   -------------------------------------------------------------------------- */
.tools-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover {
  color: var(--primary);
  border-color: rgba(230, 81, 0, 0.4);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.tool-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 0.4s var(--ease);
  position: relative;
  border: 1px solid rgba(4, 15, 31, 0.06);
  display: flex;
  flex-direction: column;
}

.tool-card.hidden {
  display: none;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hard);
  border-color: rgba(230, 81, 0, 0.25);
}

.tool-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--grad-primary);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tool-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.tool-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 15, 31, 0.35));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.tool-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.tool-card:hover .tool-img img {
  transform: scale(1.12);
}

.tool-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tool-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.tool-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.tool-price {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  color: var(--secondary-dark);
  font-weight: 600;
}

.tool-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.tool-btn-rent {
  background: var(--grad-orange);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tool-btn-rent:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-orange);
}

/* --------------------------------------------------------------------------
   10. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-areas:
    "img header"
    "img details";
  gap: 0 clamp(40px, 5vw, 70px);
  align-items: start;
}

.about-header {
  grid-area: header;
}

.about-header h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 8px;
}

.about-img {
  grid-area: img;
  position: relative;
}

.about-details {
  grid-area: details;
}

.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--grad-primary);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.about-badge .lbl {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

.proprietor-block {
  margin: 20px 0 24px;
}

.proprietor-block .eyebrow {
  margin-bottom: 6px;
}

.proprietor-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  margin: 0;
}

.about-check {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.about-check li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
  font-size: 15.5px;
}

.about-check i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(230, 81, 0, 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.about-check li:hover i {
  background: var(--grad-orange);
  color: #fff;
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   11. WHY US SECTION (STICKY CARD DECK ENGINE WITH FOCUS ORANGE ILLUMINATION)
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--grad-primary);
  color: #fff;
  position: relative;
  overflow: visible !important;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

.why-section .section-head h2,
.why-section .eyebrow {
  color: #fff;
}

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

.why-section .eyebrow::before {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.why-section .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.why-section .stack-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  position: relative !important;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 160px !important;
}

.why-card.stack-card {
  position: sticky !important;
  top: calc(90px + var(--stack-index, 1) * 18px) !important;
  z-index: calc(5 + var(--stack-index, 1)) !important;
  background: #0D2A52 !important;
  color: #ffffff !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35), 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
  will-change: transform, filter;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

/* Card turns Vibrant Dark Burnt-Orange upon Hover, Focus, or Active Stack Focus */
.why-card.stack-card:hover,
.why-card.stack-card:focus,
.why-card.stack-card:focus-within,
.why-card.stack-card.active-card {
  background: var(--grad-orange) !important;
  border-color: transparent !important;
  box-shadow: 0 25px 65px -10px rgba(230, 81, 0, 0.65), 0 0 35px rgba(255, 111, 0, 0.4) !important;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--secondary-light);
  margin-bottom: 22px;
  background: rgba(230, 81, 0, 0.15);
  transition: transform 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
}

.why-card.stack-card:hover .why-icon,
.why-card.stack-card:focus .why-icon,
.why-card.stack-card:focus-within .why-icon,
.why-card.stack-card.active-card .why-icon {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  transform: scale(1.12) rotate(-6deg);
}

.why-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.why-card.stack-card:hover p,
.why-card.stack-card:focus p,
.why-card.stack-card:focus-within p,
.why-card.stack-card.active-card p {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS & SEQUENTIAL STEP CIRCLE ILLUMINATION ON SCROLL
   -------------------------------------------------------------------------- */
.steps-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.steps-line {
  position: absolute;
  top: 47px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #E2E8F0 0 10px, transparent 10px 20px);
  z-index: 0;
}

.steps-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--grad-orange);
  transition: width 1.4s var(--ease);
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--secondary);
  box-shadow: 0 12px 28px rgba(230, 81, 0, 0.22);
  transition: transform 0.5s var(--ease-bounce), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.step-card.active-step .step-num {
  background: var(--grad-orange) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: scale(1.12);
  box-shadow: var(--shadow-orange-lg), 0 0 30px rgba(230, 81, 0, 0.5) !important;
}

.step-btn {
  margin-top: 18px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  color: var(--text-muted);
  border: 1.5px solid #E2E8F0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}

.step-card.active-step .step-btn {
  background: var(--grad-orange) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-orange), 0 0 20px rgba(230, 81, 0, 0.4) !important;
  transform: translateY(-3px) scale(1.05);
}

.step-cta-btn {
  transition: background 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.step-cta-btn.illuminated {
  background: var(--grad-orange-hover) !important;
  box-shadow: var(--shadow-orange-lg), 0 0 35px rgba(255, 111, 0, 0.5) !important;
  transform: translateY(-4px) scale(1.06);
}

.step-card.active-step h4 {
  color: var(--secondary-dark);
}

.step-card:hover .step-num {
  background: var(--grad-orange);
  color: #fff;
  transform: scale(1.14);
  box-shadow: var(--shadow-orange-lg);
}

.step-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. RENTAL PRICING PLANS
   -------------------------------------------------------------------------- */
.pricing-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 46px 36px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hard);
}

.price-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 25px 65px -15px rgba(230, 81, 0, 0.32);
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-orange);
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-orange);
}

.price-plan {
  color: var(--secondary-dark);
  font-weight: 600;
  letter-spacing: 2.5px;
  font-size: 13px;
  margin-bottom: 14px;
}

.price-amt {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.price-amt span {
  font-size: 14.5px;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.price-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #334155;
  font-weight: 300;
}

.price-list i {
  color: var(--secondary);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   14. GALLERY & TESTIMONIALS
   -------------------------------------------------------------------------- */
.gallery-grid {
  columns: 4 250px;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(4, 15, 31, 0.1);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hard);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.75s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 18, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transform: translateY(8px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.testi-section {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

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

.testi-section .eyebrow::before {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.testi-section .section-head h2 {
  color: #fff;
}

.testi-section .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------------------------------
   3D PEEKING CAROUSEL (Ref: Testimonials.jsx)
   -------------------------------------------------------------------------- */
.testi-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-carousel-stage {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 1000px;
}

.testi-card {
  position: absolute;
  width: 82%;
  max-width: 520px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.6s cubic-bezier(0.32, 0.72, 0, 1), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
}

/* Inactive Peeking Card Styling (White card peeking at sides) */
.testi-card.inactive-card {
  background: #ffffff !important;
  color: var(--text) !important;
  border-color: rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15) !important;
}

.testi-card.inactive-card p.quote {
  color: #475569 !important;
}

.testi-card.inactive-card .testi-person h5 {
  color: var(--primary) !important;
}

.testi-card.inactive-card .testi-person span {
  color: var(--secondary) !important;
}

.testi-card.inactive-card .quote-bg {
  color: rgba(0, 0, 0, 0.05) !important;
}

/* Active Card Styling (Dark Navy Abyssal Theme with Gold Glow) */
.testi-card.active-card {
  background: var(--primary-deep) !important;
  color: #fff !important;
  border-color: rgba(230, 81, 0, 0.5) !important;
  box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.55), 0 0 35px rgba(230, 81, 0, 0.3) !important;
}

.testi-card.active-card p.quote {
  color: rgba(255, 255, 255, 0.92) !important;
}

.testi-card.active-card .testi-person h5 {
  color: #fff !important;
}

.testi-card.active-card .testi-person span {
  color: var(--accent) !important;
}

.quote-bg {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transform: rotate(-10deg);
  transition: color 0.5s ease;
}

.testi-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 3px;
}

.testi-card p.quote {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--secondary);
}

.testi-person h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testi-person span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav Buttons */
.testi-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 30;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s var(--ease);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testi-nav-btn.prev {
  left: -20px;
}

.testi-nav-btn.next {
  right: -20px;
}

.testi-nav-btn:hover {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-orange);
}

.testi-person h5 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.testi-person span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: none;
}

.testi-dot.active {
  background: var(--grad-orange);
  width: 30px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   15. STATS & FAQ
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--grad-orange);
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 5vw, 65px) 0;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.2), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.15), transparent 40%);
  pointer-events: none;
}

.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  text-align: center;
  color: #fff;
  position: relative;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4.5vw, 56px);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.stat-lbl {
  font-size: clamp(9.5px, 1.8vw, 13px);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 4px;
  font-weight: 500;
  white-space: nowrap;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  background: #fff;
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-item.open {
  border-color: var(--secondary);
  box-shadow: 0 14px 30px -10px rgba(230, 81, 0, 0.18);
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: var(--primary);
  font-size: 16px;
}

.faq-q i {
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
  color: var(--secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(230, 81, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-q i {
  transform: rotate(135deg);
  background: var(--grad-orange);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-a p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   16. CONTACT & FOOTER
   -------------------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
}

.contact-store-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.store-img-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 15, 31, 0.12);
  border: 1px solid rgba(4, 15, 31, 0.08);
  background: #ffffff;
}

.store-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.store-img-card:hover img {
  transform: scale(1.04);
}

.store-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(4, 15, 31, 0.88);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.store-badge:hover {
  background: var(--grad-orange);
  border-color: transparent;
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-orange-lg);
  color: #ffffff;
}

.store-badge i {
  color: var(--secondary-light);
  transition: color 0.3s ease;
}

.store-badge:hover i {
  color: #ffffff;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.merged-contact-card {
  background: #ffffff;
  border: 1.5px solid rgba(230, 81, 0, 0.25);
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.08);
}

.merged-card-content {
  flex: 1;
}

.phone-display {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--primary) !important;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.contact-action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-contact-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-contact-action.btn-call {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4, 15, 31, 0.2);
}

.btn-contact-action.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 15, 31, 0.3);
}

.btn-contact-action.btn-wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-contact-action.btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.info-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}

.info-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.proprietor-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 15.5px;
}

.info-link-p {
  margin: 0;
}

.info-link {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}

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

  .store-img-card {
    min-height: 280px;
    max-height: 360px;
  }
}

.contact-form {
  background: #fff;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  background: #F8FAFC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.12);
  background: #fff;
}

.form-full {
  grid-column: 1 / -1;
}

.cta-banner {
  background: var(--grad-orange);
  text-align: center;
  padding: clamp(65px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 40%);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(30px, 4.8vw, 52px);
  margin-bottom: 16px;
  position: relative;
  letter-spacing: 0.5px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  font-size: 16.5px;
  font-weight: 300;
  position: relative;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
}

footer {
  background: var(--grad-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 7vw, 90px) 0 0;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 81, 0, 0.6), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul li i {
  color: var(--secondary-light);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  word-break: break-all;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--secondary-light);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.social-row a:hover {
  background: var(--grad-orange);
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.webbino-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
}

.webbino-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.webbino-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.webbino-link:hover .webbino-logo-img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   17. FLOATING BUTTONS & MODALS
   -------------------------------------------------------------------------- */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
  animation: pulseWa 2.6s ease-in-out infinite;
  transition: transform 0.35s var(--ease);
}

.floating-wa:hover {
  transform: scale(1.1);
}

@keyframes pulseWa {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 20px 42px rgba(37, 211, 102, 0.65);
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s var(--ease);
  box-shadow: 0 12px 28px rgba(4, 15, 31, 0.35);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(4, 15, 31, 0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Quick Rent Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.78);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease-bounce);
}

/* Category Varieties Modal (Ref: Materials.jsx) */
.category-modal-box {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease-bounce);
  border: 1px solid rgba(4, 15, 31, 0.1);
}

/* Fullscreen Project Gallery (Ref: Gallery.jsx) */
.gallery-section {
  position: relative;
  background: #F8FAFC;
  overflow: hidden;
  padding: clamp(60px, 10vw, 100px) 0;
}

.gallery-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.relative-z {
  position: relative;
  z-index: 10;
}

.gallery-flex-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 2vw, 24px);
  width: 100%;
}

.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: clamp(8px, 1.5vw, var(--radius-lg));
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(4, 15, 31, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 1px solid #E2E8F0;
  background: #ffffff;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 22px 50px rgba(4, 15, 31, 0.22);
  border-color: var(--secondary);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-card img[src$=".png"] {
  object-fit: contain;
  background: #f1f5f9;
  padding: 12px;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 31, 0.35);
  opacity: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  color: #ffffff;
  font-size: clamp(18px, 3.5vw, 38px);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease-bounce);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Fullscreen Gallery Lightbox Modal (Ref: Gallery.jsx) */
.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.gallery-lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.95);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100002;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.lightbox-close-btn:hover {
  background: #EF4444;
  border-color: transparent;
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100002;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.lightbox-nav-btn.prev {
  left: 24px;
}

.lightbox-nav-btn.next {
  right: 24px;
}

.lightbox-nav-btn:hover {
  background: var(--grad-orange);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-orange);
}

.lightbox-content-box {
  position: relative;
  z-index: 100001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
  pointer-events: none;
}

.lightbox-content-box img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: auto;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-bounce);
}

.gallery-lightbox-overlay.open .lightbox-content-box img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#lightboxCounter {
  color: var(--accent);
  font-weight: 600;
}

.modal-overlay.open .category-modal-box {
  transform: scale(1) translateY(0);
}

.category-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid #EEF2F6;
  background: #F8FAFC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-modal-header h3 {
  font-size: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.category-modal-header p {
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-modal-body {
  padding: 28px 30px;
  overflow-y: auto;
  max-height: 55vh;
}

.category-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.variety-pill {
  padding: 10px 18px;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  user-select: none;
}

.variety-pill:hover {
  background: #FFF7ED;
  border-color: var(--secondary);
  color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 81, 0, 0.15);
}

.category-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #EEF2F6;
  background: #F8FAFC;
  display: flex;
  justify-content: center;
}

.cat-explore-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: var(--grad-primary);
  color: #fff;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-body {
  padding: 30px;
}

.modal-tool-info {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.modal-tool-info img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.modal-tool-details h4 {
  font-size: 19px;
  margin-bottom: 6px;
}

.modal-tool-details p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.modal-calc-box {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.modal-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.modal-calc-row:last-child {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  font-weight: 600;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   18. REVEAL UTILITY ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal-stagger.visible .stagger-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal-stagger .stagger-item:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger .stagger-item:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger .stagger-item:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-stagger .stagger-item:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-stagger .stagger-item:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-stagger .stagger-item:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-stagger .stagger-item:nth-child(7) {
  transition-delay: 0.35s;
}

.reveal-stagger .stagger-item:nth-child(8) {
  transition-delay: 0.4s;
}

.reveal-stagger .stagger-item:nth-child(9) {
  transition-delay: 0.45s;
}

.reveal-stagger .stagger-item:nth-child(10) {
  transition-delay: 0.5s;
}

.reveal-stagger .stagger-item:nth-child(11) {
  transition-delay: 0.55s;
}

.reveal-stagger .stagger-item:nth-child(12) {
  transition-delay: 0.6s;
}

.reveal-stagger .stagger-item:nth-child(13) {
  transition-delay: 0.65s;
}

.reveal-stagger .stagger-item:nth-child(14) {
  transition-delay: 0.7s;
}

.reveal-stagger .stagger-item:nth-child(15) {
  transition-delay: 0.75s;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS & MOBILE CARD DECK OVERLAP UX
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 36px;
  }

  .steps-wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .steps-line {
    display: none;
  }

  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .about-header {
    order: 1;
  }

  .about-img {
    order: 2;
    margin-bottom: 24px;
  }

  .about-details {
    order: 3;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .gallery-grid {
    columns: 2 220px;
  }

  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-right .call-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  /* Mobile Stacking Card Deck Engine - First card locks top, subsequent cards slide directly over it */
  .tools-grid.stacking-container,
  .pricing-grid,
  .stack-container,
  .contact-info-col.stacking-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    position: relative;
    padding-bottom: 40px;
  }

  .tool-card.stack-card,
  .price-card.stack-card,
  .info-card.stack-card {
    position: sticky !important;
    top: calc(75px + var(--stack-index, 1) * 12px) !important;
    z-index: calc(5 + var(--stack-index, 1)) !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 0 -10px 30px rgba(4, 15, 31, 0.12), 0 20px 45px rgba(4, 15, 31, 0.16) !important;
    border: 1px solid rgba(4, 15, 31, 0.08) !important;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease), box-shadow 0.4s var(--ease) !important;
    will-change: transform, filter;
    margin-bottom: 12px;
  }

  .why-section .why-card.stack-card {
    position: sticky !important;
    top: calc(75px + var(--stack-index, 1) * 12px) !important;
    z-index: calc(5 + var(--stack-index, 1)) !important;
    background: #0D2A52 !important;
    color: #ffffff !important;
    border-radius: 24px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35), 0 20px 50px rgba(0, 0, 0, 0.45) !important;
    margin-bottom: 12px;
  }

  .why-section .why-card.stack-card.active-card,
  .why-section .why-card.stack-card:hover,
  .why-section .why-card.stack-card:focus,
  .why-section .why-card.stack-card:focus-within {
    background: var(--grad-orange) !important;
    border-color: transparent !important;
    box-shadow: 0 25px 65px -10px rgba(230, 81, 0, 0.65), 0 0 35px rgba(255, 111, 0, 0.4) !important;
  }

  .price-card.stack-card.popular {
    transform: none !important;
  }

  /* Mobile Contact Action Buttons - match desktop proportions */
  .contact-action-btns {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .btn-contact-action {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding-bottom: 40px;
  }

  .footer-col:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-row {
    justify-content: center;
  }

  .footer-col:nth-child(2) {
    grid-column: 1;
    text-align: left;
  }

  .footer-col:nth-child(3) {
    grid-column: 2;
    text-align: left;
  }

  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
  }

  .footer-col:nth-child(4) ul {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  section {
    padding: clamp(60px, 12vw, 84px) 0;
  }

  .gallery-grid {
    columns: 1 100%;
  }

  .about-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .eyebrow {
    font-size: clamp(10.5px, 2.7vw, 12px);
    letter-spacing: clamp(1.2px, 0.4vw, 2.2px);
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
  }

  .eyebrow::before {
    width: 24px;
    height: 2.5px;
    flex-shrink: 0;
  }

  /* Testimonial Carousel - Responsive Desktop-like Shape & Scaled Typography */
  .testi-carousel-stage {
    height: 270px;
  }

  .testi-card {
    width: 90%;
    max-width: 480px;
    padding: 20px 22px;
    border-radius: 18px;
  }

  .testi-stars {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }

  .testi-card p.quote {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .testi-person h5 {
    font-size: 14px;
  }

  .testi-person span {
    font-size: 11.5px;
  }

  .quote-bg {
    font-size: 38px;
    top: 12px;
    right: 16px;
  }
}

@media (max-width: 420px) {
  .hero-text h1 {
    font-size: clamp(32px, 8.5vw, 40px);
  }

  .btn {
    padding: 14px 26px;
    font-size: 13px;
  }

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

  .eyebrow {
    font-size: 9.5px;
    letter-spacing: 1px;
    gap: 6px;
    white-space: nowrap;
  }

  .eyebrow::before {
    width: 18px;
    height: 2px;
    flex-shrink: 0;
  }

  .testi-carousel-stage {
    height: 250px;
  }

  .testi-card {
    width: 94%;
    padding: 16px 18px;
  }

  .testi-card p.quote {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .testi-stars {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .contact-action-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .btn-contact-action {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 12px !important;
    font-size: 12.5px !important;
  }

  .phone-display {
    font-size: 16px !important;
  }

  .info-card {
    padding: 14px 12px !important;
    gap: 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}