@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #1e293b;
  --bg: #f1f5f9;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
}

/* Reset */
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
}

/* Header */
header {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #e0f2fe, #f0f9ff);
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary);
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Services */
.services-overview {
  background: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.services-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.15);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

/* Stats */
.stats {
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat p {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  background: var(--bg);
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.testimonial h4 {
  color: var(--text);
  font-weight: 700;
}

/* Contact */
.contact-section {
  background: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 2rem;
  color: var(--muted);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact-form button {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--primary);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

/* Footer Menu */
.row-links {
  background-color: var(--primary-dark);
  padding: 1rem 0;
  text-align: center;
}

.footer-menu {
  list-style: none;
}

.footer-menu-item {
  display: inline-block;
  margin: 0 15px;
}

.footer-menu-item a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-item a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary-dark);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

#privacy-policy {
  scroll-margin-top: 80px;
}
