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

/* ---- CSS Variables ---- */
:root {
  --primary: #0a1f5c;
  --primary-light: #1a3a8f;
  --accent: #f0a500;
  --accent-light: #ffd166;
  --white: #ffffff;
  --light-bg: #f4f7ff;
  --card-bg: #ffffff;
  --text-dark: #0d1b3e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: rgba(10, 31, 92, 0.12);
  --shadow: 0 10px 40px rgba(10, 31, 92, 0.12);
  --shadow-hover: 0 20px 60px rgba(10, 31, 92, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient-primary: linear-gradient(135deg, #0a1f5c 0%, #1a3a8f 50%, #2954c8 100%);
  --gradient-accent: linear-gradient(135deg, #f0a500 0%, #ffd166 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 31, 92, 0.92) 0%, rgba(26, 58, 143, 0.75) 60%, rgba(41, 84, 200, 0.5) 100%);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ---- Keyframe Animations ---- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 165, 0, 0.6);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(240, 165, 0, 0);
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
  }

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

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.8);
  }
}

@keyframes slideInBg {
  from {
    transform: scale(1.1) translateX(-20px);
  }

  to {
    transform: scale(1) translateX(0);
  }
}

@keyframes navbarSlide {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes waveDash {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes float-mini {

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

  50% {
    transform: translate(5px, -8px);
  }
}

@keyframes blob-shift {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes magnetic-pull {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(var(--mx), var(--my));
  }
}

@keyframes text-glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(240, 165, 0, 0.2);
  }

  50% {
    text-shadow: 0 0 20px rgba(240, 165, 0, 0.5);
  }
}

@keyframes reveal-skew {
  from {
    transform: translateY(100px) skewY(10deg);
    opacity: 0;
  }

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

/* ---- Cursor Follower ---- */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-follower.active {
  opacity: 1;
  width: 40px;
  height: 40px;
}

/* ---- Premium Glassmorphism ---- */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* ---- Magnetic Utility ---- */
.magnetic-wrap {
  display: inline-block;
  cursor: pointer;
}

.magnetic-content {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reveal Variations ---- */
.reveal-skew {
  opacity: 0;
}

.reveal-skew.active {
  animation: reveal-skew 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* ========= TOP BAR ========= */
.topbar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 2px solid var(--accent);
  animation: fadeInDown 0.6s ease;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.topbar a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.topbar i {
  color: var(--accent);
}

.topbar .social-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

.topbar .social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.75rem;
}

.topbar .social-links a:hover {
  background: var(--accent);
  transform: scale(1.2) rotate(10deg);
  color: var(--primary);
}

/* ========= NAVBAR ========= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(10, 31, 92, 0.10);
  transition: var(--transition);
  animation: navbarSlide 0.5s ease 0.2s both;
}

.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(10, 31, 92, 0.18);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(10, 31, 92, 0.2);
}

.logo-text span.ns {
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo-text span.home {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  line-height: 1;
  margin-top: -2px;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: var(--white);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.dropdown-menu a i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary);
  transform: translateX(4px);
}

.btn-order {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 20px rgba(10, 31, 92, 0.3) !important;
}

.btn-order::after {
  display: none !important;
}

.btn-order:hover {
  transform: translateY(-3px) scale(1.05) !important;
  background: var(--gradient-accent) !important;
  color: var(--primary) !important;
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(10, 31, 92, 0.05);
  border: 1px solid rgba(10, 31, 92, 0.1);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger:active {
  background: rgba(10, 31, 92, 0.12);
  transform: scale(0.95);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

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

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
  background: var(--accent);
}

/* ========= HERO SECTION (Final Clean Version) ========= */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(40%) contrast(110%);
  animation: slideInBg 12s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-text-content h1 span {
  color: var(--accent);
}

.hero-text-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* Info Cards (Right Column) */
.hero-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.hero-card:hover {
  transform: translateX(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-card-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-card-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: float 1.2s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

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

  .hero-text-content p {
    margin: 0 auto;
  }

  .hero-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
    max-width: 320px;
    transform: none !important;
  }
}

/* Animations included in this reset */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  animation: float 3s infinite;
}

/* --- BLOBS --- */
.blob-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--accent);
  opacity: 0.12;
  filter: blur(100px);
  animation: blob-shift 20s infinite alternate;
}

.blob-1 {
  top: -200px;
  right: -200px;
}

.blob-2 {
  bottom: -200px;
  left: -200px;
  background: var(--primary-light);
  opacity: 0.15;
}

