/* ============================================================
   Mujahid Hussain Carpentry LLC — Master Stylesheet
   Color Palette: #F2E6EE · #977DFF · #0033FF · #0600AB · #00033D
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #977DFF;
  --secondary: #0033FF;
  --accent: #0600AB;
  --dark: #00033D;
  --light: #F2E6EE;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gradient-1: linear-gradient(135deg, #F2E6EE 0%, #977DFF 100%);
  --gradient-2: linear-gradient(135deg, #977DFF 0%, #0033FF 100%);
  --gradient-3: linear-gradient(135deg, #0033FF 0%, #0600AB 100%);
  --gradient-4: linear-gradient(135deg, #0600AB 0%, #00033D 100%);
  --gradient-hero: linear-gradient(135deg, #00033D 0%, #0600AB 40%, #977DFF 100%);
  --shadow-sm: 0 2px 8px rgba(0, 3, 61, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 3, 61, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 3, 61, 0.18);
  --shadow-xl: 0 12px 60px rgba(0, 3, 61, 0.22);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 50px;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--gradient-2);
  transform: translateY(-50%);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 680px;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--gradient-2);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-3);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-200);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Spacing Helpers ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

/* ---------- HEADER / NAVBAR ---------- */
.navbar-main {
  background: rgba(0, 3, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar-main.scrolled {
  background: rgba(0, 3, 61, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
}

.navbar-main .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.navbar-main .navbar-brand span {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-main .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--white) !important;
  background: rgba(151, 125, 255, 0.15);
}

.navbar-main .dropdown-menu {
  background: var(--dark);
  border: 1px solid rgba(151, 125, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-top: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-xl);
}

.navbar-main .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.navbar-main .dropdown-item:hover {
  background: rgba(151, 125, 255, 0.15);
  color: var(--white);
}

.navbar-main .navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-main .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-main .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='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.top-bar {
  background: var(--gradient-2);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--white);
}

.top-bar a {
  color: var(--white);
  font-weight: 500;
}

.top-bar a:hover {
  opacity: 0.85;
}

.top-bar i {
  margin-right: 5px;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 125, 255, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(151, 125, 255, 0.2);
  border: 1px solid rgba(151, 125, 255, 0.3);
  color: var(--light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.hero-image-card img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 20px;
  right: -20px;
}

.hero-floating-card.card-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 1s;
}

.hero-floating-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 10px;
}

/* ---------- HERO V2 (Modern Redesign) ---------- */
.hero-section-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,3,61,0.88) 0%, rgba(6,0,171,0.72) 50%, rgba(0,51,255,0.55) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(151,125,255,0.3);
  animation: heroFloat 8s ease-in-out infinite;
}

.particle.p1 { width: 300px; height: 300px; top: -10%; right: -5%; animation-duration: 7s; background: radial-gradient(circle, rgba(151,125,255,0.2), transparent 70%); }
.particle.p2 { width: 200px; height: 200px; bottom: 10%; left: 5%; animation-duration: 9s; animation-delay: 1s; background: radial-gradient(circle, rgba(0,51,255,0.15), transparent 70%); }
.particle.p3 { width: 120px; height: 120px; top: 30%; left: 40%; animation-duration: 6s; animation-delay: 2s; background: radial-gradient(circle, rgba(151,125,255,0.15), transparent 70%); }
.particle.p4 { width: 80px; height: 80px; top: 60%; right: 20%; animation-duration: 10s; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); }
.particle.p5 { width: 160px; height: 160px; bottom: -5%; right: 35%; animation-duration: 8s; animation-delay: 3s; background: radial-gradient(circle, rgba(0,51,255,0.12), transparent 70%); }

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(15px, -20px) scale(1.05); }
  50% { transform: translate(-10px, -35px) scale(1); }
  75% { transform: translate(20px, -15px) scale(0.95); }
}

.hero-v2-content {
  position: relative;
  z-index: 5;
  padding: 60px 0;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(151,125,255,0.15);
  border: 1px solid rgba(151,125,255,0.35);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-v2-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0,255,136,0); }
}

.hero-v2-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-v2-highlight {
  background: linear-gradient(135deg, var(--primary), #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-underline {
  position: relative;
  display: inline-block;
}

.hero-v2-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  opacity: 0.6;
}

.hero-v2-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.85;
}

.hero-v2-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
  background: linear-gradient(135deg, #128C7E, #25D366);
}

.hero-btn-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(151,125,255,0.5) !important;
  transform: translateY(-3px);
}

