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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f2b4d;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 10% 20%, rgba(37,99,235,0.04) 0%, #fff 90%);
}
.animated-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  animation: slowDrift 28s infinite alternate;
}
@keyframes slowDrift {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(3%,5%) rotate(2deg); }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dbeafe;
  z-index: 1000;
  padding: 0.9rem 2rem;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e3a8a;
  transition: 0.2s;
}
.nav-links a:hover { color: #2563eb; }
.btn-outline {
  border: 1.5px solid #2563eb;
  background: transparent;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  color: #2563eb;
  font-weight: 600;
}
.mobile-menu {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #1e3a8a;
}
@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: white;
    width: 70%;
    height: 100vh;
    padding: 2rem;
    gap: 1.8rem;
    box-shadow: 5px 0 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-right: 1px solid #e2e8f0;
  }
  .nav-links.active { left: 0; }
  .mobile-menu { display: block; }
  .navbar { padding: 0.8rem 1.2rem; }
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.8rem; }
section { padding: 5rem 0 4rem; }
.hero { padding-top: 8rem; }

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.2); }
  70% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(145deg, #0f2b4d, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 1.2rem;
  color: #1e3a8a;
  max-width: 550px;
  margin: 1.5rem 0 2rem;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: #2563eb;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(37,99,235,0.25);
}
.btn-primary:hover { transform: translateY(-3px); background: #1d4ed8; }
.btn-secondary {
  background: white;
  border: 1px solid #bfdbfe;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
}
.btn-secondary:hover { background: #eff6ff; transform: translateY(-2px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.service-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid #dbeafe;
  transition: 0.25s;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.02);
}
.service-card:hover { transform: translateY(-5px); border-color: #2563eb; }
.service-price { font-size: 2rem; font-weight: 800; color: #1e40af; margin: 1rem 0; }

.timer-section {
  background: #f0f7ff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
}
.timer { font-size: 2rem; font-weight: 800; color: #2563eb; }

.negotiate-btn {
  background: #1e40af;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 1rem;
}

.contact-form {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #dbeafe;
  margin-top: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; color: #1e3a8a; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid #cbd5e1;
  font-family: inherit;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  background: #f0f7ff;
  border-radius: 2rem;
  padding: 2rem;
  margin: 2rem 0;
}
.stat-item { text-align: center; flex: 1; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: #1e40af; }

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}
.step {
  flex: 1;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #dbeafe;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: white;
  border-radius: 60px;
  display: flex;
  margin: 0 auto 1rem auto;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.contact-icon {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #1e3a8a;
  transition: 0.2s;
}
.contact-icon i { font-size: 2rem; color: #2563eb; }
.contact-icon:hover { transform: translateY(-5px); }

/* floating whatsapp - now at bottom-left */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: 0.2s;
}
.whatsapp-float i { font-size: 2rem; color: white; }
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

footer {
  border-top: 1px solid #dbeafe;
  padding: 2rem 0;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  h1 { font-size: 2.3rem; }
  .container { padding: 0 1.2rem; }
  .whatsapp-float {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float i { font-size: 1.6rem; }
}
/* Animated contact info */
.animated-contact-info {
  animation: gentlePulse 2s infinite ease-in-out;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(37,99,235,0.1);
  backdrop-filter: blur(4px);
}
@keyframes gentlePulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.02); opacity: 1; background: rgba(37,99,235,0.2); }
  100% { transform: scale(1); opacity: 0.7; }
}
/* Two column layout for About + Pricing */
.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}
.about-section, .pricing-side {
  flex: 1;
  min-width: 280px;
}
.about-section {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
}
.about-section h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.about-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.about-section ul li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-section ul li i {
  width: 24px;
  color: #2563eb;
}
.pricing-side .services-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .two-columns {
    flex-direction: column;
  }
}
/* Animated form fields */
.form-group input, .form-group select, .form-group textarea {
  transition: all 0.3s ease;
  border: 1px solid #cbd5e1;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
  transform: scale(1.01);
}

/* Animated pricing cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

/* Negotiate button pulse */
.negotiate-btn {
  animation: gentlePulse 2s infinite;
}
/* Reviews Section */
.section-title {
  text-align: center;
  margin: 2rem 0 1rem;
}
.section-title h2 {
  font-size: 2rem;
  color: #1e3a8a;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.review-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 30px -12px rgba(37,99,235,0.15);
}
.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.review-card p {
  color: #334155;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.reviewer {
  font-weight: 600;
  color: #1e40af;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}

/* ========== CUSTOM TOAST NOTIFICATION ========== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 9999;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 90%;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .toast-notification {
    white-space: normal;
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 40px;
  }
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification i {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.toast-notification.success {
  background: linear-gradient(135deg, #059669, #10b981);
}

.toast-notification.error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.toast-notification.info {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
