:root {
  /* Colors */
  --primary: #0F52BA; /* Deep Sapphire Blue */
  --primary-light: #4A89EE;
  --primary-hover: #0a4097;
  --secondary: #FF6B93; /* Soft Pink Accent */
  --light-blue: #F0F5FC;
  --light-pink: #FFF0F4;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --green: #10B981;
  --gold: #FFB800;
  --bg-gradient: linear-gradient(135deg, #F0F5FC 0%, #FFFFFF 100%);
  
  /* Typography */
  --font-main: 'Outfit', sans-serif;
  
  /* Layout & Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -5px rgba(15, 82, 186, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 1rem; }
.pb-0 { padding-bottom: 0 !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 82, 186, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 82, 186, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--light-blue);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
  padding: 14px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

/* Typography styles */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.5px;
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 107, 147, 0.3); /* secondary accent shadow */
  z-index: -1;
  border-radius: 4px;
}

.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-pink { background-color: var(--light-pink); }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Footer specific logo styling */
.footer .logo-icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: var(--bg-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(15, 82, 186, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -12px;
}

.avatars img:first-child { margin-left: 0; }

.hero-trust span {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-blob {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  border: 4px solid var(--white);
}

@keyframes morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.floating-card i {
  font-size: 2rem;
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.top-right {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.bottom-left {
  bottom: 10%;
  left: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

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

.service-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 0px; /* Increased top padding to push head down */
}

.service-img-wrapper img {
  max-width: 90%; /* Slightly smaller to ensure full visibility */
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center; /* Align to bottom to keep head away from the top edge */
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -24px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(15, 82, 186, 0.4);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-gray);
}

/* Why Choose Us */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-list li {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--light-pink);
  color: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition);
}

.features-list li:hover .feature-icon {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.feature-text h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.blob-shape {
  position: relative;
  z-index: 1;
}

.blob-shape::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--light-blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morph 12s ease-in-out infinite reverse;
}

.rounded-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-color: #fcfcfc;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 2;
}

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

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 107, 147, 0.4);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.step-line {
  color: var(--text-light);
  font-size: 2rem;
  opacity: 0.5;
}

.d-none { display: none !important; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}

.highlight-card {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:not(.highlight-card):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.review {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: inherit;
}

.testimonial-card:not(.highlight-card) .review {
  color: var(--text-dark);
}

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

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

.reviewer strong {
  display: block;
}

.reviewer span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.testimonial-card:not(.highlight-card) .reviewer span {
  color: var(--text-gray);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  text-align: left;
}

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

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

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

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
}

.plan-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.plan-features li i {
  font-size: 1.25rem;
}

.plan-features li.disabled {
  color: var(--text-light);
  text-decoration: line-through;
}

.plan-features li.disabled i {
  color: var(--text-light);
}

/* Contact / CTA */
.cta-box {
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.location-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #0f172a;
  color: var(--white);
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-light);
  margin: 20px 0;
  max-width: 300px;
}

.footer-brand .logo {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--white);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-contact i {
  font-size: 1.25rem;
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth reveal effect */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container,
  .why-choose-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    align-items: center;
  }
  
  .hero-image-wrapper {
    order: -1; /* image on top for mobile */
  }
  
  .why-choose-image {
    order: -1;
  }
  
  .section-subtitle.text-left,
  .section-title.text-left {
    text-align: center;
  }
  
  .features-list {
    text-align: left;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .step-line {
    transform: rotate(90deg);
  }
  
  .d-none { display: block !important; }
  .d-md-block { display: none !important; }
  .d-md-none { display: block !important; }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 20px auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .d-none { display: none !important; }
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
}