.hero-v2-products {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px 16px 8px 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-mini-card:hover {
  background: rgba(151,125,255,0.15);
  border-color: rgba(151,125,255,0.4);
  transform: translateY(-3px);
  color: #fff;
}

.hero-mini-card img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

/* Hero V2 Showcase (right column) */
.hero-v2-showcase {
  position: relative;
  height: 550px;
}

.hero-showcase-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(151,125,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-showcase-ring::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(151,125,255,0.15);
  animation: spin 30s linear infinite;
}

.hero-showcase-ring::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(0,51,255,0.1);
  animation: spin 45s linear infinite reverse;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.showcase-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(151,125,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-glass-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  z-index: 6;
  transition: all 0.3s ease;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-glass-card:hover {
  background: rgba(151,125,255,0.15);
  transform: scale(1.05);
}

.hgc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hgc-text strong {
  font-size: 1.3rem;
  font-weight: 800;
}

.hgc-text small {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hgc-1 { top: 30px; left: 0; animation-delay: 0s; }
.hgc-2 { top: 50px; right: -10px; animation-delay: 1.5s; }
.hgc-3 { bottom: 70px; left: -20px; animation-delay: 3s; }
.hgc-4 { bottom: 30px; right: 10px; animation-delay: 0.5s; animation-duration: 7s; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 125, 255, 0.12) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.25);
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  font-weight: 400;
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- SERVICE / FEATURE CARDS ---------- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-2);
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 3, 61, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-body {
  padding: 25px;
}

.product-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-badge {
  display: inline-block;
  background: var(--gradient-1);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- ABOUT SECTION ---------- */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.about-experience-badge .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-800);
}

.about-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- COUNTERS ---------- */
.counter-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.counter-section::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");
}

.counter-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: rgba(151, 125, 255, 0.15);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author h6 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.testimonial-author small {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: var(--primary);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 18px 24px;
  background: var(--white);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gradient-1);
  color: var(--accent);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23977DFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 0 24px 18px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(151, 125, 255, 0.1);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 51, 255, 0.08);
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* ---------- WHY CHOOSE US ---------- */
.why-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.why-card:hover .icon-wrap {
  background: var(--gradient-2);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- PROCESS / STEPS ---------- */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-2);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step h5 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.process-connector {
  position: absolute;
  top: 30px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: var(--gradient-2);
  opacity: 0.3;
}

/* ---------- CLIENTS / PARTNERS ---------- */
.client-logo {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100px;
}

.client-logo:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.client-logo img {
  max-height: 50px;
  opacity: 0.5;
  transition: var(--transition);
  filter: grayscale(100%);
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---------- SERVICE AREAS ---------- */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin: 6px;
}

.area-badge:hover {
  background: var(--gradient-2);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-badge i {
  color: var(--primary);
}

.area-badge:hover i {
  color: var(--white);
}

/* ---------- GALLERY ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 3, 61, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ---------- CONTACT FORM ---------- */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(151, 125, 255, 0.1);
}

.contact-info-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(151, 125, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h6 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(151, 125, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-2);
  transform: translateY(-3px);
}

/* ---------- MAP ---------- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
}

.footer h5 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(151, 125, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 3, 61, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 92%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
  animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.8rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(220,53,69,0.7);
  transform: rotate(90deg);
}

/* Make all main images show pointer */
main img {
  cursor: pointer;
}

/* ---------- PRICING CARDS ---------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-2);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-v2-title {
    font-size: 2.5rem;
  }

  .hero-v2-content {
    text-align: center;
    padding: 120px 0 60px;
  }

  .hero-v2-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-btns {
    justify-content: center;
  }

  .hero-v2-products {
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-section-v2 {
    min-height: auto;
  }

  .hero-section {
    text-align: center;
    padding-top: 120px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 40px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-experience-badge {
    right: 10px;
    bottom: 10px;
  }

  .process-connector {
    display: none;
  }

  .page-hero {
    padding: 140px 0 80px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }
  .page-hero p {
    font-size: 1.15rem;
  }

  .navbar-main .navbar-collapse {
    background: var(--dark);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    border: 1px solid rgba(151, 125, 255, 0.1);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-v2-title {
    font-size: 2rem;
  }

  .hero-v2-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .hero-mini-card {
    padding: 6px 12px 6px 6px;
    font-size: 0.72rem;
  }

  .hero-mini-card img {
    width: 36px;
    height: 36px;
  }

  .hero-btn-primary,
  .hero-btn-glass {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .top-bar {
    display: none;
  }

  .counter-section .row > div {
    margin-bottom: 20px;
  }

  .contact-info-card {
    margin-bottom: 30px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
  .page-hero p {
    font-size: 1.05rem;
  }

  .footer {
    text-align: center;
  }

  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-v2-title {
    font-size: 1.65rem;
  }

  .hero-v2-content {
    padding: 100px 0 40px;
  }

  .hero-v2-products {
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .whatsapp-float,
  .back-to-top {
    right: 12px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
  }

  .whatsapp-float {
    bottom: 70px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HOVER LINK EFFECTS ---------- */
