/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #454B57; /* secondary-primary */
  background-color: #F7FAFC;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #454B57; /* secondary-primary */
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-svg {
  height: 40px; /* Adjust based on your preference */
  width: auto;
}

.logo-text {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3CBCC1; /* primary */
}

.cta-button {
  background: #3CBCC1; /* primary */
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: rgba(60, 188, 193, 0.8); /* slightly darker primary-opacity */
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: #3CBCC1; /* primary, no gradient */
  color: #FFFFFF;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.primary-button {
  background: #FFFFFF;
  color: #3CBCC1; /* primary */
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.primary-button:hover {
  background: #E6F0FA; /* Light blue-gray for better contrast */
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.secondary-button:hover {
  background: rgba(60, 188, 193, 0.3); /* primary-opacity */
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 6rem 0;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(60, 188, 193, 0.3); /* primary-opacity */
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3CBCC1; /* primary */
}

/* Testimonials Section */
.testimonials {
  background: #EDF2F7;
  padding: 6rem 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: #454B57; /* secondary-primary */
  margin-top: 1rem;
  font-style: normal;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid #3CBCC1; /* primary */
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #3CBCC1; /* primary */
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #454B57; /* secondary-primary */
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  margin: 0.5rem 0;
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #3CBCC1; /* primary */
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #454B57; /* secondary-primary */
  color: #FFFFFF;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.enamad-badge {
  width: 120px;
  transition: transform 0.3s ease;
}

.enamad-badge:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .cta-button {
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-svg {
    height: 30px; /* Smaller logo on mobile */
  }

  .logo-text {
    font-size: 1rem;
  }
}