/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f7;
  color: #1a1a1a;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===========================
   BACKGROUND SYSTEM
=========================== */
.bg-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 50%, #ededf5 100%);
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #c8c8d8 0%, transparent 70%);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #d4d4e4 0%, transparent 70%);
  top: 20%;
  right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #b8b8cc 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-delay: -8s;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #c0c0d4 0%, transparent 70%);
  bottom: 25%;
  right: 15%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, -40px) scale(1.08);
  }
}

/* ===========================
   GLASSMORPHISM UTILITY
=========================== */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 200, 220, 0.6);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a2e;
}

.section-title span {
  color: #555577;
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

#navbar.scrolled {
  background: rgba(245, 245, 250, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180, 180, 200, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-text span {
  color: #cccccc;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #888899, transparent);
  animation: shimmerLine 2.5s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmerLine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #f0f0f5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

/* Scrolled state overrides */
#navbar.scrolled .nav-logo {
  color: #1a1a2e;
}

#navbar.scrolled .nav-text span {
  color: #555577;
}

#navbar.scrolled .nav-links a {
  color: #444455;
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  color: #333355;
  background: rgba(100, 100, 140, 0.1);
}

#navbar.scrolled .hamburger span {
  background: #333;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  background: rgba(250, 250, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 200, 220, 0.5);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: #333344;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(180, 180, 210, 0.2);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: #333355;
  background: rgba(100, 100, 140, 0.08);
}

/* ===========================
   HERO – Scroll Image Sequence
=========================== */

/* Outer section: tall enough for 300vh scroll travel */
#hero-sequence {
  position: relative;
  height: 300vh;
  background: #050505;
}

/* Sticky viewport container – stays on screen while section scrolls */
#hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

/* Full-screen canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #050505;
}



/* ── Overlay text ───────────────────────────────── */
#hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 40px;
  pointer-events: auto;
  will-change: opacity;
}

/* Frosted card behind text */
#hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 5, 5, 0.35) 0%,
      rgba(5, 5, 5, 0.10) 50%,
      rgba(5, 5, 5, 0.40) 100%);
  pointer-events: none;
}

#hero-overlay>* {
  position: relative;
  z-index: 1;
}

/* Brand */
.hero-brand {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240, 230, 210, 0.90);
  letter-spacing: 0.10em;
  margin-bottom: 22px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Headline */
.hero-h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Subtitle */
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(235, 228, 215, 0.82);
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}



.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #5a5a8a, #3a3a6a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(90, 90, 140, 0.30);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(90, 90, 140, 0.45);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: #333344;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(150, 150, 180, 0.45);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-glass:hover {
  border-color: #888899;
  background: rgba(255, 255, 255, 0.85);
  color: #222233;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(100, 100, 140, 0.20);
}


/* ===========================
   SERVICES
=========================== */
#services {
  padding: 100px 0;
}

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

.service-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.service-card p {
  font-size: 0.88rem;
  color: #666677;
  line-height: 1.65;
  flex: 1;
}

.service-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #555577;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
  width: fit-content;
}

.service-wa-link:hover {
  border-color: #555577;
  gap: 10px;
}

/* ===========================
   BEFORE & AFTER GALLERY
=========================== */
#gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ba-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: col-resize;
  user-select: none;
  border: 1px solid rgba(200, 200, 220, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-before {
  background-color: #c8c8d8;
}

.ba-after {
  background-color: #e8e8f4;
  clip-path: inset(0 0 0 50%);
}

.ba-label {
  position: absolute;
  top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
}

.ba-label.before-label {
  left: 12px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.90);
}

.ba-label.after-label {
  right: 12px;
  background: rgba(85, 85, 120, 0.15);
  color: #444466;
  border: 1px solid rgba(85, 85, 120, 0.3);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(100, 100, 140, 0.6);
  transform: translateX(-50%);
  z-index: 3;
  cursor: col-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(100, 100, 140, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #444;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 4;
  cursor: col-resize;
}

.ba-floor-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333344;
  background: rgba(255, 255, 255, 0.75);
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  z-index: 5;
  pointer-events: none;
}

.ba-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 24px);
}

.ba-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%, rgba(255, 255, 255, 0.3) 60%, transparent 100%);
}

