/* ===== CSS ROOT VARIABLES ===== */
:root {
  /* Soft & Eye-Friendly Color Palette */
  --primary: #4f46e5;
  --primary-light: #7c3aed;
  --primary-dark: #3730a3;
  --secondary: #06b6d4;
  --tertiary: #059669;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Soft Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Bootstrap Override */
  --bs-primary: var(--primary);
  --bs-primary-rgb: 79, 70, 229;

  /* Soft Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #059669 100%);
  --gradient-hero: linear-gradient(135deg, rgba(17,24,39,0.9) 0%, rgba(79,70,229,0.8) 50%, rgba(6,182,212,0.7) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(249,250,251,0.9));
  --gradient-glass: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  /* Soft Enhanced Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 25px rgba(79,70,229,0.25);
  --shadow-secondary: 0 8px 25px rgba(6,182,212,0.25);
  --shadow-glow: 0 0 30px rgba(79,70,229,0.3);

  /* Modern Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Soft Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
}

.region-sidebar-first, .region-sidebar-second, .region-footer, .region-content {
  padding: 0;
}

.user-logged-in .fixed-top {
  z-index: 99;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn-primary {
  background: var(--gradient-primary) !important;
  border: none !important;
  font-weight: 600;
  border-radius: 16px !important;
  padding: 1rem 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-glow) !important;
  filter: brightness(1.1);
}

.btn-outline {
  background: var(--glass-bg) !important;
  color: white !important;
  border: 2px solid var(--glass-border) !important;
  border-radius: 16px !important;
  font-weight: 600;
  padding: 1rem 2.5rem;
  backdrop-filter: var(--glass-blur);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: white !important;
  color: var(--primary) !important;
  border-color: white !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER STYLES ===== */
.user-logged-in .site-header .navbar {
  margin-top: 80px;
}

.header {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(30px) !important;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  padding: 1.5rem 0 !important;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  padding: 1rem 0 !important;
  background: rgba(255,255,255,0.98) !important;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(99,102,241,0.2);
}

.navbar-brand.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary) !important;
  text-decoration: none;
  transition: all var(--transition-bounce);
}

.navbar-brand.logo:hover {
  transform: scale(1.05);
  color: var(--primary) !important;
}

.navbar-brand.logo i {
  font-size: 2.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 0.5rem;
}

.navbar-nav .nav-link {
  color: #475569 !important;
  font-weight: 600;
  padding: 0.75rem 1.25rem !important;
  border-radius: 12px;
  transition: all var(--transition-bounce);
  margin: 0 0.25rem;
  position: relative;
}

.navbar-nav .nav-link.text-white {
  color: white !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.text-white:hover{
  color: white !important;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* ===== MODERN MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
  background: rgba(255,255,255,0.95) !important;
  border: 2px solid rgba(99,102,241,0.15) !important;
  border-radius: 16px !important;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mobile-menu-btn:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #64748b;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn:hover .hamburger-line {
  background: white;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: white;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: white;
}

/* ===== MODERN MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1040;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 50px rgba(0,0,0,0.2);
}

.mobile-menu.active .mobile-menu-content {
  right: 0;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(99,102,241,0.1);
}

.mobile-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.mobile-logo i {
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  border: none;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
  flex: 1;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover::before {
  transform: scaleY(1);
}

.mobile-nav a:hover {
  background: rgba(99,102,241,0.08);
  color: var(--primary);
  transform: translateX(8px);
}

.mobile-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(99,102,241,0.1);
}

.mobile-cta {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
  border: none;
}

.mobile-contact {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-item.phone {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
}

.contact-item.phone:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.contact-item.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
}

.contact-item.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.contact-item i {
  font-size: 1rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  /* height: 90vh; */
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.hero-slider .swiper-slide {
  height: 100vh;
  min-height: 600px;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 2rem 1rem;
}

.slide-content h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  color: white;
  max-width: 90%;
}

.slide-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 400;
  max-width: 80%;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  width: 100%;
}

.hero-buttons .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  min-width: 180px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px);
}

/* ===== SWIPER OVERRIDES ===== */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.15) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  transition: all var(--transition-bounce) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary) !important;
  transform: scale(1.05) !important;
  box-shadow: var(--shadow-primary) !important;
  border-color: var(--primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  transition: all var(--transition-bounce) !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.6) !important;
  border-color: white !important;
}



/* ===== SECTIONS ===== */
/* section {
  padding: 5rem 0;
} */

#services {
  padding-top: 3rem;
  margin-top: 0;
}

.services {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(79,70,229,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(6,182,212,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--gradient-glass);
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.1), transparent);
  transition: left 0.8s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-20px) rotateX(5deg) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(248,250,252,0.1));
}

.service-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-primary);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* ===== IMAGE FIXES ===== */
.portfolio-image {
  height: 400px;
  overflow: hidden;
}

.portfolio-image img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
}

.fade-up {
  transform: translateY(50px);
}

.fade-up.animate-in {
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--gray-700);
  overflow-x: hidden;
  width: 100%;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-800);
  font-weight: 600;
}

p {
  color: var(--gray-600);
  font-weight: 400;
}