.hover-link {
  position: relative;
  display: inline-block;
}

.hover-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  transition: width 0.3s ease;
}

.hover-link:hover::after {
  width: 100%;
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
}

.img-placeholder-dark {
  background: var(--gradient-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}

/* ============================================================
   HERO SLIDER — Modern Carousel
   ============================================================ */
.hero-slider-section {
  position: relative;
  z-index: 1;
}

.hero-slider-section .carousel-inner {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-out;
}

.carousel-item.active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,3,61,0.88) 0%, rgba(6,0,171,0.72) 40%, rgba(0,51,255,0.5) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(151,125,255,0.2);
  border: 1px solid rgba(151,125,255,0.45);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-slide-badge i {
  color: var(--primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-slide-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
}

.text-gradient {
  background: linear-gradient(135deg, #c4b5ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(151,125,255,0.4));
}

.hero-slide-desc {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.85;
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  font-weight: 400;
}

.hero-slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 15px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
  color: #fff !important;
}

.hero-btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(151,125,255,0.6) !important;
  transform: translateY(-3px);
  color: #fff !important;
}

.hero-slide-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-stat-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.2);
}

/* Carousel Controls */
.hero-control {
  width: 60px;
  opacity: 1;
  z-index: 5;
}

.hero-control-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-control:hover .hero-control-icon {
  background: rgba(151,125,255,0.3);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Carousel Indicators */
.hero-indicators {
  bottom: 100px;
  z-index: 5;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5) !important;
  background: transparent !important;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.hero-indicators button.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: scale(1.3);
}

/* Quick Links Bar */
.hero-quick-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0,3,61,0.6);
  backdrop-filter: blur(25px);
  border-top: 1px solid rgba(151,125,255,0.15);
  padding: 16px 0;
}

.hero-links-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 20px 10px 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 170px;
}

.hero-link-card:hover {
  background: rgba(151,125,255,0.2);
  border-color: rgba(151,125,255,0.4);
  transform: translateY(-3px);
  color: #fff;
}

.hero-link-card img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-link-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-left: 4px;
}

.hero-link-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-link-card small {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
}

.hero-link-cta {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
}

.hero-link-cta:hover {
  background: rgba(37,211,102,0.3);
  border-color: rgba(37,211,102,0.5);
}

/* Slide Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive — Hero Slider */
@media (max-width: 991.98px) {
  .hero-slide-title { font-size: 3.2rem; }
  .hero-slide-desc { font-size: 1.15rem; }
  .hero-slide-content .row { padding-top: 30px; }
  .hero-quick-links { position: relative; }
  .hero-indicators { bottom: 80px; }
  .hero-control { display: none; }
  .hero-link-card { min-width: 150px; }
}

@media (max-width: 767.98px) {
  .hero-slide { min-height: 100vh; }
  .hero-slide-title { font-size: 2.5rem; }
  .hero-slide-badge { font-size: 0.82rem; padding: 8px 18px; }
  .hero-slide-desc { font-size: 1.05rem; }
  .hero-slide-btns { gap: 10px; }
  .hero-btn-whatsapp,
  .hero-btn-outline { padding: 12px 22px; font-size: 0.9rem; }
  .hero-slide-stats { gap: 14px; }
  .hero-stat-item strong { font-size: 1.4rem; }
  .hero-link-card { min-width: 140px; padding: 8px 12px 8px 8px; }
  .hero-link-card img { width: 40px; height: 40px; }
  .hero-link-card strong { font-size: 0.78rem; }
}

@media (max-width: 575.98px) {
  .hero-slide-title { font-size: 2rem; }
  .hero-slide-content .row { padding-top: 20px; }
  .hero-link-card { flex: 1 1 45%; min-width: 130px; }
}

/* ============================================================
   MODERN CONTACT FORM
   ============================================================ */
.modern-contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,3,61,0.12);
  border: 1px solid rgba(151,125,255,0.1);
  position: relative;
  overflow: hidden;
}

.modern-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), #25D366);
}

.modern-contact-form .form-floating .form-control,
.modern-contact-form .form-floating .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 16px 8px;
  height: 58px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--gray-100);
}

