/* =============================================
   SparkleClean Pro — Main Stylesheet
   Color Palette: Teal/Aqua + Deep Navy + Soft White
   Typography: Outfit + Lora
   ============================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;

  --navy-900: #0a1628;
  --navy-800: #0f2447;
  --navy-700: #162d5e;
  --navy-600: #1e3a6e;

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;

  --white: #ffffff;
  --off-white: #fafafa;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  --gradient-primary: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
  --gradient-hero:    linear-gradient(160deg, rgba(10,22,40,0.75) 0%, rgba(14,116,144,0.55) 100%);
  --gradient-section: linear-gradient(135deg, #0f2447 0%, #0a1628 100%);

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-serif:   'Lora', serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-teal: 0 8px 32px rgba(20,184,166,0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy-900);
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(20,184,166,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal-600);
  border: 2px solid var(--teal-500);
}

.btn-outline:hover {
  background: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

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

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION SHARED ---- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--slate-100);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 18px;
  color: var(--navy-900);
}

.section-sub {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.fade-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-right {
  transform: translateX(40px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--teal-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-300, #5eead4);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--glass-bg);
}

.bar {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Hamburger active animation */
.hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.2);
  border: 1px solid rgba(20,184,166,0.4);
  color: var(--teal-200);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-ctas .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-300, #5eead4);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

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

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

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

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

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-teal);
}

.about-badge-card i {
  font-size: 1.5rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text {
  color: var(--slate-600);
  line-height: 1.8;
}

.about-creds {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--slate-100);
  border-radius: var(--radius-md);
  padding: 28px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cred-item > i {
  width: 44px;
  height: 44px;
  background: var(--teal-100);
  color: var(--teal-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cred-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.cred-item span {
  font-size: 0.82rem;
  color: var(--slate-500);
}

.trust-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--teal-700);
  border-left: 4px solid var(--teal-400);
  padding-left: 20px;
  line-height: 1.7;
}

.trust-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 8px;
  font-weight: 500;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-200);
}

.service-card--featured {
  border-color: var(--teal-400);
  background: linear-gradient(145deg, #ffffff 60%, var(--teal-50) 100%);
  box-shadow: var(--shadow-teal);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-100);
  color: var(--teal-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.7;
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-600);
}

.service-list li i {
  color: var(--teal-500);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-600);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.service-link:hover {
  gap: 10px;
  color: var(--teal-500);
}

/* Process Steps */
.process-section {
  background: var(--gradient-section);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
}