/* ========= UTILITIES ========= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  min-width: 30px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========= ABOUT ========= */
#about {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-desc {
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(10, 31, 92, 0.06);
}

.about-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.about-feature i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(240, 165, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-img:first-child {
  grid-row: 1 / 3;
}

.about-img img {
  height: 100%;
  transition: transform 0.6s ease;
}

.about-img:hover {
  box-shadow: var(--shadow-hover);
}

.about-img:hover img {
  transform: scale(1.07);
}

.about-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ========= SERVICES ========= */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 31, 92, 0.08);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  height: 100%;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-body {
  padding: 24px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(10, 31, 92, 0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.1);
  background: var(--gradient-accent);
  color: var(--primary);
}

.service-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* ========= STATS ========= */
#stats {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  animation: countUp 0.8s ease both;
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(240, 165, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--gradient-accent);
  color: var(--primary);
  transform: scale(1.1) rotate(10deg);
  border-color: var(--accent);
  animation: borderGlow 1.5s infinite;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number sup {
  font-size: 1.4rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========= PRICING ========= */
#pricing {
  background: var(--light-bg);
}

.pricing-intro {
  max-width: 620px;
  margin-bottom: 50px;
}

.pricing-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 31, 92, 0.2);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 0 0 0 100px;
  opacity: 0.06;
  transition: var(--transition);
}

.price-card:hover::after {
  opacity: 0.12;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(240, 165, 0, 0.2);
  transform: scale(1.03);
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.price-card.featured:hover {
  transform: translateY(-6px) scale(1.03);
}

.price-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.price-quality {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.price-size {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-amount span {
  font-size: 1.1rem;
  font-weight: 600;
}

.price-features {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.price-features li i {
  color: #22c55e;
  font-size: 0.9rem;
}

.btn-quote {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 31, 92, 0.3);
}

/* ========= WHY CHOOSE US ========= */
#why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  animation: float 4s ease-in-out infinite;
}

.why-badge-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gradient-accent);
  color: var(--primary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.5);
  animation: pulse 2s infinite;
  text-align: center;
}

.why-badge-overlay strong {
  font-size: 1.8rem;
  line-height: 1;
}

.why-badge-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--light-bg);
  border-radius: var(--radius);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(8px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-num {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}

.benefit-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ========= GALLERY ========= */
#gallery {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(10, 31, 92, 0.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 180px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 92, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========= CONTACT ========= */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

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

.contact-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-card p,
.contact-card a {
  color: var(--text-mid);
  font-size: 0.92rem;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  margin-top: 8px;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  background: #128C7E;
}

.whatsapp-btn i {
  font-size: 1.4rem;
}

.contact-form {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(10, 31, 92, 0.08);
}

.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form .sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 31, 92, 0.08);
}

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

.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 31, 92, 0.3);
}

/* ===== ABOUT HOME SECTION (Mini Features & Stack) ===== */
.about-features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.a-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.a-feat-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.about-image-stack {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 31, 92, 0.3);
  border-bottom: 4px solid var(--accent);
  z-index: 2;
}

.experience-badge strong {
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.experience-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========= FOOTER ========= */
footer {
  background: var(--gradient-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo-text span.ns,
.footer-brand .logo-text span.home {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gradient-accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-4px) rotate(8deg);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(6px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

/* Footer WhatsApp Button */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 10px 0 20px;
  text-decoration: none;
  width: fit-content;
}

.footer-whatsapp-btn i {
  font-size: 1.3rem;
  color: #25D366;
  transition: transform 0.4s ease;
}

.footer-whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover i {
  color: var(--white);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
}

/* ========= FLOATING BUTTONS ========= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
  text-decoration: none;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--gradient-primary);
}

.fab:hover {
  transform: scale(1.15) rotate(-6deg);
}

/* Back to top */
#back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(10, 31, 92, 0.25);
}

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

#back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 31, 92, 0.3);
}

/* ========= MOBILE NAV - ENHANCED ========= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 31, 92, 0.95) 0%, rgba(26, 58, 143, 0.92) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2000;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 80px 20px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  animation: mobileNavSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes mobileNavSlideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2001;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mobile-nav-close:active {
  background: var(--accent);
  color: var(--primary);
  transform: scale(0.95) rotate(90deg);
  box-shadow: 0 0 20px rgba(240, 165, 0, 0.4);
}

/* Navigation Items - Base Styles */
.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.95);
  padding: 14px 16px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: left;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 6px 0;
  cursor: pointer;
  animation: itemSlideIn 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes itemSlideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Staggered animations for list items */
