/* ============================================
   SS INVISIBLE GRILL - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary: #6B21A8;
  --primary-light: #9333EA;
  --primary-dark: #581C87;
  --primary-bg: #F3E8FF;
  --secondary: #16A34A;
  --secondary-dark: #15803D;
  --text-dark: #1F2937;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-gray: #F3F4F6;
  --border: #E5E7EB;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-full: 50%;
  --transition: all 0.3s ease;
  --gray: #F3F4F6;
}

/* Accessibility - Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 0;
}

/* Accessibility - Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}

.top-bar a:hover {
  opacity: 0.9;
}

/* Phone icon pulse animation */
.top-bar .phone-icon {
  width: 18px;
  height: 18px;
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* WhatsApp icon glow animation */
.top-bar .wa-icon {
  width: 22px;
  height: 22px;
  background: #25D366;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  animation: waGlow 2s ease-in-out infinite;
  margin-left: 4px;
}

@keyframes waGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 12px 4px rgba(37, 211, 102, 0.4); }
}

.top-bar .wa-icon path {
  fill: white;
}

.top-bar .wa-text {
  color: #25D366;
  font-weight: 700;
  font-size: 15px;
  animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  width: auto;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text::first-letter {
  display: inline-block;
  animation: ssSpin 4s ease-in-out infinite;
  color: var(--primary-light);
}

@keyframes ssSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(10deg) scale(1.1); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-10deg) scale(1.1); }
}

.logo-text small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: logoTaglineFade 4s ease-in-out infinite;
}

@keyframes logoTaglineFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu .nav-item {
  position: relative;
}

.nav-menu .nav-item > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-menu .nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  width: auto;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: scaleX(0);
}

.nav-menu .nav-item > a:hover,
.nav-menu .nav-item > a.active {
  color: var(--primary);
}

.nav-menu .nav-item > a:hover::after,
.nav-menu .nav-item > a.active::after {
  transform: scaleX(1);
}

.nav-menu .nav-item > a .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-menu .nav-item:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 8px 0;
  border: 1px solid var(--border);
}

.nav-menu .nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.nav-dropdown a:hover {
  background: var(--primary-bg);
  color: var(--primary);
  padding-left: 22px;
}

.nav-dropdown a.active {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(107, 33, 168, 0.25);
}

.btn-call:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.35);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

/* Enquiry button hidden by default */
.enquiry-btn {
  display: none;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 10px 17px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(107, 33, 168, 0.25);
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.35);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   MOBILE CTA BAR (below carousel)
   ============================================ */
.mobile-cta-bar {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
  padding: 40px 0 30px;
  min-height: 480px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  position: relative;
}

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

/* ============================================
   GEAR SPINNING ANIMATION
   ============================================ */
.gear-left,
.gear-right {
  display: inline-flex;
  vertical-align: middle;
}

.gear-left svg,
.gear-right svg {
  width: 42px;
  height: 42px;
  animation: gearSpin 6s linear infinite;
}

.gear-left {
  margin-right: 8px;
}

.gear-right {
  margin-left: 8px;
}

@keyframes gearSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 33, 168, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.hero-features {
  display: flex;
  gap: 32px;
}

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

.hero-feature .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  color: var(--primary);
}

.hero-feature span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-slider {
  position: relative;
}

.hero-slider .slide {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-slider .slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(107, 33, 168, 0.9);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary);
}

/* ============================================
   TRUSTED BRANDS
   ============================================ */
.trusted-brands {
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 50%, #faf5ff 100%);
  border-top: 1px solid rgba(107,33,168,0.06);
  border-bottom: 1px solid rgba(107,33,168,0.06);
  position: relative;
  overflow: hidden;
}

.trusted-brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(107,33,168,0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(16,185,129,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.trusted-brands h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.trusted-brands h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(107,33,168,0.08);
  box-shadow: 0 2px 12px rgba(107,33,168,0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(107,33,168,0.1);
  border-color: rgba(107,33,168,0.15);
}

.brands-grid .brand-logo {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}

.brands-grid .brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .trusted-brands {
    padding: 30px 0;
  }
  
  .trusted-brands h3 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  .brands-grid {
    gap: 16px;
  }
  
  .brand-item {
    padding: 12px 18px;
    border-radius: 12px;
  }
  
  .brands-grid .brand-logo {
    height: 55px;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .trusted-brands {
    padding: 24px 0;
  }
  
  .trusted-brands h3 {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
  
  .brands-grid {
    gap: 12px;
  }
  
  .brand-item {
    padding: 10px 14px;
    flex: 0 0 calc(50% - 12px);
    justify-content: center;
  }
  
  .brands-grid .brand-logo {
    height: 45px;
    max-width: 120px;
  }
}

/* Water ripple on carousel slides */
.hero-slider .slide {
  position: relative;
  overflow: hidden;
}

.hero-slider .slide::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  animation: waterRipple 4s ease-out infinite;
  pointer-events: none;
}

.hero-slider .slide::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  animation: waterRipple 4s ease-out 1.5s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes waterRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
  }
}

