/* Pamba Water & STP Tank Cleaning - Premium Global Styles */

:root {
  --pw-red: #ec3237;
  --pw-blue: #2e57a7;
  --pw-green: #54b84a;
  --pw-grey: #808285;
  --pw-light-grey: #f5f5f6;
  
  /* Premium Color Variations */
  --pw-red-dark: #c6272c;
  --pw-blue-dark: #1b2f63;
  --pw-blue-light: #3f6ad8;
  --pw-green-dark: #3f9137;
  --pw-grey-dark: #5a5c5e;
  --pw-grey-light: #e8e9ea;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2e57a7 0%, #1b2f63 100%);
  --gradient-hero: linear-gradient(135deg, #3f6ad8 0%, #2e57a7 40%, #142752 100%);
  --gradient-accent: linear-gradient(135deg, var(--pw-blue), var(--pw-green));
  --gradient-red: linear-gradient(135deg, #ec3237 0%, #c6272c 100%);
  --gradient-green: linear-gradient(135deg, #54b84a 0%, #3f9137 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 35, 95, 0.2);
  --shadow-colored-blue: 0 8px 24px rgba(46, 87, 167, 0.25);
  --shadow-colored-red: 0 8px 24px rgba(236, 50, 55, 0.3);
  --shadow-colored-green: 0 8px 24px rgba(84, 184, 74, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--pw-grey);
  background-color: #ffffff;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--pw-blue);
  text-decoration: none;
}

a:hover {
  color: #223f7a;
}

.text-muted {
  color: var(--pw-grey) !important;
}

/* Header & Navigation */

.navbar {
  background: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.navbar-brand span {
  font-weight: 600;
  color: var(--pw-blue);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
  color: var(--pw-grey);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--pw-blue);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--pw-blue);
  background: rgba(46, 87, 167, 0.08);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-cta {
  border-radius: 999px;
  font-weight: 600;
  padding-inline: 1.5rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta-primary {
  background: var(--gradient-red);
  color: #ffffff;
  box-shadow: var(--shadow-colored-red);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #c6272c 0%, #a01f23 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236, 50, 55, 0.4);
  color: #ffffff;
}

.btn-whatsapp {
  background: var(--gradient-green);
  color: #ffffff;
  box-shadow: var(--shadow-colored-green);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #3f9137 0%, #2d6a27 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(84, 184, 74, 0.4);
  color: #ffffff;
}

/* Hero - Premium Design */

.hero {
  position: relative;
  padding: 2rem 0 5rem;
  background: var(--gradient-hero);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(84, 184, 74, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(84, 184, 74, 0.15) 0%, transparent 50%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  }
  50% {
    background: 
      radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(84, 184, 74, 0.18) 0%, transparent 50%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, transparent 60%);
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

/* Animated Background Elements */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatCircle 20s ease-in-out infinite;
}

.hero-bg-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: 10%;
  animation-delay: 0s;
}

.hero-bg-circle-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
  animation-delay: -5s;
}

.hero-bg-circle-3 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: 20%;
  animation-delay: -10s;
}

.hero-bg-circle-4 {
  width: 180px;
  height: 180px;
  top: 50%;
  right: -50px;
  animation-delay: -15s;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.08;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.06;
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
    opacity: 0.07;
  }
}

.hero-bg-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  animation: rotateShape 25s linear infinite;
}

.hero-bg-shape-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.hero-bg-shape-2 {
  top: 60%;
  right: 8%;
  width: 80px;
  height: 80px;
  animation-delay: -8s;
  animation-duration: 30s;
}

.hero-bg-shape-3 {
  bottom: 20%;
  left: 15%;
  width: 120px;
  height: 120px;
  animation-delay: -12s;
  animation-duration: 35s;
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(40px);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}


.hero-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: #ffffff;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  
  line-height: 1.8;
  opacity: 0.95;
  font-weight: 400;
  margin-top: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-main-image {
  max-height: 500px;
  width: auto;
  height: auto;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .hero-main-image {
    max-height: 400px;
  }
}

.hero-highlight {
  background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-size: 2.3rem;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  color: var(--pw-grey);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(15, 35, 95, 0.4);
}

/* Sections & Utilities */

.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background-color: #ffffff;
}

.section-muted {
  background-color: var(--pw-light-grey);
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-kicker {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pw-blue);
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(46, 87, 167, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a1c2d;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pw-grey);
  opacity: 0.9;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 50, 55, 0.1), rgba(236, 50, 55, 0.05));
  color: var(--pw-red);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(236, 50, 55, 0.15);
}

.service-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(236, 50, 55, 0.25);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.feature-list .bi {
  color: var(--pw-green);
  margin-top: 0.1rem;
}

.service-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 87, 167, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1c2d;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
  color: var(--pw-blue);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.77rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(46, 87, 167, 0.06);
  color: var(--pw-blue);
}

.cta-strip {
  border-radius: 1.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-colored-blue);
}

