/* =========================================================
   GAYATRI ENTERPRISE - MASTER STYLE SHEET (REV 5)
   Blue Lotus × Steel Palette | Fully Responsive
========================================================= */

/* =========================================================
   CSS CUSTOM PROPERTIES
========================================================= */
:root {
  --blue-deep: #0a1628;
  --blue-mid: #0d2147;
  --blue-lotus: #1a4a8a;
  --blue-bright: #2467cc;
  --lotus-petal: #3a7bd5;
  --lotus-accent: #5b9de8;
  --steel-light: #c8d6e8;
  --steel-silver: #b0bec5;
  --steel-shine: #e8eef5;
  --gold-accent: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --text-body: #2c3e55;
  --text-muted: #6b7e9a;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2147 40%, #1a3a6e 70%, #0f2850 100%);
  --gradient-steel: linear-gradient(135deg, #b0bec5, #e8eef5, #9eaebe);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f5fc 100%);
  --shadow-card: 0 8px 32px rgba(10, 22, 40, 0.10), 0 2px 8px rgba(26, 74, 138, 0.08);
  --shadow-hover: 0 20px 60px rgba(10, 22, 40, 0.18), 0 4px 16px rgba(26, 74, 138, 0.14);
  --radius-card: 16px;
  --radius-btn: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET & BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

h5,
h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

/* =========================================================
   SCROLLBAR
========================================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--blue-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--lotus-petal);
  border-radius: 3px;
}

/* =========================================================
   LOADER
========================================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-lotus {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(91, 157, 232, 0.2);
  border-top-color: var(--lotus-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: var(--steel-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

/* =========================================================
   NAVBAR
========================================================= */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0;
  background: transparent;
  transition: var(--transition);
}

#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.brand-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--lotus-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links>li>a {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--white);
  background: rgba(91, 157, 232, 0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-lotus), var(--blue-bright)) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  box-shadow: 0 4px 16px rgba(36, 103, 204, 0.35);
}

/* MEGA MENU */
.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(91, 157, 232, 0.15);
  border-radius: 16px;
  padding: 28px;
  width: 780px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: megaFadeIn 0.25s ease;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.has-mega:hover .mega-menu {
  display: grid;
}

.mega-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mega-link {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  padding: 5px 0;
  text-decoration: none;
  transition: var(--transition);
}

.mega-link:hover {
  color: var(--lotus-accent);
  padding-left: 6px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 3000;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO
========================================================= */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(91, 157, 232, 0.15);
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes floatParticle {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  to {
    transform: translate(var(--tx, 20px), var(--ty, -30px)) scale(1.2);
    opacity: 0.6;
  }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(91, 157, 232, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 157, 232, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 157, 232, 0.12);
  border: 1px solid rgba(91, 157, 232, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--lotus-accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 15px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title .accent {
  color: var(--lotus-accent);
}

.hero-title .steel-text {
  background: var(--gradient-steel);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--blue-lotus), var(--blue-bright));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(36, 103, 204, 0.4);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(36, 103, 204, 0.55);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--steel-light);
  border: 1.5px solid rgba(200, 214, 232, 0.35);
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-custom:hover {
  background: rgba(200, 214, 232, 0.08);
  border-color: var(--steel-light);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: fadeUp 0.8s 0.6s ease both;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number span {
  color: var(--gold-accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-float {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 157, 232, 0.2);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.services-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-preview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.services-preview-list li i {
  color: var(--lotus-accent);
  width: 16px;
  text-align: center;
}

.hero-card-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 16px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* =========================================================
   SECTION HEADERS
========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-lotus);
  background: rgba(26, 74, 138, 0.07);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blue-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.title-line {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-lotus), var(--lotus-accent));
  border-radius: 2px;
  margin-bottom: 12px;
}

/* =========================================================
   VALUE PILLARS
========================================================= */
#pillars {
  background: var(--blue-deep);
  overflow: hidden;
  position: relative;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 157, 232, 0.12);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 157, 232, 0.35);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(36, 103, 204, 0.25), rgba(91, 157, 232, 0.1));
  border: 1px solid rgba(91, 157, 232, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--lotus-accent);
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.pillar-card p {
  color: var(--steel-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(200, 214, 232, 0.8);
  font-size: 0.85rem;
}

.pillar-features li i {
  color: var(--gold-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.steel-accent-bar {
  width: 100%;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* =========================================================
   SERVICE GRID
========================================================= */
#services {
  background: var(--off-white);
}

.services-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1.5px solid rgba(26, 74, 138, 0.2);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-lotus);
  color: var(--white);
  border-color: var(--blue-lotus);
  box-shadow: 0 4px 16px rgba(26, 74, 138, 0.25);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(26, 74, 138, 0.08);
  border-radius: var(--radius-card);
  padding: 25px 20px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card .s-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(26, 74, 138, 0.08), rgba(91, 157, 232, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-lotus);
  margin-bottom: 16px;
}

.service-card h5 {
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.service-cat-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  color: var(--blue-lotus);
  background: rgba(26, 74, 138, 0.07);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* =========================================================
   CONTACT FORM
========================================================= */
#contact {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 157, 232, 0.15);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.form-label-custom {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(91, 157, 232, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  width: 100%;
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--lotus-petal);
  background: rgba(91, 157, 232, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--blue-lotus), var(--blue-bright));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(36, 103, 204, 0.4);
  width: 100%;
}

