/* ============================================================
   ROOT & VARIABLES
   ============================================================ */
:root {
  --pink: #E84393;
  --pink-light: #fd79a8;
  --pink-pale: #ffeef5;
  --purple: #6C5CE7;
  --purple-light: #a29bfe;
  --purple-dark: #4a3db0;
  --purple-pale: #f0eeff;
  --dark: #1a1028;
  --dark-mid: #2d2045;
  --text-light: #f5f0ff;
  --text-muted: #9a8bb5;
  --white: #ffffff;
  --gradient-main: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --gradient-soft: linear-gradient(135deg, #ffeef5 0%, #f0eeff 100%);
  --shadow-pink: 0 8px 32px rgba(232, 67, 147, 0.25);
  --shadow-purple: 0 8px 32px rgba(108, 92, 231, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-custom {
  background: rgba(26, 16, 40, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  transition: padding 0.3s, background 0.3s;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-custom.scrolled {
  padding: 0.55rem 0;
  background: rgba(26, 16, 40, 0.95);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.navbar-brand .logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  -webkit-text-fill-color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-pink);
}
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 6px;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { width: 60%; }
.btn-nav {
  background: var(--gradient-main);
  color: white !important;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,67,147,0.35); }
.btn-nav::after { display: none !important; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide:nth-child(1) .hero-slide-bg { background: linear-gradient(135deg, #2d1b69 0%, #1a1028 40%, #0f0818 100%); }
.hero-slide:nth-child(2) .hero-slide-bg { background: linear-gradient(135deg, #1a1040 0%, #2d1050 40%, #1f0a30 100%); }
.hero-slide:nth-child(3) .hero-slide-bg { background: linear-gradient(135deg, #200a2e 0%, #1a1028 40%, #150820 100%); }

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink); top: -120px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 380px; height: 380px; background: var(--purple); bottom: -100px; left: -80px; animation-delay: 2s; }
.blob-3 { width: 260px; height: 260px; background: var(--pink-light); top: 50%; left: 40%; animation-delay: 4s; opacity: 0.2; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.06); }
  66% { transform: translate(-25px, 25px) scale(0.96); }
}

.hero-content { position: relative; z-index: 3; color: white; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,67,147,0.18);
  border: 1px solid rgba(232,67,147,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--pink-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-content h1 .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s 0.4s ease both;
  font-weight: 300;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.btn-hero-primary {
  background: var(--gradient-main);
  color: white; border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-pink);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232,67,147,0.4); color: white; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: white; }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active { background: var(--pink); transform: scale(1.3); box-shadow: 0 0 10px rgba(232,67,147,0.5); }

/* Floating stat cards */
.hero-stats {
  position: absolute; bottom: 80px; right: 60px;
  z-index: 4; display: flex; flex-direction: column; gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 22px;
  color: white;
  min-width: 170px;
  animation: slideInRight 0.8s ease both;
}
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
.stat-card .stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--pink-light); }
.stat-card .stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@keyframes fadeInDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: translateX(0); } }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .tag {
  display: inline-block;
  background: var(--gradient-soft);
  border-radius: 30px;
  padding: 5px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title h2 .grad { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.divider-line {
  width: 60px; height: 3px;
  background: var(--gradient-main);
  border-radius: 3px;
  margin: 18px auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 110px 0; background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}
.about-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-wrap .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,16,40,0.6) 0%, transparent 60%);
}
.about-float-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gradient-main);
  color: white;
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: var(--shadow-pink);
  text-align: center;
  z-index: 2;
}
.about-float-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; }
.about-float-badge .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

.about-content h2 { margin-bottom: 16px; }
.about-content .about-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-size: 0.97rem; }
.about-features { list-style: none; margin-bottom: 28px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0eeff;
  color: var(--dark-mid);
  font-size: 0.92rem;
}
.about-features li:last-child { border-bottom: none; }
.about-features .feat-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--gradient-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 0.8rem;
}
.btn-about {
  background: var(--gradient-main);
  color: white; border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-pink);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-about:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,67,147,0.4); color: white; }

/* ============================================================
   SERVICES & PRODUCTS GRID
   ============================================================ */
.services-section { padding: 110px 0; background: var(--gradient-soft); }
.service-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(108,92,231,0.08);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex; flex-direction: column;
  border: 1px solid rgba(108,92,231,0.07);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(108,92,231,0.18); }
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img .sc-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s;
}
.service-card:hover .sc-bg { transform: scale(1.08); }
.service-card-img .sc-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
}
.service-card-img .sc-tag {
  background: var(--gradient-main);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h5 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card-body .sc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s;
}
.service-card-body .sc-link:hover { gap: 10px; }

