/* ============================================
   Designer Tribes — Complete Stylesheet v2
   Brand: #E53935 Red | #1A1A1A Dark
   ============================================ */

/* ── CSS Variables ── */
:root {
  --red:        #E53935;
  --red-dark:   #B71C1C;
  --red-light:  #FFCDD2;
  --dark:       #111317;
  --dark2:      #1e2127;
  --text:       #4a4a5a;
  --text-light: #8a8a9a;
  --white:      #ffffff;
  --bg-light:   #F7F8FC;
  --bg-off:     #F0F1F6;
  --border:     #E4E6EF;
  --gradient:   linear-gradient(135deg, #E53935 0%, #B71C1C 100%);
  --shadow-sm:  0 2px 16px rgba(229,57,53,.10);
  --shadow-md:  0 8px 36px rgba(229,57,53,.18);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.10);
  --shadow-card:0 4px 24px rgba(0,0,0,.07);
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: .32s cubic-bezier(.4,0,.2,1);
  --navbar-h:   72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--navbar-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.09); }
#navbar .container { height: 100%; display: flex; align-items: center; }
.navbar-brand img { height: 44px; width: auto; }
.navbar-nav .nav-link {
  font-weight: 500; font-size: .875rem;
  color: var(--dark) !important;
  padding: .6rem .9rem !important;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: .01em;
}
.navbar-nav .nav-link:hover { color: var(--red) !important; background: rgba(229,57,53,.06); }
.navbar-nav .nav-link.active { color: var(--red) !important; }

/* Mega Menu */
.mega-menu-wrapper { position: static !important; }
.mega-menu {
  position: fixed !important;
  top: var(--navbar-h); left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  padding: 1.75rem 0;
  display: none;
  z-index: 9998;
  animation: fadeDown .25s ease;
}
.mega-menu-wrapper:hover .mega-menu { display: block; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-menu .service-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  font-weight: 500; font-size: .85rem;
  color: var(--dark);
  transition: all var(--transition);
}
.mega-menu .service-link:hover { background: #fff5f5; color: var(--red); transform: translateX(4px); }
.mega-menu .service-link .svc-icon-sm {
  width: 34px; height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; flex-shrink: 0;
}
.navbar-toggler { border: none; padding: .45rem; outline: none !important; box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E53935' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: .5rem 1.35rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important; font-size: .84rem !important;
  box-shadow: 0 4px 16px rgba(229,57,53,.3);
  transition: all var(--transition) !important;
  border: none !important; white-space: nowrap;
}
.btn-nav:hover { box-shadow: 0 6px 24px rgba(229,57,53,.45) !important; transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary-red {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gradient); color: #fff;
  padding: .82rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .925rem;
  border: none; cursor: pointer;
  box-shadow: 0 6px 22px rgba(229,57,53,.32);
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary-red:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(229,57,53,.45); color: #fff; }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--red);
  padding: .78rem 1.9rem; border-radius: 50px;
  font-weight: 600; font-size: .925rem;
  border: 2px solid var(--red); cursor: pointer;
  transition: all var(--transition); line-height: 1;
}
.btn-outline-red:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--red);
  padding: .82rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .925rem;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  transition: all var(--transition); line-height: 1;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.22); color: var(--red-dark); }