.modern-contact-form .form-floating textarea.form-control {
  height: 120px;
}

.modern-contact-form .form-floating .form-control:focus,
.modern-contact-form .form-floating .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(151,125,255,0.1);
  background: #fff;
}

.modern-contact-form .form-floating label {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 16px;
}

.modern-contact-form .btn-submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modern-contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.45);
}

.contact-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-badge-row .c-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(151,125,255,0.08);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-badge-row .c-badge i {
  color: #25D366;
  font-size: 0.85rem;
}

/* Contact Info Modern */
.contact-info-modern {
  background: var(--dark);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-modern::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151,125,255,0.15), transparent 70%);
}

.contact-info-modern .ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-info-modern .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-modern .ci-item h6 {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-modern .ci-item a,
.contact-info-modern .ci-item p {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-modern .ci-item a:hover {
  color: var(--primary);
}

.form-alert {
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  animation: fadeInDown 0.4s ease;
}

.form-alert-success {
  background: rgba(37,211,102,0.1);
  color: #128C7E;
  border: 1px solid rgba(37,211,102,0.3);
}

.form-alert-error {
  background: rgba(220,53,69,0.1);
  color: #dc3545;
  border: 1px solid rgba(220,53,69,0.3);
}

/* ===============================================
   PALLET SHOWCASE — Image Gallery & Card Styles
   =============================================== */

/* Carousel within pallet sections */
.pallet-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.pallet-carousel .carousel-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.pallet-carousel .carousel-control-prev,
.pallet-carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}
.pallet-carousel:hover .carousel-control-prev,
.pallet-carousel:hover .carousel-control-next {
  opacity: 1;
}
.pallet-carousel .carousel-control-prev {
  left: 12px;
}
.pallet-carousel .carousel-control-next {
  right: 12px;
}
.pallet-carousel .carousel-control-prev-icon,
.pallet-carousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
  filter: invert(0) grayscale(100%) brightness(0);
}
.pallet-carousel .carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
  gap: 4px;
}
.pallet-carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  padding: 0;
  margin: 0;
}
.pallet-carousel .carousel-indicators button.active {
  background: var(--primary);
  border-color: #fff;
  width: 24px;
  border-radius: 10px;
}

/* Photo count badge */
.pallet-img-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 5;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Enhanced pallet section styling */
.pallet-section-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(151,125,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.pallet-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 2;
}
.pallet-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

/* Section inner padding */
.pallet-info-inner {
  padding: 32px;
}

/* Pallet size highlight badge */
.pallet-size-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(151,125,255,0.12), rgba(0,51,255,0.08));
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.pallet-size-highlight i {
  color: var(--primary);
}

/* Specs table clean style */
.pallet-specs-clean {
  width: 100%;
  max-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 16px;
}
.pallet-specs-clean tr:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pallet-specs-clean th,
.pallet-specs-clean td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border: none;
}
.pallet-specs-clean th {
  color: #777;
  font-weight: 500;
  width: 40%;
  background: transparent;
}
.pallet-specs-clean td {
  color: var(--dark);
  font-weight: 500;
}

/* Dark section carousel overrides (for Euro Black) */
.dark-section .pallet-carousel {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Pallet showcase sections alternating */
.pallet-showcase-alt {
  background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
}

@media (max-width: 991px) {
  .pallet-carousel .carousel-item img {
    height: 300px;
  }
  .pallet-info-inner {
    padding: 24px 20px;
  }
  .pallet-section-card::before {
    height: 3px;
  }
}
@media (max-width: 575px) {
  .pallet-carousel .carousel-item img {
    height: 240px;
  }
  .pallet-info-inner {
    padding: 20px 16px;
  }
}

/* Enhanced image hover for single-image pallet sections */
.section-padding .col-lg-5 > img.rounded-4 {
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
}
.section-padding .col-lg-5 > img.rounded-4:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18) !important;
}

/* Better badge styling on pallet pages */
.badge.bg-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: none;
  box-shadow: 0 3px 12px rgba(151,125,255,0.25);
}

/* Clean table styling for specs */
.table.table-bordered {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.table.table-bordered th {
  font-weight: 600;
  font-size: 0.88rem;
}
.table.table-bordered td {
  font-size: 0.9rem;
}

/* WhatsApp button enhancement on pallet sections */
.section-padding .btn-primary-custom {
  transition: transform 0.3s, box-shadow 0.3s;
}
.section-padding .btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(151,125,255,0.35);
}

/* Section heading enhancement */
.section-padding h2[style*="font-weight:700"] {
  position: relative;
  display: inline-block;
}
.section-padding h2[style*="font-weight:700"]::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin-top: 10px;
}