/* Carousel text overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.85) 0%, rgba(88, 28, 135, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 30px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider .slide:hover .slide-overlay,
.hero-slider .slide.active .slide-overlay {
  opacity: 1;
}

.slide-overlay h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  animation: slideTextUp 0.6s ease forwards;
  transform: translateY(20px);
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-overlay p {
  font-size: 15px;
  margin-bottom: 16px;
  opacity: 0;
  animation: slideTextUp 0.6s ease 0.2s forwards;
  transform: translateY(20px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.slide-overlay .slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--white) 0%, #f0e6ff 100%);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  animation: slideTextUp 0.6s ease 0.4s forwards;
  transform: translateY(20px);
  text-decoration: none;
  transition: var(--transition);
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-overlay .slide-btn:hover {
  background: linear-gradient(135deg, #f0e6ff 0%, var(--white) 100%);
  transform: translateY(0) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideTextUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.features-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 50px 0;
  background: var(--bg-light);
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: 90%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  width: 150px;
  height: 100px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  border: 2px solid var(--white);
}

.experience-badge .number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge span:last-child {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-list {
  margin-bottom: 28px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.about-list li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
}

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

.stat-item .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-card a:hover {
  gap: 8px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: 50px 0;
  background: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.process-card .step,
.process-card .step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.process-card::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.process-card:last-child::after {
  display: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

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

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 50px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card .location {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CTA BAR
   ============================================ */
.cta-bar {
  background: var(--primary);
  padding: 20px 0;
  color: var(--white);
}

.cta-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-bar h3 {
  font-size: 22px;
  font-weight: 700;
}

.cta-bar p {
  font-size: 14px;
  opacity: 0.9;
}

.cta-bar .btn-primary {
  background: linear-gradient(135deg, var(--white) 0%, #f0e6ff 100%);
  color: var(--primary);
  border: none;
}

.cta-bar .btn-primary:hover {
  background: linear-gradient(135deg, #f0e6ff 0%, var(--white) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

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

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

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-gray);
}

.map-container {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ============================================
   MISSING CSS FIXES
   ============================================ */

/* Form Submit Button */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107,33,168,0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,33,168,0.4);
}

.form-submit svg {
  flex-shrink: 0;
}

/* CTA Button Base */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn.call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(107,33,168,0.3);
}

.cta-btn.call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,33,168,0.4);
}

.cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.cta-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer Contact Item */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  transition: color 0.3s ease;
}

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

/* Contact Info Item Links */
.contact-info-item a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary-dark);
}

/* Contact Form Heading */
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer Brand Image */
.footer-brand img {
  height: 120px;
  margin-bottom: 16px;
  animation: footerLogoPulse 3s ease-in-out infinite;
}

@keyframes footerLogoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.1); }
}

/* ============================================
   WHY US / FAQ
   ============================================ */
.why-us {
  padding: 50px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.why-us-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.why-us-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-us-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.faq {
  padding: 50px 0;
  background: var(--bg-light);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item .question {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item .question:hover {
  color: var(--primary);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item .answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-item.active .answer {
  max-height: 300px;
}

.faq-item.active .question {
  color: var(--primary);
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
  padding: 50px 0;
}

.service-detail .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.service-detail h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 20px;
}

.service-detail ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.service-detail ul li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.service-sidebar {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  height: fit-content;
}

.service-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.service-sidebar ul li:last-child {
  border-bottom: none;
}

.service-sidebar ul li a {
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.service-sidebar ul li a:hover {
  color: var(--primary);
}

.sidebar-cta {
  margin-top: 24px;
  padding: 20px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}

.sidebar-cta h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.sidebar-cta p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.sidebar-cta a:hover {
  color: var(--primary-dark);
}

.service-detail-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-content ul {
  margin-bottom: 20px;
}

.service-detail-content ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.service-detail-content ul li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  margin: 0 8px;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.gallery-item .overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 34px;
  font-weight: 800;
}

.page-banner p {
  opacity: 0.9;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a2e;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom .designed-by {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .designed-by a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-bottom .designed-by a:hover {
  color: var(--white);
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contact-list li a:hover {
  color: var(--white);
}

.footer-contact-list li svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

/* Footer Areas */
.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.area-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}

.area-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Footer CTA */
.footer-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.4);
}

/* Footer Utility Links Bar */
.footer-utils {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}

.footer-utils .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-utils a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-utils a:hover {
  color: var(--white);
}

/* Footer Bottom Updated */
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Listing Page */
.blog-listing {
  padding: 50px 0;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-date {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.blog-card .read-more:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* Blog Detail Page */
.blog-detail {
  padding: 50px 0;
}

.blog-detail .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.blog-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 14px;
  color: var(--text-gray);
}

.blog-sep {
  color: #D1D5DB;
}

.blog-reading-time {
  color: var(--primary);
  font-weight: 600;
}

.blog-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-bg);
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-content strong {
  color: var(--text-dark);
  font-weight: 700;
}

.blog-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.blog-content a:hover {
  color: var(--primary-dark);
}

.blog-content ul,
.blog-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-bg);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-widget ul li a::before {
  content: '→';
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
}

.sidebar-widget ul li a:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

/* Blog CTA Box in Sidebar */
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  text-align: center;
}

.sidebar-cta h3,
.sidebar-cta h4 {
  color: var(--white);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.sidebar-cta p {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.sidebar-cta a {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-detail .container {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-content {
    padding: 24px;
  }
  
  .blog-content h2 {
    font-size: 20px;
  }
  
  .blog-card {
    padding: 24px;
  }
  
  .blog-card h2 {
    font-size: 18px;
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background: #25D366;
  animation: whatsappPulse 2s infinite;
}

.float-btn.call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  animation: callBounce 2s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes callBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  15% { transform: translateY(-4px) rotate(-5deg); }
  30% { transform: translateY(0) rotate(5deg); }
  45% { transform: translateY(-2px) rotate(-3deg); }
  60% { transform: translateY(0) rotate(2deg); }
}

.float-btn .notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #E53E3E;
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgeBounce 1s ease infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   WHATSAPP NOTIFICATION
   ============================================ */
.whatsapp-notification {
  position: fixed;
  bottom: 110px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 16px 20px;
  z-index: 9998;
  max-width: 300px;
  animation: slideInRight 0.4s ease, notifPulse 2s ease-in-out 0.4s 3;
  border-left: 4px solid #25D366;
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-xl); }
  50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
}

@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.whatsapp-notification .notif-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.whatsapp-notification .notif-header img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
}

.whatsapp-notification .notif-header strong {
  font-size: 14px;
}

.whatsapp-notification .notif-body {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.whatsapp-notification .notif-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-notification .notif-btn:hover {
  background: #1ebe5d;
}

/* ============================================
   ENQUIRY MODAL
   ============================================ */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.enquiry-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition);
}