.cta-strip h2{
  color: #ffffff !important;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Contact & Forms */

.contact-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 87, 167, 0.15);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 87, 167, 0.1), rgba(46, 87, 167, 0.05));
  color: var(--pw-blue);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(46, 87, 167, 0.15);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(46, 87, 167, 0.25);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #33353f;
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pw-blue);
  box-shadow: 0 0 0 0.2rem rgba(46, 87, 167, 0.15);
  transform: translateY(-1px);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-text-error {
  color: var(--pw-red);
  font-size: 0.8rem;
  min-height: 1.2rem;
  display: block;
}

.badge-soft {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  background-color: rgba(84, 184, 74, 0.08);
  color: var(--pw-green);
}

/* Map */

.map-embed {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Footer */

.footer {
  background: linear-gradient(135deg, #0f1324 0%, #1a1d2e 100%);
  color: #c4c6d3;
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer a {
  color: #e1e3f5;
}

.footer a:hover {
  color: #ffffff;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #f5f5ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1.25rem 0 0.75rem;
  font-size: 0.86rem;
}

/* Scroll Animations - Premium */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.show {
  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;
}

/* Premium Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1c2d;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Enhanced Badge Styles */
.badge-soft {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(84, 184, 74, 0.1), rgba(84, 184, 74, 0.05));
  color: var(--pw-green);
  border: 1px solid rgba(84, 184, 74, 0.2);
  box-shadow: 0 2px 8px rgba(84, 184, 74, 0.1);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 87, 167, 0.08), rgba(46, 87, 167, 0.04));
  color: var(--pw-blue);
  border: 1px solid rgba(46, 87, 167, 0.15);
  transition: all 0.3s ease;
}

.service-card:hover .service-chip {
  background: linear-gradient(135deg, rgba(46, 87, 167, 0.12), rgba(46, 87, 167, 0.08));
  transform: scale(1.05);
}

/* Enhanced Feature List */
.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
  line-height: 1.6;
}

.feature-list .bi {
  color: var(--pw-green);
  margin-top: 0.2rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Premium Map Embed */
.map-embed {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.map-embed:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Enhanced Stats Cards */
.stats-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(46, 87, 167, 0.06), rgba(84, 184, 74, 0.04));
  border-radius: 1.5rem;
  border: 1px solid rgba(46, 87, 167, 0.1);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 87, 167, 0.2);
}

.stats-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-label {
  font-size: 0.9rem;
  color: var(--pw-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Premium Section Accents */
.section-accent {
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 1;
}

/* Enhanced Footer Links */
.footer a {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer a:hover {
  transform: translateX(4px);
  color: #ffffff;
}

/* Premium Loading States */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Tagline Box */
.tagline-box {
  max-width: 800px;
  border: 2px solid var(--pw-blue);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tagline-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tagline-title {
  color: var(--pw-blue);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.tagline-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pw-grey);
}

/* Enhanced Responsive Design */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 2rem;
    min-height: 75vh;
  }

  .hero-card {
    margin-top: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-strip {
    padding: 2rem 1.5rem;
  }
}

/* Premium Process Timeline */
.process-timeline {
  position: relative;
  padding-left: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pw-blue), var(--pw-green));
}

.process-step {
  position: relative;
  padding-bottom: 2rem;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--pw-blue);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--pw-blue);
}

.process-step-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.process-step-card::after {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.4s ease;
}

.process-step-card:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 87, 167, 0.15);
}

.process-step-card:hover::after {
  width: 1.5rem;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--gradient-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(46, 87, 167, 0.3);
  transition: all 0.3s ease;
}

.process-step-card:hover .process-step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px rgba(46, 87, 167, 0.4);
}

/* Premium Testimonials */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--pw-blue);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 87, 167, 0.15);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #33353f;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--pw-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1c2d;
  margin-bottom: 0.25rem;
}

.testimonial-service {
  font-size: 0.85rem;
  color: var(--pw-grey);
}

/* Premium Stats/Highlights */
.stats-card {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(46, 87, 167, 0.05), rgba(84, 184, 74, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(46, 87, 167, 0.1);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pw-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 0.9rem;
  color: var(--pw-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Enhanced Buttons */
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-lg:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp.btn-lg {
  box-shadow: var(--shadow-colored-green);
}

.btn-whatsapp.btn-lg:hover {
  box-shadow: 0 14px 40px rgba(84, 184, 74, 0.45);
}

.btn-cta-primary.btn-lg {
  box-shadow: var(--shadow-colored-red);
}

.btn-cta-primary.btn-lg:hover {
  box-shadow: 0 14px 40px rgba(236, 50, 55, 0.45);
}

/* Premium Section Backgrounds */
.section-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-accent {
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pw-blue), var(--pw-green));
}

@media (max-width: 575.98px) {
  .cta-strip {
    text-align: center;
  }

  .cta-strip .d-flex {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .process-timeline {
    padding-left: 1.5rem;
  }

  .stats-number {
    font-size: 2rem;
  }
}



