@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --bs-primary: #0D5BD7;
  --bs-secondary: #2E95F5;
  --bs-warning: #FFB100;
  
  --primary-color: #0D5BD7;
  --secondary-color: #2E95F5;
  --accent-color: #FFB100;
  --bg-color: #FFFFFF;
  --light-section: #F7FAFD;
  --text-color: #1F2937;
  --text-muted: #6B7280;
  
  /* Utilities */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(13, 91, 215, 0.1), 0 10px 10px -5px rgba(13, 91, 215, 0.04);
  --radius-md: 16px;
  --radius-lg: 20px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  
  --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
}
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-light-section { background-color: var(--light-section); }

/* Sticky Header */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  background-color: var(--bg-color);
}
.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}
.navbar-brand img {
  height: clamp(50px, 6vw, 70px);
  transition: all 0.3s ease;
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0A49B0;
  border-color: #0A49B0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}
.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #1A7DD4;
  border-color: #1A7DD4;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-warning {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: #000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-warning:hover {
  background-color: #E6A000;
  border-color: #E6A000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  background: radial-gradient(circle at top right, rgba(46, 149, 245, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(13, 91, 215, 0.05), transparent 50%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}
.hero-img-wrapper {
  position: relative;
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 10px solid white;
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-section);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--secondary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }
.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
@media screen and (max-width: 768px) {
  .timeline::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-item::after { left: 21px; }
  .right { left: 0%; }
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.stat-card h3 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}
.stars {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #0A192F;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}
footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--accent-color);
}
.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);
  margin-right: 10px;
}
.social-links a:hover {
  background: var(--accent-color);
  color: #0A192F;
}

/* Utilities */
.section-padding { padding: 80px 0; }
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-whatsapp {
  background: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}
.float-whatsapp:hover { transform: scale(1.1); color: white; }

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .hero-buttons a {
    width: 100%;
  }
}
