/* ===== KRITI DIGITAL - PREMIUM CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --pink: #ff6090;
  --pink-dark: #e91e63;
  --dark: #0b1120;
  --dark-2: #111827;
  --dark-3: #1a2235;
  --dark-4: #222d42;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --gradient-pink: linear-gradient(135deg, #ff6090, #e91e63);
  --gradient-dark: linear-gradient(180deg, #0b1120, #111827);
  --gradient-glow: linear-gradient(135deg, rgba(255,96,144,0.15), rgba(233,30,99,0.05));
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --shadow-pink: 0 0 40px rgba(255,96,144,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-secondary);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.section-padding { padding: 100px 0; }

/* Dual Color Heading */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle {
  font-family: var(--font-secondary);
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  display: inline-block;
}
.section-header h2 { font-size: 42px; font-weight: 800; }
.section-header h2 .text-white { color: var(--white); }
.section-header h2 .text-gradient {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p { color: var(--gray); font-size: 16px; max-width: 600px; margin: 16px auto 0; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-wrap { text-align: center; }
.loader-wrap .spinner {
  width: 50px; height: 50px; border: 3px solid var(--dark-3);
  border-top-color: var(--pink); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-wrap span { color: var(--pink); font-family: var(--font-primary); font-weight: 600; font-size: 18px; }

/* ===== CURSOR ===== */
.custom-cursor {
  width: 20px; height: 20px; border: 2px solid var(--pink);
  border-radius: 50%; position: fixed; pointer-events: none;
  z-index: 99998; transition: transform 0.15s; mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--pink);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 9999;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,96,144,0.1);
}
.navbar-brand img { height: 50px; transition: var(--transition); }
.navbar.scrolled .navbar-brand img { height: 42px; }
.navbar-nav .nav-link {
  color: var(--gray-light) !important; font-family: var(--font-primary);
  font-weight: 500; font-size: 15px; padding: 8px 18px !important;
  position: relative; transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 18px; width: 0; height: 2px;
  background: var(--gradient-pink); transition: var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--pink) !important; }