.mobile-nav > a:nth-of-type(1) { animation-delay: 0.1s; }
.mobile-nav > a:nth-of-type(2) { animation-delay: 0.15s; }
.mobile-nav > div:nth-of-type(1) { animation-delay: 0.2s; }
.mobile-nav > a.nav-product-link:nth-of-type(1) { animation-delay: 0.25s; }
.mobile-nav > a.nav-product-link:nth-of-type(2) { animation-delay: 0.3s; }
.mobile-nav > a.nav-product-link:nth-of-type(3) { animation-delay: 0.35s; }
.mobile-nav > a.nav-product-link:nth-of-type(4) { animation-delay: 0.4s; }
.mobile-nav > a:nth-of-type(3) { animation-delay: 0.45s; }
.mobile-nav > a:nth-of-type(4) { animation-delay: 0.5s; }
.mobile-nav > a:nth-of-type(5) { animation-delay: 0.55s; }
.mobile-nav > a.btn-order-m { animation-delay: 0.6s; }

/* Main Navigation Links */
.mobile-nav .nav-main-link {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 16px;
  margin: 8px 0;
  border-radius: 10px;
}

/* Product Links (Indented) */
.mobile-nav .nav-product-link {
  font-size: 1rem;
  padding: 12px 16px 12px 28px !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 3px 0;
  border-radius: 8px;
}

.mobile-nav a:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(240, 165, 0, 0.08);
  padding-left: 24px;
}

.mobile-nav a:hover:before {
  width: 4px;
}

.mobile-nav a:active {
  transform: scale(0.98);
}

/* Product Section Header */
.mobile-nav .nav-section-title {
  padding: 18px 16px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 12px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: itemSlideIn 0.5s ease-out 0.2s forwards;
  opacity: 0;
  background: rgba(240, 165, 0, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

/* Call-to-Action Button */
.mobile-nav .btn-order-m {
  background: var(--gradient-accent);
  color: var(--primary);
  margin: 24px 0 0 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 16px !important;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: itemSlideIn 0.5s ease-out 0.6s forwards;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav .btn-order-m:active {
  transform: scale(0.96);
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.3);
}

.mobile-nav .btn-order-m:hover {
  background: linear-gradient(135deg, #ffd166 0%, #f0a500 100%);
  box-shadow: 0 12px 32px rgba(240, 165, 0, 0.35);
  transform: translateY(-2px);
  padding-left: 24px !important;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 992px) {

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .about-img:first-child {
    grid-row: auto;
  }

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .hero-info-cards {
    display: none;
  }

  .why-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .topbar .topbar-left {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .hero-inner {
    text-align: center;
  }

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

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

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

  #stats {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

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

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

/* ===== BENEFITS INFO SECTION ===== */
.benefits-info {
  background: var(--white);
  padding-bottom: 40px;
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
}

.section-text-justify {
  text-align: justify;
  margin-bottom: 20px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== OUR BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.b-card {
  background: var(--primary);
  padding: 50px 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.b-card:hover {
  transform: translateY(-12px);
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 20px 40px rgba(240, 165, 0, 0.3);
}

.b-icon {
  font-size: 3.5rem;
  opacity: 0.9;
}

.b-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ===== PRELOADER ========= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  text-align: center;
}

.preloader-logo span {
  color: var(--accent);
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: preloaderFill 1.6s ease forwards;
}

@keyframes preloaderFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ===== INDEPENDENCE OFFER SECTION ===== */
.offer-category {
  margin-bottom: 60px;
}

.offer-cat-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.offer-cat-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.offer-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--accent);
}

.offer-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: capitalize;
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.offer-card ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.offer-card ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.offer-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 15px;
  padding: 12px;
  background: var(--primary);
  border-radius: 8px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-offer-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: var(--gradient-accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-offer-now:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* Quality Variations */
.offer-card.premium {
  border-top: 5px solid var(--accent);
}

.offer-card.premium .offer-price {
  background: var(--gradient-primary);
}

.offer-card.deluxe {
  border-top: 5px solid #10b981;
}

.offer-card.deluxe .offer-price {
  background: #065f46;
}

.offer-card.deluxe .btn-offer-now {
  background: #10b981;
  color: white;
}

/* Responsive Grid */
@media (max-width: 1400px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .b-card {
    padding: 35px 20px;
  }

  .b-icon {
    font-size: 2.8rem;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .offer-card {
    padding: 25px;
  }

  .section-title {
    font-size: 2rem;
  }
}