.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.col-lg-4, .col-md-6, .col-12 {
  padding-left: 15px;
  padding-right: 15px;
}



/* ===== BUTTON OUTLINE FIXES ===== */
.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}

.btn-outline-primary.active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}

/* ===== PRICING BUTTON FIXES ===== */
.pricing-card .btn-outline {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: transparent !important;
}

.pricing-card .btn-outline:hover {
  background: var(--primary) !important;
  color: white !important;
}

/* ===== SECTION SPACING ===== */
section {
  scroll-margin-top: 100px;
}

/* ===== HERO SECTION FIXES ===== */
.hero-slider {
  position: relative;
  z-index: 1;
}

.swiper-slide {
  position: relative;
}



/* ===== ANIMATION PERFORMANCE ===== */
.animate-on-scroll {
  will-change: transform, opacity;
}

.service-card,
.pricing-card,
.portfolio-item,
.gallery-item,
.review-card {
  will-change: transform;
}

/* ===== Z-INDEX MANAGEMENT ===== */

.mobile-menu {
  z-index: 1040;
}

.lightbox,
.video-modal {
  z-index: 1050;
}
/* ===== PRICING SECTION ===== */
.pricing {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
  position: relative;
}

.pricing-card {
  background: var(--gradient-glass);
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  transform-style: preserve-3d;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.07);
}

.pricing-badge {
  background: var(--gradient-primary) !important;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-primary);
  border: none !important;
  position: absolute !important;
  top: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 20 !important;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #d1d5db 100%);
}

.portfolio-image {
  transition: all var(--transition-base);
  cursor: pointer;
}

.portfolio-overlay {
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(245,158,11,0.8));
  opacity: 0;
  transition: all var(--transition-base);
}

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

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
}

.gallery-item {
  cursor: pointer;
  transition: all var(--transition-bounce);
  border-radius: 16px;
  overflow: hidden;
}

.gallery-overlay {
  background: rgba(99,102,241,0.9);
  opacity: 0;
  transition: all var(--transition-base);
}

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

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
}

.review-card {
  transition: all var(--transition-bounce);
  border: 1px solid rgba(99,102,241,0.1);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
}

.contact-card {
  transition: all var(--transition-bounce);
  border: 1px solid rgba(99,102,241,0.1);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-form {
  border: 1px solid rgba(99,102,241,0.1);
}

.form-control, .form-select {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  transition: all var(--transition-base);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* ===== LIGHTBOX & MODALS ===== */
.lightbox, .video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.lightbox-content, .video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close, .video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.lightbox-close:hover, .video-close:hover {
  background: var(--primary);
  transform: scale(1.1);
}

#lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}

#videoFrame {
  width: 80vw;
  height: 45vw;
  max-width: 1200px;
  max-height: 675px;
  border-radius: 12px;
}

/* ===== ADDITIONAL ANIMATIONS ===== */
.fade-left {
  transform: translateX(-60px);
}

.fade-left.animate-in {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(60px);
}

.fade-right.animate-in {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.8);
}

.scale-in.animate-in {
  transform: scale(1);
}

.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== Z-INDEX MANAGEMENT ===== */

.navbar-brand {
  z-index: 1031 !important;
}

.mobile-menu-btn {
  z-index: 1031 !important;
}

.mobile-menu {
  z-index: 1040;
}

.mobile-menu-content {
  z-index: 1041;
}

/* ===== SERVICE ICON FIX ===== */
.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(99,102,241,0.4);
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-icon::after {
  opacity: 0.3;
}


/* ===== MODERN GALLERY FILTER BUTTONS ===== */
.gallery-filter-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99,102,241,0.3);
}

.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 8px 25px rgba(99,102,241,0.3);
}

.gallery-filter-btn i {
  font-size: 0.875rem;
}


/* ===== GALLERY FILTER ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ENHANCED GALLERY ITEMS ===== */
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  transition: all var(--transition-base);
  filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.gallery-overlay {
  background: linear-gradient(135deg, rgba(99,102,241,0.85), rgba(245,158,11,0.75));
  backdrop-filter: blur(2px);
}

.gallery-overlay i {
  transform: scale(0.8);
  transition: all var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1.2);
}

/* ===== GALLERY SECTION IMPROVEMENTS ===== */
.gallery {
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99,102,241,0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(245,158,11,0.05) 0%, transparent 50%);
  pointer-events: none;
}
/* ===== FOOTER SOCIAL LINKS ===== */
.social-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff0000;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0077b5;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-instagram:hover,
.social-facebook:hover,
.social-youtube:hover,
.social-linkedin:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: white;
}
/* ===== MODERN REVIEWS SLIDER ===== */
.reviews-swiper {
  padding: 2rem 0;
  overflow: hidden;
}

.reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.review-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(99,102,241,0.1);
  position: relative;
  margin: 0 auto;
  transition: all var(--transition-bounce);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.review-quote {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-primary);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.review-author span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.reviews-pagination {
  margin-top: 2rem !important;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(99,102,241,0.3) !important;
  opacity: 1 !important;
  transition: all var(--transition-base) !important;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--primary) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 15px rgba(99,102,241,0.5) !important;
}