.form-error {
  font-size: 0.78rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 12px;
  padding: 20px;
  color: #4ade80;
  display: none;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.why-card:hover {
  background: var(--off-white);
  transform: translateX(4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-lotus), var(--lotus-petal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}

/* =========================================================
   FOOTER
========================================================= */
#footer {
  background: var(--blue-deep);
  border-top: 1px solid rgba(91, 157, 232, 0.1);
  padding: 80px 0 30px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  display: flex;
  align-items: center;
  color: rgba(200, 214, 232, 0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-links a i {
  width: 18px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--lotus-accent);
  padding-left: 4px;
}

.footer-divider {
  border-color: rgba(91, 157, 232, 0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(91, 157, 232, 0.1);
  border: 1px solid rgba(91, 157, 232, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue-lotus);
  color: var(--white);
}

/* =========================================================
   GLOBAL UI ELEMENTS
========================================================= */
#whatsappBtn {
  display: flex !important;
  width: 60px;
  height: 60px;
  bottom: 110px;
  right: 30px;
  z-index: 5000 !important;
  font-size: 2.2rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: fixed;
  transition: all 0.3s ease;
  animation: pulseWhatsApp 2s infinite;
}

#whatsappBtn:hover {
  transform: scale(1.1);
  background: #20b858;
}

#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  width: 50px;
  height: 50px;
  background: var(--lotus-accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

#backTop.show {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   MOBILE NAV LOGIC
========================================================= */
.mobile-nav {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(10, 22, 40, 0.99);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--lotus-accent);
}

/* =========================================================
   ANIMATIONS
========================================================= */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.65s ease;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================================
   DEEP RESPONSIVENESS (REV 5 - STABILITY FIX)
========================================================= */
@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0 !important;
  }

  .nav-links,
  .mega-menu {
    display: none !important;
  }

  #mainNav {
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(10, 22, 40, 0.98) !important;
    z-index: 2500;
  }

  .nav-inner {
    padding: 0 15px !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .brand-logo {
    width: 34px !important;
    height: 34px !important;
  }

  .brand-name {
    font-size: 1rem !important;
  }

  .brand-tagline {
    display: none !important;
  }

  .nav-toggle {
    display: block !important;
    color: #fff;
    font-size: 1.4rem;
  }

  #hero {
    padding-top: 70px !important;
  }

  .hero-content {
    padding: 30px 0 !important;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px !important;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  #whatsappBtn {
    width: 54px !important;
    height: 54px !important;
    bottom: 85px !important;
    right: 20px !important;
    font-size: 1.8rem !important;
  }

  #backTop {
    width: 42px !important;
    height: 42px !important;
    bottom: 25px !important;
    right: 20px !important;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem !important;
  }

  .hero-title {
    font-size: 1.9rem !important;
  }

  .hero-stat-item {
    flex-basis: 45%;
  }

  .stat-number {
    font-size: 2rem !important;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-links a {
    font-size: 0.74rem !important;
    letter-spacing: -0.2px;
  }
}


@media (min-width: 992px) {
  .foot {
    flex: 0 0 auto;
    width: 27.333333%;
  }
}