.navbar-nav .nav-link:hover::after { width: calc(100% - 36px); }
.navbar-toggler { border: 1px solid rgba(255,96,144,0.3) !important; padding: 6px 10px; }
.navbar-toggler-icon { filter: invert(1); }
.btn-nav {
  background: var(--gradient-pink); color: var(--white) !important;
  padding: 10px 28px !important; border-radius: 50px; font-weight: 600 !important;
  border: none; box-shadow: 0 4px 20px rgba(255,96,144,0.3);
  transition: var(--transition);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-pink); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,96,144,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(233,30,99,0.06) 0%, transparent 50%),
              var(--dark);
  padding-top: 100px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles span {
  position: absolute; width: 3px; height: 3px; background: var(--pink);
  border-radius: 50%; opacity: 0.3; animation: float-particle 6s infinite;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-100px) scale(1.5); opacity: 0.6; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,96,144,0.1); border: 1px solid rgba(255,96,144,0.2);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  font-size: 14px; color: var(--pink); font-weight: 500;
}
.hero-badge i { font-size: 12px; }
.hero-title { font-size: 58px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.hero-title .line-gradient {
  background: var(--gradient-pink);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { color: var(--gray); font-size: 18px; line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary-glow {
  background: var(--gradient-pink); color: var(--white); padding: 14px 36px;
  border-radius: 50px; font-weight: 600; font-size: 16px; border: none;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  box-shadow: 0 4px 25px rgba(255,96,144,0.35); transition: var(--transition);
}
.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: var(--shadow-pink); color: #fff; }
.btn-outline-glow {
  background: transparent; color: var(--white); padding: 14px 36px;
  border-radius: 50px; font-weight: 600; font-size: 16px; cursor: pointer;
  border: 2px solid rgba(255,96,144,0.4); display: inline-flex;
  align-items: center; gap: 10px; transition: var(--transition);
}
.btn-outline-glow:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 40px; }
.hero-stat h3 { font-size: 36px; font-weight: 800; background: var(--gradient-pink); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat p { color: var(--gray); font-size: 14px; margin-top: 4px; }
.hero-img-wrap { position: relative; }
.hero-phone-main {
  max-width: 380px; margin: 0 auto; position: relative; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-phone-main img { width: 100%; filter: drop-shadow(0 20px 60px rgba(255,96,144,0.2)); }
.hero-glow {
  position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,96,144,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; border-radius: 50%;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== SERVICES ===== */
.service-card {
  background: rgba(26,34,53,0.6); border: 1px solid rgba(255,96,144,0.08);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-pink); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(255,96,144,0.2); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px; border-radius: 18px;
  background: var(--gradient-glow); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--pink);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-pink); color: var(--white); transform: scale(1.1); }
.service-card h4 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; }

/* ===== PORTFOLIO / SHOWCASE ===== */
#portfolio { background: var(--dark-2); }
.portfolio-slider .swiper-slide { padding: 20px; }
.portfolio-card {
  background: var(--dark-3); border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,96,144,0.08); transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.portfolio-card-img { position: relative; overflow: hidden; padding: 30px; background: var(--gradient-glow); text-align: center; }
.portfolio-card-img img { max-height: 320px; transition: var(--transition); }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.05); }
.portfolio-card-body { padding: 24px; }
.portfolio-card-body .badge-cat {
  display: inline-block; background: rgba(255,96,144,0.15); color: var(--pink);
  padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.portfolio-card-body h4 { font-size: 18px; margin-bottom: 8px; }
.portfolio-card-body p { color: var(--gray); font-size: 14px; }

/* ===== PROCESS TIMELINE ===== */
.process-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,96,144,0.06), transparent 70%);
  top: -200px;
  left: -200px;
  border-radius: 50%;
}
.process-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,30,99,0.05), transparent 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
}
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
/* Center vertical track */
.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255,96,144,0.1);
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 1;
}
.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #ff6090, #e91e63, #ff6090);
  border-radius: 3px;
  transition: height 0.1s linear;
  box-shadow: 0 0 12px rgba(255,96,144,0.5), 0 0 30px rgba(255,96,144,0.2);
}
/* Timeline items */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  z-index: 2;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
/* Dots on center line */
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
}
.dot-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 20px rgba(255,96,144,0.4), 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.timeline-item:hover .dot-inner {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(255,96,144,0.6);
}
.dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,96,144,0.4);
  animation: dotPulse 2.5s ease-out infinite;
}
@keyframes dotPulse {
  0% { width: 56px; height: 56px; opacity: 0.6; }
  100% { width: 100px; height: 100px; opacity: 0; }
}
/* LEFT item: card on left, dot center */
.timeline-left {
  justify-content: flex-start;
  padding-right: calc(50% + 48px);
}
/* RIGHT item: card on right, dot center */
.timeline-right {
  justify-content: flex-end;
  padding-left: calc(50% + 48px);
}
/* Timeline Card */
.timeline-card {
  width: 100%;
  position: relative;
}
.timeline-card-inner {
  background: rgba(26,34,53,0.65);
  border: 1px solid rgba(255,96,144,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.timeline-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-card-inner:hover::before {
  transform: scaleX(1);
}
.timeline-card-inner:hover {
  border-color: rgba(255,96,144,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 30px rgba(255,96,144,0.08);
}
/* Step number badge */
.tc-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255,96,144,0.12), rgba(233,30,99,0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  user-select: none;
}
/* Icon circle */
.tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,96,144,0.15), rgba(233,30,99,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.timeline-card-inner:hover .tc-icon {
  background: var(--gradient-pink);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.timeline-card-inner h4 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.timeline-card-inner p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
/* Tags */
.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tc-tags span {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  background: rgba(255,96,144,0.1);
  border: 1px solid rgba(255,96,144,0.15);
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.timeline-card-inner:hover .tc-tags span {
  background: rgba(255,96,144,0.18);
  border-color: rgba(255,96,144,0.3);
}

/* ===== PROCESS RESPONSIVE ===== */
@media (max-width: 991px) {
  .timeline-track {
    left: 28px;
  }
  .timeline-dot {
    left: 28px;
  }
  .timeline-left,
  .timeline-right {
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-item {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .timeline-track {
    left: 22px;
  }
  .timeline-dot {
    left: 22px;
    width: 44px;
    height: 44px;
  }
  .dot-inner {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .dot-pulse {
    width: 44px;
    height: 44px;
  }
  @keyframes dotPulse {
    0% { width: 44px; height: 44px; opacity: 0.6; }
    100% { width: 80px; height: 80px; opacity: 0; }
  }
  .timeline-left,
  .timeline-right {
    padding-left: 64px;
  }
  .timeline-card-inner {
    padding: 24px 20px;
  }
  .tc-number {
    font-size: 36px;
  }
}

/* ===== TECH STACK ===== */
#tech-stack { background: var(--dark-2); }
.tech-item {
  background: rgba(26,34,53,0.5); border: 1px solid rgba(255,96,144,0.06);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: var(--transition);
  height: 100%;
}
.tech-item:hover { border-color: rgba(255,96,144,0.2); transform: translateY(-8px); }
.tech-item i, .tech-item .tech-icon { font-size: 40px; color: var(--pink); margin-bottom: 14px; display: block; line-height: 1; height: 40px; }
.tech-item h5 { font-size: 16px; margin-bottom: 6px; }
.tech-item p { color: var(--gray); font-size: 13px; }

/* ===== WHY CHOOSE ===== */
.why-card {
  background: rgba(26,34,53,0.4); border: 1px solid rgba(255,96,144,0.06);
  border-radius: 20px; padding: 32px 24px; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(255,96,144,0.2); }
.why-card .icon-box {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gradient-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 24px; margin-bottom: 18px;
}
.why-card:hover .icon-box { background: var(--gradient-pink); color: var(--white); }
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 14px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--dark-2); }
.testimonial-card {
  background: rgba(26,34,53,0.6); border: 1px solid rgba(255,96,144,0.08);
  border-radius: 20px; padding: 36px; position: relative;
}
.testimonial-card .quote-icon { font-size: 40px; color: var(--pink); opacity: 0.3; margin-bottom: 16px; }
.testimonial-card p { color: var(--gray-light); font-size: 15px; font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-pink);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px;
}
.testimonial-author h5 { font-size: 16px; margin-bottom: 2px; }
.testimonial-author span { color: var(--gray); font-size: 13px; }
.stars { color: #fbbf24; margin-bottom: 16px; }

/* ===== CTA ===== */
#cta {
  background: linear-gradient(135deg, rgba(255,96,144,0.12), rgba(233,30,99,0.06)), var(--dark);
  position: relative; overflow: hidden;
}
#cta .cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,96,144,0.1), transparent 70%);
  top: -200px; right: -100px;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 18px; }
.cta-content p { color: var(--gray); font-size: 17px; margin-bottom: 36px; max-width: 600px; }
.cta-phone { max-width: 300px; animation: float 5s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(255,96,144,0.2)); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2); border-top: 1px solid rgba(255,96,144,0.08);
  padding-top: 80px;
}
.footer-logo img { height: 70px; margin-bottom: 16px; }
.footer-desc { color: var(--gray); font-size: 14px; max-width: 300px; line-height: 1.8; }
.footer-title { font-size: 18px; margin-bottom: 20px; color: var(--white); position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gradient-pink); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--pink); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,96,144,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
  font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient-pink); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
  margin-top: 50px; text-align: center;
}
.footer-bottom p { color: var(--gray); font-size: 13px; }
.footer-bottom a { color: var(--pink); }

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.float-whatsapp {
  width: 55px; height: 55px;
  border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.float-whatsapp:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}
.scroll-top {
  width: 48px; height: 48px; margin: 0 auto;
  border-radius: 50%; background: var(--gradient-pink); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition);
  border: none; box-shadow: 0 4px 20px rgba(255,96,144,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 6px 25px rgba(255,96,144,0.6); }

/* ===== SWIPER CUSTOM ===== */
.swiper-pagination-bullet { background: var(--gray) !important; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--pink) !important; opacity: 1; width: 24px; border-radius: 10px; }
.swiper-button-next, .swiper-button-prev { color: var(--pink) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 40px; }
  .section-header h2 { font-size: 32px; }
  .hero-img-wrap { margin-top: 50px; }
  .hero-phone-main { max-width: 280px; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 28px; }
  .cta-content h2 { font-size: 32px; }
  .cta-form-wrapper { padding: 24px; }
  .navbar-collapse { background: rgba(11,17,32,0.98); backdrop-filter: blur(20px); padding: 20px; border-radius: 16px; margin-top: 10px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 32px; }
  .section-padding { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 30px; text-align: center; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 28px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