.gallery-note {
  text-align: center;
  color: #777788;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ===========================
   WHY CHOOSE US
=========================== */
#why {
  padding: 100px 0;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-card {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333355;
}

.why-card p {
  font-size: 0.83rem;
  color: #666677;
  line-height: 1.6;
}

/* ===========================
   ABOUT
=========================== */
#about {
  padding: 100px 0;
}

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

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.about-text h2 span {
  color: #555577;
}

.about-text p {
  font-size: 0.95rem;
  color: #555566;
  line-height: 1.8;
}

.about-text p+p {
  margin-top: 16px;
}

.about-text strong {
  color: #333355;
}

.stats-card {
  padding: 40px 36px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(150, 150, 180, 0.18);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  color: #666688;
  font-size: 1.1rem;
  min-width: 20px;
}

.stat-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
}

.stat-text span {
  color: #555577;
}

/* ===========================
   CLIENTS MARQUEE
=========================== */
#clients {
  padding: 100px 0;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-card {
  flex: 0 0 auto;
  padding: 20px 32px;
  text-align: center;
  min-width: 180px;
  transition: transform 0.3s;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
}

.client-sub {
  font-size: 0.72rem;
  color: #888899;
  margin-top: 4px;
  font-style: italic;
  white-space: nowrap;
}

/* Brand accent glows */
.client-prestige {
  border-color: rgba(150, 130, 90, 0.4);
  box-shadow: 0 8px 24px rgba(150, 130, 90, 0.12);
}

.client-hiranandani {
  border-color: rgba(100, 120, 160, 0.4);
  box-shadow: 0 8px 24px rgba(100, 120, 160, 0.10);
}

.client-godrej {
  border-color: rgba(80, 140, 90, 0.4);
  box-shadow: 0 8px 24px rgba(80, 140, 90, 0.10);
}

.client-sobha {
  border-color: rgba(140, 110, 60, 0.4);
  box-shadow: 0 8px 24px rgba(140, 110, 60, 0.10);
}

.client-apollo {
  border-color: rgba(60, 130, 150, 0.4);
  box-shadow: 0 8px 24px rgba(60, 130, 150, 0.10);
}

.client-nitesh {
  border-color: rgba(120, 80, 160, 0.4);
  box-shadow: 0 8px 24px rgba(120, 80, 160, 0.10);
}

.client-embassy {
  border-color: rgba(160, 100, 60, 0.4);
  box-shadow: 0 8px 24px rgba(160, 100, 60, 0.10);
}

.client-salarpuria {
  border-color: rgba(80, 110, 160, 0.4);
  box-shadow: 0 8px 24px rgba(80, 110, 160, 0.10);
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  padding: 100px 0;
}

.testimonial-card {
  padding: 28px;
  position: relative;
  transition: transform 0.3s;
  min-width: 320px;
  max-width: 380px;
  flex: 0 0 auto;
  white-space: normal;
  margin: 0 12px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.t-stars {
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 0.9rem;
  color: #555566;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.t-author {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a2e;
}

.t-area {
  font-size: 0.8rem;
  color: #888899;
  margin-top: 2px;
}

.t-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(66, 133, 244, 0.10);
  border: 1px solid rgba(66, 133, 244, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4472aa;
  letter-spacing: 0.05em;
}

/* ===========================
   CONTACT
=========================== */
#contact {
  padding: 100px 0;
}

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

.contact-form-card {
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333355;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555566;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(180, 180, 210, 0.55);
  border-radius: 10px;
  padding: 12px 16px;
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaaabc;
}

.form-group select option {
  background: #f5f5fa;
  color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(85, 85, 140, 0.55);
  background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.btn-wa-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.40);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 32px 28px;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333355;
  margin-bottom: 20px;
}

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

.contact-info-item .ci-icon {
  font-size: 1.1rem;
  line-height: 1.4;
  min-width: 24px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: #555566;
  line-height: 1.6;
}

.contact-info-item a {
  color: #555566;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #333355;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(180, 180, 210, 0.4);
}

.map-card iframe {
  display: block;
}

/* ===========================
   FOOTER
=========================== */
footer {
  position: relative;
  z-index: 1;
  padding: 0;
}