.process-title {
  color: white;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-step {
  flex: 1;
  text-align: center;
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal-400);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.step-content h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-arrow {
  color: var(--teal-400);
  font-size: 1.5rem;
  margin-top: 28px;
  flex-shrink: 0;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--white);
}

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

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-icon--teal   { background: #f0fdfa; color: #0d9488; }
.why-icon--blue   { background: #eff6ff; color: #2563eb; }
.why-icon--green  { background: #f0fdf4; color: #16a34a; }
.why-icon--purple { background: #faf5ff; color: #7c3aed; }
.why-icon--orange { background: #fff7ed; color: #ea580c; }
.why-icon--rose   { background: #fff1f2; color: #e11d48; }

.why-card h3 {
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 700;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* =============================================
   GALLERY / BEFORE-AFTER
   ============================================= */
.ba-sliders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.ba-label-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.ba-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  user-select: none;
  cursor: col-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 0;
}

.ba-side-label {
  position: absolute;
  bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.before-label {
  left: 12px;
  background: rgba(239,68,68,0.9);
  color: white;
}

.after-label {
  right: 12px;
  background: rgba(20,184,166,0.9);
  color: white;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  width: 3px;
  transition: left 0.05s linear;
}

.ba-line {
  flex: 1;
  width: 3px;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-circle {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--teal-400);
  background: linear-gradient(145deg, #ffffff 0%, var(--teal-50) 100%);
  box-shadow: var(--shadow-teal);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pricing-card--popular .pricing-header {
  margin-top: 28px;
}

.pricing-header {
  text-align: center;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--teal-100);
  color: var(--teal-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.pricing-card--popular .pricing-icon {
  background: var(--gradient-primary);
  color: white;
}

.pricing-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.pricing-price {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-top: 8px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--slate-700);
}

.pricing-features li i.fa-check {
  color: var(--teal-500);
  font-size: 0.8rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.feature-disabled {
  opacity: 0.45;
}

.feature-disabled i.fa-xmark {
  color: var(--slate-400) !important;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  font-size: 0.9rem;
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-note i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS — Premium Grid Design
   ============================================= */
.testimonials {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(20,184,166,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials .section-label {
  background: rgba(20,184,166,0.15);
  color: var(--teal-300, #5eead4);
  border: 1px solid rgba(20,184,166,0.3);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-sub {
  color: rgba(255,255,255,0.6);
}

/* Summary bar */
.testimonials-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 20px;
}

.summary-rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.big-rating {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
  font-family: var(--font-heading);
}

.summary-stars {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.rating-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.summary-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.platform-badge:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

.platform-badge i {
  font-size: 1rem;
}

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

/* Individual tcard */
.tcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tcard:hover::before {
  transform: scaleX(1);
}

.tcard:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(20,184,166,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

/* Featured card */
.tcard--featured {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(20,184,166,0.3);
}

.tcard--featured:hover {
  background: linear-gradient(135deg, #0d9488 0%, #1d4ed8 100%);
  border-color: transparent;
  box-shadow: 0 20px 56px rgba(20,184,166,0.4);
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard-quote-icon {
  font-size: 1.5rem;
  color: rgba(20,184,166,0.4);
}

.tcard-quote-icon--light {
  color: rgba(255,255,255,0.3);
}

.stars {
  color: #f59e0b;
  font-size: 0.92rem;
  display: flex;
  gap: 3px;
}

.tcard--featured .stars {
  color: #fde68a;
}

.tcard-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 0.95rem;
  flex: 1;
}

.tcard--featured .tcard-text {
  color: rgba(255,255,255,0.92);
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}

.tcard-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.tcard-info {
  flex: 1;
  min-width: 0;
}

.tcard-info strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.tcard-info span i {
  font-size: 0.7rem;
  color: var(--teal-400);
}

.tcard-service-tag {
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  color: var(--teal-300, #5eead4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.tcard-service-tag--light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: white;
}

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--teal-200);
}

.faq-item.open {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.faq-question:hover {
  color: var(--teal-600);
}

.faq-item.open .faq-question {
  color: var(--teal-600);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--teal-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer:not([hidden]) {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate-700);
  letter-spacing: 0.01em;
}

.required {
  color: #e11d48;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-700);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e11d48;
}

.field-error {
  font-size: 0.8rem;
  color: #e11d48;
  font-weight: 500;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-success {
  background: var(--teal-50);
  border: 1px solid var(--teal-300);
  color: var(--teal-700);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact Info Right Column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-100);
  color: var(--teal-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-link {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 1rem;
}

.info-link:hover { color: var(--teal-600); }

.info-card p {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.5;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

.whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.4);
}

.hours-card {
  background: var(--gradient-section);
  color: white;
  border-radius: var(--radius-md);
  padding: 24px;
}

.hours-card h4 {
  color: var(--teal-300, #5eead4);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.hours-grid span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.hours-grid span:nth-child(even) {
  font-weight: 600;
  text-align: right;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

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

.footer-logo .logo-text {
  font-size: 1.1rem;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: white;
  transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--teal-400);
  padding-left: 4px;
}

.footer-contact-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-col i {
  color: var(--teal-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.65);
}

.footer-contact-col a:hover {
  color: var(--teal-400);
}

.footer-hours {
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.footer-hours p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit {
  color: rgba(255,255,255,0.55) !important;
}

.footer-credit strong {
  color: var(--teal-400);
}

.footer-credit i {
  color: #e11d48;
}

/* =============================================
   SCROLL-TO-TOP
   ============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-teal);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,184,166,0.45);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img {
    height: 360px;
  }

  .about-badge-card {
    bottom: -16px;
    right: 16px;
  }

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

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

  .ba-sliders {
    grid-template-columns: 1fr 1fr;
  }

  .ba-sliders .ba-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--popular {
    transform: none;
  }

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

  .testimonials-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

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

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

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-stats {
    gap: 20px;
    padding: 20px 24px;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    flex: 1;
    min-width: 80px;
  }

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

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Before-After */
  .ba-sliders {
    grid-template-columns: 1fr;
  }

  .ba-sliders .ba-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-summary {
    padding: 16px 20px;
  }

  .big-rating {
    font-size: 2.5rem;
  }

  /* Contact Form */
  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Process */
  .process-section {
    padding: 40px 28px;
  }

  /* Scroll-top */
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

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

  .about-badge-card {
    position: static;
    margin-top: 20px;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .pricing-card--popular {
    transform: none;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