.enquiry-modal-overlay.active .enquiry-modal {
  transform: translateY(0);
}

.enquiry-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.enquiry-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.enquiry-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-gray);
  padding: 4px;
}

.enquiry-modal-body {
  padding: 24px;
}

.enquiry-modal-body .form-group {
  margin-bottom: 16px;
}

.enquiry-modal-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.enquiry-modal-body input,
.enquiry-modal-body select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.enquiry-modal-body input:focus,
.enquiry-modal-body select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.enquiry-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.enquiry-submit-btn:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #17a852 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE RESPONSIVE (768px)
   ============================================ */
@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    font-size: 12px;
    gap: 16px;
  }
  
  .logo-text {
    display: block;
  }
  
  .logo img {
    height: 45px;
  }
  
  .gear-left svg,
  .gear-right svg {
    width: 34px;
    height: 34px;
  }
  
  .hamburger {
    display: flex;
    z-index: 1002;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-right {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 30px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-item {
    width: 100%;
  }
  
  .nav-menu .nav-item > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }
  
  .nav-menu .nav-item > a::after {
    display: none;
  }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-dropdown.active {
    max-height: 400px;
  }
  
  .nav-dropdown a {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  
  .mobile-cta-bar {
    display: flex;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  
  .mobile-cta-call,
  .mobile-cta-enquiry {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .mobile-cta-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  
  .mobile-cta-call:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  }
  
  .mobile-cta-enquiry {
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
    color: var(--white);
  }
  
  .mobile-cta-enquiry:hover {
    background: linear-gradient(135deg, #1ebe5d 0%, #17a852 100%);
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    max-width: 100%;
  }
  
  .hero {
    padding: 0 0 80px;
  }
  
  .hero-slider {
    order: -1;
    margin-bottom: 0;
    width: 100%;
  }
  
  .hero-slider .slide {
    position: relative;
    border-radius: 0;
    margin: 0;
  }
  
  .hero-slider img {
    height: 300px;
    width: 100%;
  }
  
  .hero-content {
    text-align: center;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
  
  .hero-feature {
    flex: 1;
    min-width: 0;
  }
  
  .hero-feature span {
    font-size: 10px;
    line-height: 1.3;
  }
  
  .hero-feature .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }
  
  .floating-buttons {
    bottom: 110px;
    right: 16px;
  }
  
  .float-btn {
    width: 52px;
    height: 52px;
  }
  
  .float-btn .tooltip {
    display: none;
  }
  
  .scroll-top {
    bottom: 90px;
    right: 16px;
  }
  
  .whatsapp-notification {
    bottom: auto;
  bottom: 20%;
    right: 80px;
    transform: translateY(-50%);
  }
  
  .slide-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.85) 0%, rgba(88, 28, 135, 0.7) 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    padding-bottom: 60px;
  }
  
  .slide-overlay h3 {
    font-size: 20px;
    margin-bottom: 4px;
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .slide-overlay p {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .slide-overlay .slide-btn {
    font-size: 14px;
    padding: 10px 20px;
    opacity: 1;
    transform: none;
    animation: none;
    position: relative;
    z-index: 2;
  }
  
  .slide-bottom {
    padding: 12px 14px 16px;
  }
  
  .slide-bottom h3 {
    font-size: 14px;
  }
  
  .slide-bottom p {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
.slide-bottom .slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--white) 0%, #f0e6ff 100%);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-bottom .slide-btn:hover {
  background: linear-gradient(135deg, #f0e6ff 0%, var(--white) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
  
  .about .container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .footer-utils .container {
    gap: 12px;
  }
  
  .cta-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .page-banner h1 {
    font-size: 28px;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .floating-buttons {
    bottom: 110px;
    right: 16px;
  }
  
  .float-btn {
    width: 52px;
    height: 52px;
  }
  
  .float-btn .tooltip {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail .container {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    order: -1;
  }
  
  .features-bar .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
  }
  
  .map-container iframe {
    height: 200px;
  }
  
  .contact-form h3 {
    font-size: 20px;
  }
}

/* ============================================
   MOBILE SMALL (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }
  
  .gear-left svg,
  .gear-right svg {
    width: 28px;
    height: 28px;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================
   LANDING PAGE STYLES
   ======================== */

.landing-page .top-bar,
.landing-page .header .nav-menu,
.landing-page .header .nav-right,
.landing-page .header .hamburger,
.landing-page .page-banner,
.landing-page .footer,
.landing-page .scroll-top {
  display: none !important;
}

/* Sticky Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 8px 0;
  animation: slideDown 0.5s ease;
}

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

.landing-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-header .logo-text {
  color: #1a1a2e;
}

.landing-header .logo-text small {
  color: var(--text-light);
}

.landing-cta-group {
  display: flex;
  gap: 10px;
}

.landing-call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a2e;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid #1a1a2e;
}

.landing-wa-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.landing-call-btn:hover,
.landing-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Floating CTA Bar Mobile */
.landing-floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 10px 16px;
  gap: 10px;
}

.landing-floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--white);
}

.landing-floating-cta .lcf-call {
  background: var(--gradient);
}

.landing-floating-cta .lcf-wa {
  background: #25d366;
}

/* Ticker / Marquee Bar */
.landing-ticker {
  background: #25d366;
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.5px;
}

.ticker-content {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  color: var(--white);
  font-size: 14px;
}

.ticker-item svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Landing Hero */
.landing-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #6B21A8 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.landing-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease;
  backdrop-filter: blur(4px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease;
}

.landing-hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

.landing-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 1.1s ease;
}

.offer-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.offer-tag::before {
  content: '✓';
  font-weight: 900;
  color: #4ade80;
}

.landing-hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 1.2s ease;
}