.footer-inner {
  background: rgba(240, 240, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(180, 180, 210, 0.3);
  padding: 60px 0 32px;
}

.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(180, 180, 210, 0.25);
  margin-bottom: 32px;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.footer-brand .brand-name span {
  color: #555577;
}

.footer-brand .tagline {
  font-size: 0.88rem;
  color: #888899;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-contact-line {
  font-size: 0.85rem;
  color: #666677;
  line-height: 1.7;
}

.footer-contact-line a {
  color: #666677;
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: #333355;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #555577;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: #777788;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #333355;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #999aaa;
}

.footer-bottom strong {
  color: #666677;
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
#wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: waPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  border: none;
  transition: transform 0.2s;
}

#wa-float:hover {
  transform: scale(1.1);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.50);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(180, 180, 210, 0.5);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333344;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ===========================
   MOBILE BOTTOM BAR
=========================== */
#mobile-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 9998;
  pointer-events: none;
}

.mobile-bar-inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  pointer-events: auto;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.2s;
}

.mobile-bar-btn:active {
  opacity: 0.80;
  transform: scale(0.97);
}

.mobile-bar-call {
  background: linear-gradient(135deg, #5a5a9a 0%, #3a3a70 100%);
  color: #fff;
  margin-right: 8px;
  box-shadow: 0 2px 12px rgba(60, 60, 140, 0.40);
}

.mobile-bar-wa {
  background: linear-gradient(135deg, #2ecc71 0%, #1aab57 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(30, 180, 90, 0.40);
}

.mobile-bar-icon {
  font-size: 17px;
  line-height: 1;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s 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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Hero mobile fixes ─── */
@media (max-width: 768px) {
  #hero-sequence {
    height: 300vh; /* Reduced from 500vh to make animation faster on mobile */
  }

  #hero-overlay {
    padding: 70px 20px 80px;
    /* top: clears fixed navbar; bottom: clears mobile bar */
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.70rem;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .hero-h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn-gold,
  .btn-glass {
    width: min(300px, 80vw);
    justify-content: center;
  }

  .hero-hint {
    font-size: 0.70rem;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #hero-overlay {
    padding: 65px 16px 75px;
  }

  .hero-h1 {
    font-size: clamp(1.5rem, 8.5vw, 2rem);
  }

  .hero-hint {
    display: none;
  }

  /* reclaim vertical space on very small screens */
}

/* ── General mobile layout ─────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .why-card {
    max-width: 100%;
  }

  #mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }

  /* matches 68px bar */
  /* hide floating WhatsApp bubble — the bar already covers it */
  #wa-float {
    display: none !important;
  }
}

/* ===========================
   MISC / UTILITIES
=========================== */
::selection {
  background: rgba(85, 85, 140, 0.20);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #ebebf0;
}

::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 150, 0.35);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 150, 0.60);
}

/* ===========================
   CLIENT LOGOS
=========================== */
.client-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.client-logo {
  max-width: 140px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===========================
   CHATBOT WIDGET
=========================== */
#chatbot-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #444466);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

#chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cb-icon {
  font-size: 24px;
}

#chatbot-toggle .wa-tooltip {
  left: calc(100% + 12px);
  right: auto;
}

#chatbot-toggle:hover .wa-tooltip {
  opacity: 1;
}

#chatbot-window {
  width: 320px;
  height: 400px;
  position: absolute;
  bottom: 70px;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transform-origin: bottom left;
}

#chatbot-window.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
}

.chatbot-header {
  background: linear-gradient(135deg, #1a1a2e, #333355);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

#chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: opacity 0.2s;
}

#chatbot-close:hover {
  opacity: 0.7;
}

#chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-msg {
  background: #f0f0f5;
  color: #1a1a2e;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.user-msg {
  background: #1a1a2e;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  padding: 12px;
  border-top: 1px solid rgba(180, 180, 210, 0.3);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
}

#chatbot-input {
  flex: 1;
  border: 1px solid rgba(180, 180, 210, 0.5);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  background: transparent;
  transition: border-color 0.2s;
}

#chatbot-input:focus {
  border-color: #1a1a2e;
}

#chatbot-send {
  background: #1a1a2e;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#chatbot-send:hover {
  background: #333355;
}

@media (max-width: 768px) {
  #chatbot-container {
    bottom: 90px;
    left: 16px;
  }

  #chatbot-window {
    width: 300px;
  }
}