/* Service card image backgrounds using SVG patterns */
.sc-canvas { background: linear-gradient(135deg, #f8e8f3, #ede0ff); }
.sc-sunpack { background: linear-gradient(135deg, #ffe0ec, #f0d8ff); }
.sc-acrylic { background: linear-gradient(135deg, #e8d5f5, #ffd8ee); }
.sc-foam { background: linear-gradient(135deg, #fce4f0, #e8deff); }
.sc-uv { background: linear-gradient(135deg, #ddd5f5, #ffe5ee); }
.sc-rexin { background: linear-gradient(135deg, #ffe8f2, #ecdff8); }
.sc-flex { background: linear-gradient(135deg, #f0deff, #ffe2ec); }
.sc-invite { background: linear-gradient(135deg, #ffd8ea, #e5dcff); }
.sc-glow { background: linear-gradient(135deg, #e8d8ff, #ffdbee); }
.sc-visit { background: linear-gradient(135deg, #ffe5ef, #ecdcff); }
.sc-menu { background: linear-gradient(135deg, #f2e0ff, #ffdcea); }

/* Icon inside card images */
.sc-icon-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.sc-icon-wrap i {
  font-size: 3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

/* ============================================================
   UPDATES / OFFERS CAROUSEL
   ============================================================ */
.updates-section { padding: 110px 0; background: var(--white); }
.carousel-update { position: relative; }
.carousel-update .carousel-inner { border-radius: 28px; overflow: hidden; }
.update-slide {
  background: var(--gradient-main);
  color: white;
  border-radius: 28px;
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center;
}
.update-slide .update-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.update-slide .ub1 { width: 300px; height: 300px; top: -80px; right: -60px; }
.update-slide .ub2 { width: 180px; height: 180px; bottom: -50px; left: -40px; }
.update-slide .ub3 { width: 120px; height: 120px; top: 40%; left: 35%; }

.update-content { position: relative; z-index: 2; max-width: 680px; }
.update-content .update-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.update-content h3 { font-size: 1.9rem; margin-bottom: 12px; font-weight: 700; }
.update-content p { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
.btn-update {
  background: white;
  color: var(--purple);
  border: none;
  border-radius: 40px;
  padding: 11px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-update:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.22); color: var(--purple); }

.carousel-update .carousel-control-prev,
.carousel-update .carousel-control-next {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  z-index: 3;
}
.carousel-update .carousel-control-prev:hover,
.carousel-update .carousel-control-next:hover { background: rgba(255,255,255,0.3); }
.carousel-update .carousel-control-prev { left: 12px; }
.carousel-update .carousel-control-next { right: 12px; }
.carousel-update .carousel-indicators { bottom: -30px; }
.carousel-update .carousel-indicators button {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: var(--purple-light) !important;
  opacity: 0.35;
  border: none !important;
  transition: opacity 0.3s, width 0.3s;
}
.carousel-update .carousel-indicators button.active { opacity: 1; width: 44px; background: var(--pink) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 110px 0; background: var(--gradient-soft); }
.testi-card {
  background: white;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(108,92,231,0.07);
  border: 1px solid rgba(108,92,231,0.06);
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
  height: 100%;
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(108,92,231,0.14); }
.testi-card .quote-icon {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--pink-pale);
  line-height: 1;
  font-weight: 800;
}
.testi-stars { color: var(--pink); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.testi-author-info .name { font-size: 0.88rem; font-weight: 600; color: var(--dark); font-family: 'DM Sans', sans-serif; }
.testi-author-info .role { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-section .cta-blob-1 {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%; filter: blur(90px);
  background: var(--pink); opacity: 0.18;
  top: -100px; left: -100px;
}
.cta-section .cta-blob-2 {
  position: absolute; width: 350px; height: 350px;
  border-radius: 50%; filter: blur(80px);
  background: var(--purple); opacity: 0.2;
  bottom: -80px; right: -80px;
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center; color: white;
}
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-inner h2 .grad { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-inner p { color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; font-size: 1rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--gradient-main);
  color: white; border: none;
  border-radius: 50px;
  padding: 15px 38px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-pink);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232,67,147,0.4); color: white; }
.btn-cta-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  border-radius: 50px;
  padding: 15px 34px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 30px;
  color: var(--text-muted);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-main p { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-col h6 {
  color: white; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover { color: var(--pink-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.76rem; }
.footer-bottom .social-links a {
  color: var(--text-muted); margin-left: 14px;
  font-size: 0.88rem; text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom .social-links a:hover { color: var(--pink-light); }

/* ============================================================
   FIXED SOCIAL ICONS (Bottom Right)
   ============================================================ */
.fixed-social {
  position: fixed;
  bottom: 30px; right: 24px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
}
.fixed-social a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.fixed-social a:nth-child(1) { background: #25d366; }
.fixed-social a:nth-child(2) { background: var(--gradient-main); }
.fixed-social a:nth-child(3) { background: var(--purple); }
.fixed-social a:hover { transform: scale(1.12) translateX(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.fixed-social a .tooltip-fix {
  position: absolute; right: 58px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-50%) translateX(6px);
}
.fixed-social a:hover .tooltip-fix { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* Enquiry Form Card */
        .enquiry-form-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
            height: 100%;
            position: relative;
            overflow: hidden;
            animation: fadeInRight 1s ease;
        }

        .enquiry-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .form-label {
            color: var(--dark-purple);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border: 2px solid #f0e7ff;
            border-radius: 12px;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--purple);
            box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.15);
            transform: translateY(-2px);
        }

        .btn-submit {
            background: var(--gradient);
            border: none;
            color: white;
            padding: 15px 50px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
        }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-stats { display: none; }
  .update-slide { padding: 50px 36px; min-height: 280px; }
}
@media (max-width: 767px) {
  .about-section, .services-section, .updates-section, .testimonials-section, .cta-section { padding: 70px 0; }
  .hero-content h1 { font-size: 2.3rem; }
  .update-slide { padding: 40px 28px; min-height: auto; }
  .update-content h3 { font-size: 1.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-section { min-height: 580px; }
  .hero-btns { flex-direction: column; }
  .fixed-social { bottom: 20px; right: 16px; }
  .fixed-social a { width: 42px; height: 42px; font-size: 0.9rem; }
}