.landing-hero-cta .cta-btn.call {
  background: var(--white);
  color: #1a1a2e;
  border: 2px solid var(--white);
  font-weight: 700;
}

.landing-hero-cta .cta-btn.call:hover {
  background: transparent;
  color: var(--white);
}

.landing-hero-cta .cta-btn.whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}

.landing-hero-cta .cta-btn.whatsapp:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp 1.3s ease;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.trust-item svg {
  stroke: #4ade80;
}

.landing-hero-image {
  position: relative;
  animation: fadeInUp 1s ease;
}

.landing-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(107,33,168,0.2);
}

.landing-hero-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

/* Stats Section */
.landing-stats {
  padding: 50px 0;
  background: #1a1a2e;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.landing-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107,33,168,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape2 8s ease-in-out infinite;
}

.landing-stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74,222,128,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape1 6s ease-in-out infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Form Section */
.landing-form-section {
  padding: 60px 0;
  background: var(--white);
}

.landing-form-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Mission Card */
.mission-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(107,33,168,0.3);
  box-shadow: 0 20px 60px rgba(26,26,46,0.4);
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.15) 0%, transparent 50%, rgba(16,185,129,0.08) 100%);
  pointer-events: none;
}

.mission-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mission-card .mission-text {
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mission-card .support-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.mission-card .support-section h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 8px;
}

.mission-card .support-section p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.6;
}

.landing-form-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-form-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.landing-form-contact a.call-btn {
  background: linear-gradient(135deg, #6B21A8, #9333EA);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(107,33,168,0.35);
}

.landing-form-contact a.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,33,168,0.5);
}

.landing-form-contact a.call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.landing-form-contact a.call-btn:hover::before {
  left: 100%;
}

.landing-form-contact a.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.landing-form-contact a.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.landing-form-contact a.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.landing-form-contact a.whatsapp-btn:hover::before {
  left: 100%;
}

/* Text reveal animation */
.text-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 0.6s ease forwards;
}

.text-reveal.delay-1 { animation-delay: 0.1s; }
.text-reveal.delay-2 { animation-delay: 0.2s; }
.text-reveal.delay-3 { animation-delay: 0.3s; }
.text-reveal.delay-4 { animation-delay: 0.4s; }
.text-reveal.delay-5 { animation-delay: 0.5s; }

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

/* Landing Form */
.landing-form {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107,33,168,0.2);
  box-shadow: 0 20px 60px rgba(26,26,46,0.3);
  position: relative;
  overflow: hidden;
}