/* ============================================================
   ENHANCED MOBILE RESPONSIVE FIXES
   ============================================================ */

/* --- Tablet (max 991px) --- */
@media (max-width: 991.98px) {
  .navbar-main .navbar-brand {
    font-size: 1.15rem;
  }

  .hero-slide .row.align-items-center.min-vh-100 {
    min-height: auto !important;
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .hero-slide {
    min-height: auto;
  }

  .hero-indicators {
    bottom: 20px;
  }

  .hero-quick-links {
    position: relative;
  }

  .hero-link-card {
    min-width: 140px;
    padding: 8px 14px 8px 8px;
  }
}

/* --- Mobile (max 767px) --- */
@media (max-width: 767.98px) {
  .navbar-main .navbar-brand {
    font-size: 1.05rem;
  }

  .navbar-main .navbar-brand i {
    font-size: 1.1rem;
  }

  .hero-slide .row.align-items-center.min-vh-100 {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .hero-slide-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-slide-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-slide-badge {
    font-size: 0.78rem;
    padding: 7px 16px;
    margin-bottom: 1rem;
  }

  .hero-slide-btns {
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .hero-btn-whatsapp,
  .hero-btn-outline {
    padding: 11px 20px;
    font-size: 0.85rem;
  }

  .hero-slide-stats {
    gap: 12px;
  }

  .hero-stat-item strong {
    font-size: 1.3rem;
  }

  .hero-stat-item span {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .hero-stat-divider {
    height: 28px;
  }

  .hero-indicators {
    bottom: 15px;
  }

  .hero-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .hero-links-row {
    gap: 8px;
  }

  .hero-link-card {
    flex: 1 1 45%;
    min-width: 0;
    padding: 8px 10px 8px 8px;
    font-size: 0.8rem;
  }

  .hero-link-card img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .hero-link-card strong {
    font-size: 0.75rem;
  }

  .hero-link-card small {
    font-size: 0.65rem;
  }

  .hero-link-card i {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .feature-card {
    padding: 25px 18px;
  }

  .feature-card h4 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .about-image-wrapper img {
    height: 350px !important;
  }

  .about-experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
  }

  .about-experience-badge .number {
    font-size: 1.5rem;
  }
}

/* --- Small Mobile (max 575px) --- */
@media (max-width: 575.98px) {
  .navbar-main .navbar-brand {
    font-size: 0.95rem;
  }

  .navbar-main .navbar-brand i {
    font-size: 1rem;
    margin-right: 4px !important;
  }

  .navbar-main {
    padding: 8px 0;
  }

  .hero-slide .row.align-items-center.min-vh-100 {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero-slide-title {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-slide-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .hero-slide-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    gap: 6px;
  }

  .hero-slide-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 1.2rem;
  }

  .hero-btn-whatsapp,
  .hero-btn-outline {
    padding: 12px 20px;
    font-size: 0.88rem;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-slide-stats {
    gap: 8px;
    justify-content: space-between;
    width: 100%;
  }

  .hero-stat-item strong {
    font-size: 1.15rem;
  }

  .hero-stat-item span {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
  }

  .hero-stat-divider {
    height: 24px;
  }

  .hero-indicators {
    bottom: 10px;
  }

  .hero-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .hero-links-row {
    gap: 6px;
  }

  .hero-link-card {
    flex: 1 1 47%;
    min-width: 0;
    padding: 6px 8px;
    gap: 8px;
    border-radius: 10px;
  }

  .hero-link-card img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .hero-link-card strong {
    font-size: 0.7rem;
  }

  .hero-link-card small {
    font-size: 0.6rem;
  }

  .hero-link-card i {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-padding {
    padding: 40px 0;
  }

  .feature-card {
    padding: 22px 16px;
    margin-bottom: 12px;
  }

  .about-image-wrapper img {
    height: 280px !important;
  }

  .counter-number {
    font-size: 2rem;
  }

  .contact-info-card {
    padding: 20px 16px;
  }

  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }
}

/* --- Extra Small (max 400px) --- */
@media (max-width: 400px) {
  .navbar-main .navbar-brand {
    font-size: 0.85rem;
  }

  .hero-slide-title {
    font-size: 1.5rem;
  }

  .hero-slide-desc {
    font-size: 0.82rem;
  }

  .hero-stat-item strong {
    font-size: 1rem;
  }

  .hero-stat-item span {
    font-size: 0.55rem;
  }

  .hero-link-card {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.25rem;
  }
}