/* ═══════════════════════════════════════════
   SECTION HEADINGS & BADGES
═══════════════════════════════════════════ */
.section-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(229,57,53,.1);
  color: var(--red);
  border: 1px solid rgba(229,57,53,.2);
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-badge-white {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.15);
  color: #fff; border: 1px solid rgba(255,255,255,.25);
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.22; letter-spacing: -.02em;
}
.section-title span { color: var(--red); }
.section-title-white { color: #fff; }
.section-title-white span { color: #ff8a80; }
.section-sub,
.section-subtitle {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; max-width: 600px;
  margin-top: .75rem;
}

/* ═══════════════════════════════════════════
   HOME HERO
═══════════════════════════════════════════ */
.hero-home {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center;
  padding-top: var(--navbar-h);
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 36px 36px;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-blob-1 {
  width: 560px; height: 560px;
  background: rgba(229,57,53,.13);
  top: -120px; right: -100px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: rgba(229,57,53,.07);
  bottom: -80px; left: -60px;
  animation: blobFloat 12s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-30px) scale(1.05); }
  66%      { transform: translate(-15px,20px) scale(.97); }
}
.hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(229,57,53,.12);
  border: 1px solid rgba(229,57,53,.25);
  color: #ffcdd2; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-label .pulse {
  width: 7px; height: 7px; background: var(--red);
  border-radius: 50%; animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(229,57,53,.5); }
  50%      { opacity:.7; transform:scale(1.3); box-shadow: 0 0 0 6px rgba(229,57,53,0); }
}
.hero-home h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-home h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-home > .container p.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,.68);
  max-width: 520px; line-height: 1.85; margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .875rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num {
  font-size: 1.9rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.hero-stat .num sup { font-size: 1.1rem; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .2rem; }

/* Hero right panel cards */
.hero-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  transition: all .5s ease;
}
.hero-card:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); }
.hero-card .hc-icon {
  width: 48px; height: 48px;
  background: var(--gradient); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; margin-bottom: .85rem;
}
.hero-card h6 { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.hero-card p  { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0; }

/* ═══════════════════════════════════════════
   INNER PAGE HERO / BANNER (Service, About, etc.)
═══════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--navbar-h) + 60px);
  padding-bottom: 70px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}
/* Red glow blobs inside hero */
.page-hero .ph-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.page-hero .ph-blob-1 {
  width: 400px; height: 400px;
  background: rgba(229,57,53,.12);
  top: -100px; right: -80px;
}
.page-hero .ph-blob-2 {
  width: 300px; height: 300px;
  background: rgba(229,57,53,.06);
  bottom: -60px; left: -60px;
}
.page-hero .container { position: relative; z-index: 1; }

/* Breadcrumb inside hero */
.ph-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.ph-breadcrumb a {
  font-size: .8rem; color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.ph-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.ph-breadcrumb .sep { color: rgba(255,255,255,.25); font-size: .8rem; }
.ph-breadcrumb .current { font-size: .8rem; color: var(--red); font-weight: 600; }

/* Hero title & desc */
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900; color: #fff;
  line-height: 1.18; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-hero h1 span { color: #ff8a80; }
.page-hero .ph-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 580px; line-height: 1.85;
  margin-bottom: 1.75rem;
}
/* Trust pills row */
.ph-trust {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ph-trust span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: .35rem .9rem; border-radius: 50px;
}
.ph-trust span i { color: var(--red); font-size: .78rem; }

/* Hero right icon */
.ph-icon-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.ph-service-icon {
  width: 110px; height: 110px;
  background: var(--gradient);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: #fff;
  box-shadow: 0 20px 60px rgba(229,57,53,.38);
  animation: iconFloat 4s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}
/* Hero mini stats row */
.ph-stats {
  display: flex; gap: .75rem; flex-wrap: wrap;
  justify-content: center;
}
.ph-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  text-align: center; min-width: 90px;
}
.ph-stat .val { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1; }
.ph-stat .key { font-size: .68rem; color: rgba(255,255,255,.45); margin-top: .25rem; }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-section {
  padding: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-item {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  font-family: 'Poppins', sans-serif;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: .5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SERVICES GRID (Home)
═══════════════════════════════════════════ */
.services-section { padding: 100px 0; background: var(--bg-light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.875rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative; overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .svc-icon {
  width: 64px; height: 64px;
  background: rgba(229,57,53,.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--red);
  margin-bottom: 1.35rem;
  transition: all var(--transition);
}
.service-card:hover .svc-icon { background: var(--gradient); color: #fff; transform: rotate(8deg) scale(1.08); }
.service-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: .65rem; }
.service-card p  { font-size: .875rem; color: var(--text-light); line-height: 1.72; margin-bottom: 1.35rem; }
.service-card .learn-more {
  font-size: .845rem; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: .4rem;
}
.service-card .learn-more i { transition: transform var(--transition); font-size: .8rem; }
.service-card:hover .learn-more i { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   PACKAGES / PRICING
═══════════════════════════════════════════ */
.packages-section { padding: 100px 0; background: var(--bg-light); }
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.pkg-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.pkg-card.featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(229,57,53,.32);
  transform: scale(1.03);
}
.pkg-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: #fff;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 50px;
  white-space: nowrap;
}
.pkg-tier {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .4rem;
}
.pkg-card.featured .pkg-tier { color: rgba(255,255,255,.75); }
.pkg-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--dark); margin-bottom: .9rem; }
.pkg-card.featured h3 { color: #fff; }
.pkg-price-cut {
  font-size: .9rem; color: var(--text-light);
  text-decoration: line-through; margin-bottom: .1rem;
}
.pkg-card.featured .pkg-price-cut { color: rgba(255,255,255,.55); }
.pkg-price-main {
  font-size: 2.7rem; font-weight: 900;
  color: var(--dark); line-height: 1;
}
.pkg-card.featured .pkg-price-main { color: #fff; }
.pkg-price-period { font-size: .83rem; color: var(--text-light); margin-left: .25rem; }
.pkg-card.featured .pkg-price-period { color: rgba(255,255,255,.65); }
.pkg-save-badge {
  display: inline-block;
  background: #e8f5e9; color: #2e7d32;
  font-size: .72rem; font-weight: 700;
  padding: .2rem .75rem; border-radius: 50px;
  margin: .6rem 0 1.5rem;
}
.pkg-card.featured .pkg-save-badge { background: rgba(255,255,255,.2); color: #fff; }
.pkg-features { flex: 1; margin-bottom: 1.75rem; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .855rem; color: var(--text);
  padding: .48rem 0;
  border-bottom: 1px solid var(--border);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.14); }
.pkg-features li i { color: var(--red); font-size: .82rem; margin-top: .18rem; flex-shrink: 0; }
.pkg-card.featured .pkg-features li i { color: rgba(255,255,255,.85); }
.btn-pkg {
  width: 100%; padding: .82rem 1rem;
  border-radius: 50px; font-weight: 700; font-size: .875rem;
  border: 2px solid var(--red);
  background: transparent; color: var(--red);
  cursor: pointer; transition: all var(--transition);
}
.btn-pkg:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.pkg-card.featured .btn-pkg {
  background: rgba(255,255,255,.18); color: #fff;
  border-color: rgba(255,255,255,.4);
}
.pkg-card.featured .btn-pkg:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   WHAT WE DO / BENEFITS
═══════════════════════════════════════════ */
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  height: 100%;
  box-shadow: var(--shadow-card);
}
.benefit-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.benefit-card .b-icon {
  font-size: 1.7rem; color: var(--red);
  margin-bottom: .9rem;
}
.benefit-card h5 { font-size: .975rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.benefit-card p  { font-size: .855rem; color: var(--text-light); margin: 0; }

/* Feature list */
.feature-list { margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .7rem 0; font-size: .925rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--red); font-size: .95rem; margin-top: .22rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.process-section { padding: 100px 0; }
.process-grid { display: flex; gap: 0; position: relative; }
.process-step-item {
  flex: 1; text-align: center; padding: 0 1rem;
  position: relative;
}
.process-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px; left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(229,57,53,.2));
}
.step-circle {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 28px rgba(229,57,53,.28);
  position: relative; z-index: 1;
}
.process-step-item h5 { font-size: .975rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.process-step-item p  { font-size: .845rem; color: var(--text-light); }

/* ═══════════════════════════════════════════
   WHY CHOOSE US (Dark bg section)
═══════════════════════════════════════════ */
.why-section { padding: 100px 0; background: var(--dark); }
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition); height: 100%;
}
.why-card:hover {
  background: rgba(229,57,53,.08);
  border-color: rgba(229,57,53,.25);
  transform: translateY(-4px);
}
.why-card .w-icon,
.why-card .wicon { font-size: 1.9rem; color: var(--red); margin-bottom: .9rem; }
.why-card h5 { font-size: .975rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.why-card p  { font-size: .845rem; color: rgba(255,255,255,.55); margin: 0; }

/* ═══════════════════════════════════════════
   PORTFOLIO GRID
═══════════════════════════════════════════ */
.portfolio-section { padding: 100px 0; }
.filter-btn {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: .835rem; font-weight: 600;
  padding: .48rem 1.2rem;
  border-radius: 50px; cursor: pointer;
  margin: .25rem; transition: all var(--transition);
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient); border-color: transparent; color: #fff;
}
.port-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.port-img {
  width: 100%; height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.port-item:hover .port-img { transform: scale(1.06); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(180,20,20,.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-overlay h6 { color: #fff; font-weight: 700; margin-bottom: .2rem; font-size: .95rem; }
.port-overlay span { font-size: .78rem; color: rgba(255,255,255,.8); }
.port-placeholder {
  width: 100%; height: 260px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-section { padding: 100px 0; background: var(--bg-light); }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition); height: 100%;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(229,57,53,.2); }
.testi-stars { color: #F59E0B; font-size: .875rem; margin-bottom: .9rem; letter-spacing: .05em; }
.testi-quote {
  font-size: 3rem; color: var(--red);
  line-height: .8; margin-bottom: .75rem;
  font-family: Georgia, serif;
}
.testi-text {
  font-size: .905rem; color: var(--text);
  font-style: italic; line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--dark); font-size: .9rem; }
.testi-role { font-size: .775rem; color: var(--text-light); margin-top: .1rem; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar { padding: 72px 0; background: var(--gradient); }
.stat-box { text-align: center; }
.stat-box .s-num { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-box .s-lbl { font-size: .85rem; color: rgba(255,255,255,.78); margin-top: .4rem; font-weight: 500; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(229,57,53,.14) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 50%, rgba(229,57,53,.09) 0%, transparent 55%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }
.cta-section p  { color: rgba(255,255,255,.65); font-size: 1rem; }

/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */
.contact-section { padding: 100px 0; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 16px 56px rgba(0,0,0,.07);
  border: 1.5px solid var(--border);
  height: 100%;
}
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  height: 100%;
  min-height: 480px;
}
.contact-info-card h4 {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; margin-bottom: 1.75rem;
}
.info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.4rem;
}
.info-icon-box {
  width: 44px; height: 44px;
  background: rgba(229,57,53,.14);
  border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.info-row-text small {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.38); display: block;
}
.info-row-text p { font-size: .9rem; color: rgba(255,255,255,.88); font-weight: 500; margin: .2rem 0 0; }

/* Forms */
.form-label { font-size: .84rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .72rem 1rem;
  font-size: .875rem; color: var(--dark);
  background: var(--bg-light);
  transition: all var(--transition);
  font-family: inherit;
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
  background: #fff; outline: none;
}
.form-control::placeholder { color: #c0c0cc; }
textarea.form-control { min-height: 130px; resize: vertical; }
.alert-ok  { background:#e8f5e9; border:1px solid #a5d6a7; color:#2e7d32; border-radius:10px; padding:.9rem 1.25rem; display:flex; align-items:center; gap:.65rem; font-size:.875rem; }
.alert-err { background:#ffebee; border:1px solid #ef9a9a; color:#b71c1c; border-radius:10px; padding:.9rem 1.25rem; display:flex; align-items:center; gap:.65rem; font-size:.875rem; }

/* ═══════════════════════════════════════════
   LEAD MODAL
═══════════════════════════════════════════ */
.lead-modal .modal-content { border:none; border-radius:var(--radius-lg); overflow:hidden; }
.lead-modal .modal-header { background:var(--gradient); border:none; padding:1.4rem 2rem; }
.lead-modal .modal-title { color:#fff; font-weight:700; font-size:1rem; }
.lead-modal .btn-close { filter:invert(1) brightness(2); }
.lead-modal .modal-body { padding:2rem; }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-section { padding: 100px 0; background: var(--bg-light); }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .65rem;
  overflow: hidden;
}
.faq-item .accordion-button {
  font-weight: 600; font-size: .9rem;
  color: var(--dark); background: var(--white);
  padding: 1.1rem 1.4rem;
  box-shadow: none !important;
  font-family: inherit;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--red); background: #fff5f5;
}
.faq-item .accordion-button::after {
  filter: invert(20%) sepia(80%) saturate(500%) hue-rotate(340deg);
}
.faq-item .accordion-button:not(.collapsed)::after {
  filter: invert(20%) sepia(80%) saturate(800%) hue-rotate(340deg);
}
.faq-item .accordion-body {
  font-size: .875rem; color: var(--text-light);
  padding: 0 1.4rem 1.25rem; line-height: 1.85;
}

/* ═══════════════════════════════════════════
   TOOLS BADGES
═══════════════════════════════════════════ */
.tool-badge {
  display: inline-block;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text); font-size: .8rem; font-weight: 600;
  padding: .38rem .95rem; border-radius: 50px;
  margin: .25rem; transition: all var(--transition);
}
.tool-badge:hover { border-color: var(--red); color: var(--red); background: #fff5f5; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #0e1014;
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
footer .f-logo img { height: 42px; width: auto; margin-bottom: 1.1rem; }
footer .f-desc { font-size: .875rem; line-height: 1.85; max-width: 290px; color: rgba(255,255,255,.5); }
footer .f-heading {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.4rem;
}
footer ul li { margin-bottom: .55rem; }
footer ul li a {
  font-size: .855rem; color: rgba(255,255,255,.52);
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: .4rem;
}
footer ul li a:hover { color: var(--red); }
footer ul li a::before { content: '›'; color: var(--red); opacity: .7; }
.f-social { display: flex; gap: .65rem; margin-top: 1.4rem; }
.f-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .9rem;
  transition: all var(--transition);
}
.f-social a:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.055);
  margin-top: 56px; padding: 1.4rem 0;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.f-bottom a { color: var(--red); }

/* ═══════════════════════════════════════════
   FLOATING STICKY BUTTONS
═══════════════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  display: flex; flex-direction: column; gap: .65rem;
  z-index: 8999;
}
.sticky-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
  text-decoration: none;
}
.sticky-btn.wa  { background: #25D366; color: #fff; }
.sticky-btn.top { background: var(--gradient); color: #fff; opacity: 0; pointer-events: none; }
.sticky-btn.top.show { opacity: 1; pointer-events: all; }
.sticky-btn:hover { transform: scale(1.1) translateY(-2px); }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.bg-light-gray { background: var(--bg-light); }
.text-red { color: var(--red); }
.rounded-xl { border-radius: var(--radius-xl); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet 992px
═══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-home { padding: calc(var(--navbar-h) + 40px) 0 60px; min-height: auto; }
  .hero-stats { gap: 1.5rem; }

  .navbar-collapse {
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-top: .5rem;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link { padding: .65rem .75rem !important; }
  .mega-menu {
    position: static !important;
    box-shadow: none; border: none;
    padding: .5rem 0; margin: 0;
    border-top: 2px solid rgba(229,57,53,.15);
    border-radius: 0;
    display: block !important;
  }

  .page-hero { padding-top: calc(var(--navbar-h) + 40px); padding-bottom: 50px; }
  .page-hero h1 { font-size: 1.9rem; }

  .process-grid { flex-wrap: wrap; gap: 2rem; }
  .process-step-item { flex: 0 0 calc(50% - 1rem); }
  .process-step-item:not(:last-child)::after { display: none; }

  .pkg-card.featured { transform: none; }
  .contact-form-card, .contact-info-card { padding: 2rem 1.75rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile 768px
═══════════════════════════════════════════ */
@media (max-width: 767.98px) {
  :root { --navbar-h: 64px; }
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }

  .hero-home h1 { font-size: 2rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-btns { gap: .65rem; }
  .hero-btns .btn-primary-red,
  .hero-btns .btn-outline-red { width: 100%; justify-content: center; }

  .page-hero { padding-top: calc(var(--navbar-h) + 30px); padding-bottom: 40px; }
  .page-hero h1 { font-size: 1.7rem; }
  .ph-icon-wrap { margin-top: 2rem; }
  .ph-service-icon { width: 86px; height: 86px; font-size: 2.2rem; border-radius: 22px; }
  .ph-trust { gap: .5rem; }
  .ph-trust span { font-size: .74rem; }

  .process-step-item { flex: 0 0 100%; }

  .pkg-card.featured { transform: none; order: -1; }

  .contact-form-card { padding: 1.75rem 1.25rem; }
  .contact-info-card { padding: 1.75rem 1.25rem; min-height: auto; margin-top: 1.5rem; }

  .stats-bar .s-num { font-size: 2.5rem; }

  .f-bottom { text-align: center; }
  .f-bottom .d-flex { flex-direction: column; gap: .5rem; align-items: center; }

  .sticky-bar { bottom: 1.25rem; right: 1.25rem; }
  .sticky-btn { width: 48px; height: 48px; font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile 480px
═══════════════════════════════════════════ */
@media (max-width: 479.98px) {
  .section-title { font-size: 1.55rem; }
  .packages-section .col-lg-4 { margin-bottom: 1rem; }
  .btn-primary-red, .btn-outline-red, .btn-white { font-size: .875rem; padding: .75rem 1.5rem; }
  .contact-form-card { padding: 1.5rem 1rem; }
  .hero-home h1 { font-size: 1.75rem; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.95); opacity: 0; }
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes particleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity:.5; }
  50%      { transform: translateY(-18px) scale(1.25); opacity:.9; }
}