.landing-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74,222,128,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.landing-form::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(107,33,168,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.landing-form .form-group {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.landing-form input,
.landing-form select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.landing-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.landing-form input:focus,
.landing-form select:focus {
  border-color: #4ade80;
  outline: none;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.15);
  background: rgba(255,255,255,0.12);
}

.landing-form select option {
  background: #1a1a2e;
  color: var(--white);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* Form floating label effect */
.form-floating {
  position: relative;
}

.form-floating label {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 4px;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 14px;
  font-size: 11px;
  color: #4ade80;
  background: #1a1a2e;
  font-weight: 600;
}

.form-floating select {
  padding-top: 20px;
  padding-bottom: 12px;
}

.form-floating select + label {
  top: -8px;
  left: 14px;
  font-size: 11px;
  color: #4ade80;
  background: #1a1a2e;
  font-weight: 600;
}

/* Landing Features */
.landing-features {
  padding: 60px 0;
  background: var(--gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(107,33,168,0.12);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(88,28,135,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Materials Section */
.landing-materials {
  padding: 60px 0;
  background: var(--white);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.material-card {
  background: var(--gray);
  padding: 30px;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--primary);
}

.material-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.material-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.material-item .mat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.material-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.material-item p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Landing Services */
.landing-services {
  padding: 60px 0;
  background: var(--gray);
}

.landing-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.landing-service-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
}

.landing-service-card::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.landing-service-card:hover {
  box-shadow: 0 10px 30px rgba(107,33,168,0.1);
  transform: translateX(4px);
}

.landing-service-card:hover::after {
  transform: translateX(4px);
}

.landing-service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  padding-right: 30px;
}

.landing-service-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.landing-service-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* Service Areas */
.landing-areas {
  padding: 60px 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.area-tag {
  background: var(--gray);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Landing Testimonials */
.landing-testimonials {
  padding: 60px 0;
  background: var(--gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  color: rgba(107,33,168,0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-card strong {
  color: var(--primary);
  font-size: 14px;
}

/* Landing FAQ */
.landing-faq {
  padding: 60px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  background: var(--gray);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(107,33,168,0.05);
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Landing Final CTA */
.landing-final-cta {
  padding: 30px 0;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.05'%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");
}

.landing-final-cta > * {
  position: relative;
  z-index: 1;
}

.landing-final-cta h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 12px;
}

.landing-final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 28px;
}

.landing-final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.landing-final-cta .cta-btn.call {
  background: var(--white);
  color: var(--primary);
}

.landing-final-cta .cta-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

/* Keywords Footer */
.landing-keywords {
  padding: 40px 0;
  background: #1a1a2e;
  color: rgba(255,255,255,0.5);
}

.landing-keywords h4 {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* Button Sizes */
.cta-btn.large {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
}

.cta-btn.full-width {
  width: 100%;
  justify-content: center;
}

/* About Section Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Landing Responsive */
@media (max-width: 992px) {
  .landing-hero .container {
    grid-template-columns: 1fr;
  }
  .landing-hero-image {
    display: none;
  }
  .landing-form-wrapper {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .landing-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .landing-header .logo-text small {
    display: none;
  }
  .landing-call-btn,
  .landing-wa-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .landing-hero {
    padding: 40px 0;
  }
  .landing-hero h1 {
    font-size: 28px;
  }
  .landing-offers {
    flex-direction: column;
  }
  .landing-hero-cta {
    flex-direction: column;
  }
  .landing-trust-row {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .landing-services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item h3 {
    font-size: 32px;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-final-cta h2 {
    font-size: 24px;
  }
  .landing-final-cta-btns {
    flex-direction: column;
  }
  .cta-btn.large {
    padding: 14px 24px;
    font-size: 14px;
  }
  .landing-floating-cta {
    display: flex;
  }
  .landing-page .floating-buttons {
    bottom: 70px;
  }
  /* Section padding reduction */
  .landing-form-section,
  .landing-features,
  .landing-materials,
  .landing-services,
  .landing-areas,
  .landing-testimonials,
  .landing-faq,
  .landing-final-cta {
    padding: 40px 0;
  }
  .landing-about-section {
    padding: 40px 0 !important;
  }
  /* Mission card */
  .mission-card {
    padding: 28px;
  }
  .mission-card h3 {
    font-size: 20px;
  }
  /* Form */
  .landing-form {
    padding: 24px;
  }
  .landing-form-info h2 {
    font-size: 26px;
  }
  .landing-form-contact a {
    padding: 14px 20px;
    font-size: 15px;
  }
  /* Feature cards */
  .feature-card {
    padding: 24px 20px;
  }
  .material-card {
    padding: 24px;
  }
  .landing-service-card {
    padding: 22px;
  }
  .testimonial-card {
    padding: 24px;
  }
  /* About section heading */
  .about-heading {
    font-size: 24px !important;
  }
  /* Bottom CTA buttons */
  .bottom-cta-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  /* Form submit button */
  .form-submit-btn {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  .landing-hero h1 {
    font-size: 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item h3 {
    font-size: 28px;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .landing-form-info h2 {
    font-size: 24px;
  }
  .landing-form-contact a {
    padding: 12px 16px;
    font-size: 14px;
  }
  /* Section padding further reduction */
  .landing-form-section,
  .landing-features,
  .landing-materials,
  .landing-services,
  .landing-areas,
  .landing-testimonials,
  .landing-faq,
  .landing-final-cta {
    padding: 30px 0;
  }
  .landing-about-section {
    padding: 30px 0 !important;
  }
  /* Mission card */
  .mission-card {
    padding: 20px;
  }
  .mission-card h3 {
    font-size: 18px;
  }
  .mission-card .mission-text {
    font-size: 14px;
  }
  /* Form */
  .landing-form {
    padding: 20px;
  }
  .landing-form-info h2 {
    font-size: 22px;
  }
  .landing-form-info p {
    font-size: 14px;
  }
  /* Feature cards */
  .feature-card {
    padding: 20px 16px;
  }
  .material-card {
    padding: 20px;
  }
  .landing-service-card {
    padding: 20px;
  }
  .testimonial-card {
    padding: 20px;
  }
  /* About section heading */
  .about-heading {
    font-size: 22px !important;
  }
  /* Bottom CTA buttons */
  .bottom-cta-btn {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  /* Form submit button */
  .form-submit-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  /* Hero subtitle */
  .landing-subtitle {
    font-size: 15px;
  }
}

/* ========================
   MOTION GRAPHICS
   ======================== */

/* Floating shapes */
.motion-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.motion-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: var(--primary);
  top: 10%;
  right: 5%;
  animation: floatShape1 6s ease-in-out infinite;
}

.shape-2 {
  width: 50px;
  height: 50px;
  background: #25d366;
  bottom: 20%;
  right: 15%;
  animation: floatShape2 8s ease-in-out infinite;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: var(--primary);
  top: 30%;
  right: 20%;
  animation: floatShape3 10s ease-in-out infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
  width: 60px;
  height: 60px;
  background: #f59e0b;
  bottom: 10%;
  right: 30%;
  animation: floatShape1 7s ease-in-out infinite reverse;
  border-radius: 50% 0 50% 50%;
}

.shape-5 {
  width: 40px;
  height: 40px;
  background: #25d366;
  top: 60%;
  right: 8%;
  animation: floatShape2 5s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -20px) rotate(90deg); }
  50% { transform: translate(-5px, -40px) rotate(180deg); }
  75% { transform: translate(15px, -20px) rotate(270deg); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.2); }
}

@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(20px, -25px) rotate(120deg) scale(1.1); }
  66% { transform: translate(-15px, -35px) rotate(240deg) scale(0.9); }
}

/* Gear animation for hero */
.hero-gear {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.15;
  animation: spinGear 20s linear infinite;
  z-index: 0;
}

.hero-gear svg {
  width: 150px;
  height: 150px;
}

@keyframes spinGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pulse rings for CTA */
.pulse-ring {
  position: relative;
  display: inline-flex;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 3px solid currentColor;
  animation: pulseRing 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Bounce animation for icons */
.bounce-in {
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* Slide in from right */
.slide-in-right {
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Wave animation for backgrounds */
.wave-bg {
  position: relative;
  overflow: hidden;
}

.wave-bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,64C960,53,1056,43,1152,48C1248,53,1344,75,1392,85.3L1440,96L1440,120L0,120Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 60px;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Floating particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 11s; }
.particle:nth-child(8) { left: 60%; animation-delay: 7s; animation-duration: 15s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ========================
   CLOTH HANGER MOTION GRAPHICS
   ======================== */

/* Hanging rod animation */
.hanger-rod {
  position: relative;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #6B21A8, transparent);
  margin: 20px 0;
  border-radius: 2px;
}

.hanger-rod::before,
.hanger-rod::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 16px;
  height: 20px;
  border: 3px solid #6B21A8;
  border-radius: 0 0 8px 8px;
  border-top: none;
}

.hanger-rod::before { left: 20%; }
.hanger-rod::after { right: 20%; }

/* Pulley animation */
.pulley-animation {
  position: relative;
  width: 80px;
  height: 80px;
}

.pulley-wheel {
  width: 50px;
  height: 50px;
  border: 4px solid #6B21A8;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: spinPulley 3s linear infinite;
}

.pulley-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #6B21A8;
  border-radius: 50%;
}

.pulley-rope {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background: linear-gradient(to bottom, #6B21A8, transparent);
  animation: ropeMove 2s ease-in-out infinite;
}

@keyframes spinPulley {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes ropeMove {
  0%, 100% { height: 30px; }
  50% { height: 20px; }
}

/* Clothes hanging animation */
.clothes-line {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.cloth-item {
  position: absolute;
  top: 20px;
  animation: clothSwing 4s ease-in-out infinite;
}

.cloth-item:nth-child(1) { left: 10%; animation-delay: 0s; }
.cloth-item:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.cloth-item:nth-child(3) { left: 50%; animation-delay: 1s; }
.cloth-item:nth-child(4) { left: 70%; animation-delay: 1.5s; }

@keyframes clothSwing {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Wire/rod installation animation */
.install-wire {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6B21A8, #6B21A8, transparent);
  position: relative;
  margin: 30px 0;
}

.install-wire::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: wireInstall 3s ease-in-out infinite;
}

@keyframes wireInstall {
  0% { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 0.3; }
}

/* Bracket animation */
.bracket-anim {
  position: relative;
  width: 60px;
  height: 40px;
}

.bracket-anim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #6B21A8;
  border-radius: 0 0 10px 10px;
  border-top: none;
  animation: bracketPulse 2s ease-in-out infinite;
}

@keyframes bracketPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.1); }
}

/* Section specific motion - Services */
.landing-services {
  position: relative;
}

.landing-services::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(107,33,168,0.08);
  border-radius: 50%;
  animation: floatShape3 12s ease-in-out infinite;
}

/* Section specific motion - Testimonials */
.landing-testimonials {
  position: relative;
  overflow: hidden;
}

.landing-testimonials::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107,33,168,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape1 10s ease-in-out infinite;
}

/* Section specific motion - FAQ */
.landing-faq {
  position: relative;
}

.landing-faq::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(37,211,102,0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatShape3 8s ease-in-out infinite;
}

/* Feature card hover animation enhancement */
.feature-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Service card sliding border */
.landing-service-card {
  position: relative;
  overflow: hidden;
}

.landing-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: width 0.4s ease;
}

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

/* Testimonial card float effect */
.testimonial-card {
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(107,33,168,0.12);
}

/* Area tag ripple effect */
.area-tag {
  position: relative;
  overflow: hidden;
}

.area-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(107,33,168,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.area-tag:hover::after {
  width: 200%;
  height: 200%;
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */

/* Fade in up on scroll */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.scroll-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Fade in from right */
.scroll-fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Scale in */
.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Feature icon bounce on scroll */
.feature-icon.scroll-bounce {
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon.scroll-bounce.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Section title animation */
.section-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Area tag stagger */
.area-tag {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.area-tag.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Service card slide in */
.landing-service-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing-service-card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Testimonial card pop */
.testimonial-card {
  opacity: 0;
  transform: translateY(30px) rotate(-2deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Material card reveal */
.material-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.material-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ item slide */
.faq-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stats number pop */
.stat-item {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item.visible {
  opacity: 1;
  transform: scale(1);
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Pulse animation for CTA buttons */
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.cta-btn.whatsapp {
  animation: ctaPulse 2s infinite;
}

/* Glow effect on hover */
.cta-btn.call:hover {
  box-shadow: 0 0 30px rgba(26,26,46,0.4);
}

/* Badge shine effect */
.landing-badge {
  position: relative;
  overflow: hidden;
}

.landing-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Offer tag float */
.offer-tag {
  transition: all 0.3s ease;
}

.offer-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Trust item checkmark pulse */
.trust-item svg {
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============================================
   INDEX.HTML - MOTION GRAPHICS & ANIMATIONS
   ============================================ */

/* Hero Gradient Animation */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.03) 0%, transparent 50%, rgba(16,185,129,0.02) 100%);
  animation: heroGradient 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGradient {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Hero Text Reveal */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroTextReveal 0.8s ease forwards 0.2s;
}

.hero-content .hero-subtitle,
.hero-content > p {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextReveal 0.7s ease forwards 0.5s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextReveal 0.7s ease forwards 0.7s;
}

.hero-features {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextReveal 0.7s ease forwards 0.9s;
}

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

/* Hero Feature Pill Stagger */
.hero-feature:nth-child(1) { animation-delay: 1.0s; }
.hero-feature:nth-child(2) { animation-delay: 1.1s; }
.hero-feature:nth-child(3) { animation-delay: 1.2s; }
.hero-feature:nth-child(4) { animation-delay: 1.3s; }

.hero-feature {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  animation: featurePillReveal 0.5s ease forwards;
}

@keyframes featurePillReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Gear Rotation Enhancement */
.gear-left svg {
  animation: spinGear 15s linear infinite;
}

.gear-right svg {
  animation: spinGear 15s linear infinite reverse;
}

/* Hero Slider Enhancements */
.hero-slider .slide {
  transition: opacity 0.8s ease-in-out;
}

.slide-overlay {
  opacity: 0;
  transform: translateY(20px);
  animation: slideOverlayReveal 0.6s ease forwards 0.4s;
}

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

/* Slider Dot Pulse */
.dot.active {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(107,33,168,0.4); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(107,33,168,0); }
}

/* Trusted Brands Scroll Animation */
.brand-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-item:nth-child(1) { transition-delay: 0.1s; }
.brand-item:nth-child(2) { transition-delay: 0.2s; }
.brand-item:nth-child(3) { transition-delay: 0.3s; }
.brand-item:nth-child(4) { transition-delay: 0.4s; }

/* Brand Logo Hover */
.brand-logo {
  transition: all 0.4s ease;
  filter: grayscale(30%);
}

.brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* About Section Motion */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,33,168,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape1 12s ease-in-out infinite;
  pointer-events: none;
}

.about-image {
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(16,185,129,0.1));
  border-radius: 50%;
  animation: floatShape2 6s ease-in-out infinite;
  z-index: -1;
}

/* Experience Badge Pulse */
.experience-badge {
  position: relative;
}

.experience-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(107,33,168,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: badgePulseRing 2.5s ease-out infinite;
}

@keyframes badgePulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Stats Counter Animation */
.stat-item {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item.visible {
  opacity: 1;
  transform: scale(1);
}

.stat-item .number {
  display: inline-block;
  transition: all 0.3s ease;
}

.stat-item:hover .number {
  transform: scale(1.1);
  color: var(--primary);
}

/* Services Section Motion */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107,33,168,0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape3 10s ease-in-out infinite;
  pointer-events: none;
}

/* Service Card Animations */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.4s ease;
}

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

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.service-card .icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(107,33,168,0.2);
}

/* Process Section Motion */
.process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 100%);
}

.process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(107,33,168,0.1), transparent);
  transform: translateY(-50%);
  z-index: 0;
}

.process-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.process-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-card:nth-child(1) { transition-delay: 0.1s; }
.process-card:nth-child(2) { transition-delay: 0.25s; }
.process-card:nth-child(3) { transition-delay: 0.4s; }
.process-card:nth-child(4) { transition-delay: 0.55s; }

.step-num {
  transition: all 0.4s ease;
}

.process-card:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(107,33,168,0.25);
}

/* Features Bar Motion */
.features-bar {
  position: relative;
  overflow: hidden;
}

.features-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(107,33,168,0.02), transparent, rgba(16,185,129,0.02));
  animation: featuresBarShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes featuresBarShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.feature-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }

.feature-item .icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Testimonials Motion */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107,33,168,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape1 10s ease-in-out infinite;
  pointer-events: none;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(30px) rotate(-1deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.25s; }
.testimonial-card:nth-child(3) { transition-delay: 0.4s; }

.testimonial-card:hover {
  transform: translateY(-6px) rotate(0);
  box-shadow: 0 15px 40px rgba(107,33,168,0.12);
}

/* CTA Bar Motion */
.cta-bar {
  position: relative;
  overflow: hidden;
}

.cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: ctaBarShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaBarShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* CTA Buttons Animation - only on landing pages */
.landing-page .cta-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.landing-page .cta-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Motion */
.footer {
  position: relative;
}

/* Footer Animation - only on landing pages */
.landing-page .footer-brand {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.landing-page .footer-brand.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Column Animation - only on landing pages */
.landing-page .footer-col {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.landing-page .footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .footer-col:nth-child(2) { transition-delay: 0.1s; }
.landing-page .footer-col:nth-child(3) { transition-delay: 0.2s; }
.landing-page .footer-col:nth-child(4) { transition-delay: 0.3s; }

/* Floating Buttons Enhanced */
.float-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.call {
  animation: floatBtnBounce 2s ease-in-out infinite;
}

@keyframes floatBtnBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.float-btn.whatsapp {
  animation: floatBtnPulse 2s ease-in-out infinite;
}

@keyframes floatBtnPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Notification Badge */
.notification-badge {
  animation: notifBounce 1s ease-in-out infinite;
}

@keyframes notifBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Scroll to Top */
.scroll-top {
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107,33,168,0.3);
}

/* Section Label Animation */
.section-label {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.section-label.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Title Animation */
.section-title {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enquiry Modal Animation */
.enquiry-modal-overlay {
  transition: opacity 0.3s ease;
}

.enquiry-modal {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enquiry-modal-overlay.active .enquiry-modal {
  transform: scale(1) translateY(0);
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  animation: mobileCtaSlideUp 0.5s ease forwards;
}

@keyframes mobileCtaSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ============================================
   MOBILE RESPONSIVE ANIMATIONS
   ============================================ */

@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  .hero::before {
    animation: none;
    opacity: 0.3;
  }
  
  .about::before,
  .services::before,
  .testimonials::before {
    animation: none;
    opacity: 0.3;
  }
  
  /* Disable gear rotation on mobile for performance */
  .gear-left svg,
  .gear-right svg {
    animation: none;
  }
  
  /* Reduce particle count on mobile */
  .hero-particles .particle:nth-child(n+5) {
    display: none;
  }
  
  /* Smaller floating shapes on mobile */
  .about-image::after {
    width: 60px;
    height: 60px;
  }
  
  /* Process connecting line */
  .process::before {
    display: none;
  }
  
  /* Reduce badge pulse on mobile */
  .experience-badge::after {
    animation: badgePulseRing 3s ease-out infinite;
  }
  
  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
  
  .gear-left,
  .gear-right {
    display: none;
  }
  
  .hero-features {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .hero-feature {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .stat-item .number {
    font-size: 28px;
  }
  
  .service-card .icon {
    width: 50px;
    height: 50px;
  }
  
  .step-num {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* ============================================
   VOICE ASSISTANT
   ============================================ */

/* Floating Mic Button */
.va-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6B21A8 0%, #9333EA 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(107,33,168,0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: vaBtnIdle 3s ease-in-out infinite;
}

.va-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(107,33,168,0.5);
}

.va-btn:active {
  transform: scale(0.95);
}

.va-btn svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.va-btn.listening svg {
  animation: vaMicPulse 1s ease-in-out infinite;
}

/* Idle animation */
@keyframes vaBtnIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Mic pulse when listening */
@keyframes vaMicPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Listening ring animation */
.va-btn.listening {
  animation: none;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 0 0 0 rgba(220,38,38,0.4);
  animation: vaListeningRing 1.5s ease-in-out infinite;
}

@keyframes vaListeningRing {
  0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* Notify pulse (before auto-greet) */
.va-btn.notify {
  animation: vaNotifyPulse 0.8s ease-in-out infinite;
}

@keyframes vaNotifyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(107,33,168,0.4); }
  50% { transform: scale(1.08); box-shadow: 0 4px 30px rgba(107,33,168,0.6); }
}

/* Voice Assistant Popup */
.va-popup {
  position: fixed;
  bottom: 96px;
  left: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.va-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Popup Header */
.va-popup-header {
  background: linear-gradient(135deg, #6B21A8 0%, #9333EA 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.va-popup-header svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.va-popup-header-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.va-popup-header-text p {
  font-size: 11px;
  opacity: 0.85;
  margin: 2px 0 0;
}

/* Status */
.va-status {
  padding: 10px 20px;
  font-size: 12px;
  color: #6B7280;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  text-align: center;
}

.va-status::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* Response Area */
.va-response {
  padding: 16px 20px;
  max-height: 200px;
  overflow-y: auto;
  min-height: 60px;
}

.va-response p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.va-user-msg {
  background: #F3E8FF;
  color: #6B21A8;
  padding: 8px 12px;
  border-radius: 12px 12px 4px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  max-width: 90%;
}

.va-thinking {
  color: #9CA3AF;
  font-style: italic;
  font-size: 13px;
}

/* Action Buttons */
.va-actions {
  padding: 12px 20px 16px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #E5E7EB;
}

.va-action-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.va-action-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.va-action-btn.call-btn {
  background: linear-gradient(135deg, #6B21A8, #9333EA);
  color: white;
}

.va-action-btn.call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107,33,168,0.3);
}

.va-action-btn.mic-btn {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.va-action-btn.mic-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.va-action-btn.mic-btn.listening {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  animation: vaMicBtnPulse 1s ease-in-out infinite;
}

@keyframes vaMicBtnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Scrollbar */
.va-response::-webkit-scrollbar {
  width: 4px;
}

.va-response::-webkit-scrollbar-track {
  background: transparent;
}

.va-response::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .va-btn {
    bottom: 110px;
    left: 16px;
    width: 54px;
    height: 54px;
  }
  
  .va-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .va-popup {
    bottom: 84px;
    left: 16px;
    width: 300px;
  }
}

@media (max-width: 480px) {
  .va-btn {
    bottom: 110px;
    left: 12px;
    width: 50px;
    height: 50px;
  }
  
  .va-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .va-popup {
    bottom: 78px;
    left: 12px;
    width: calc(100vw - 24px);
    max-width: 320px;
  }
  
  .va-popup-header {
    padding: 12px 16px;
  }
  
  .va-response {
    padding: 12px 16px;
    max-height: 150px;
  }
  
  .va-actions {
    padding: 10px 16px 14px;
  }
}
