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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #0a2540, #11897a);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

main {
  flex: 1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */
header {
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.highlight {
  color: #36f5d0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(54, 245, 208, 0.1);
  color: #36f5d0;
}

.nav-links a.active {
  background: #36f5d0;
  color: #0a2540;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #36f5d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filled {
  background: #36f5d0;
  color: #0a2540;
}

.outline {
  border: 2px solid #36f5d0;
  color: white;
}

.filled:hover {
  background: #2ac3a9;
  transform: translateY(-2px);
}

.outline:hover {
  background: rgba(54, 245, 208, 0.1);
  transform: translateY(-2px);
}

/* Images */
.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding: 0 20px;
}

.images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.images img:hover {
  transform: translateY(-10px);
}

/* About Page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section {
  background: rgba(27, 60, 117, 0.3);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(54, 245, 208, 0.1);
  transition: all 0.3s ease;
}

.about-section:hover {
  background: rgba(27, 60, 117, 0.4);
  border-color: rgba(54, 245, 208, 0.2);
  transform: translateY(-5px);
}

.about-section h2 {
  color: #36f5d0;
  margin-bottom: 15px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-list i {
  color: #36f5d0;
}

/* Pricing Page Styles */
.pricing-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-box {
  background: rgba(27, 60, 117, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(54, 245, 208, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-box.featured {
  background: rgba(27, 60, 117, 0.4);
  border: 2px solid #36f5d0;
  transform: scale(1.05);
}

.pricing-box:hover {
  transform: translateY(-10px);
  border-color: rgba(54, 245, 208, 0.3);
}

.pricing-box.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #36f5d0;
  color: #0a2540;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h2 {
  font-size: 28px;
  color: #36f5d0;
  margin-bottom: 15px;
}

.price {
  margin: 20px 0;
}

.price .amount {
  font-size: 48px;
  color: white;
  font-weight: 700;
}

.price .period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-features i {
  color: #36f5d0;
  font-size: 16px;
}

.shared-features {
  text-align: center;
  margin: 60px auto;
  max-width: 1000px;
}

.shared-features h2 {
  font-size: 28px;
  color: #36f5d0;
  margin-bottom: 30px;
}

.features-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-badge {
  background: rgba(27, 60, 117, 0.3);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateY(-5px);
  background: rgba(27, 60, 117, 0.4);
}

.feature-badge i {
  color: #36f5d0;
  font-size: 24px;
}

.feature-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-box {
    padding: 30px 20px;
  }

  .pricing-box.featured {
    transform: scale(1);
  }

  .pricing-box.featured:hover {
    transform: translateY(-10px) scale(1);
  }

  .price .amount {
    font-size: 36px;
  }

  .features-badge-grid {
    grid-template-columns: 1fr;
  }
}

/* Features Page */
.features-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-box {
  background: rgba(27, 60, 117, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(54, 245, 208, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  background: rgba(27, 60, 117, 0.4);
  border-color: rgba(54, 245, 208, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(54, 245, 208, 0.2), rgba(54, 245, 208, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(54, 245, 208, 0.3), rgba(54, 245, 208, 0.2));
}

.feature-icon i {
  font-size: 32px;
  color: #36f5d0;
}

.feature-box h2 {
  color: #36f5d0;
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-link {
  color: #36f5d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link:hover {
  transform: translateX(5px);
}

.feature-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: rgba(27, 60, 117, 0.3);
  border-radius: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #36f5d0;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .feature-box h2 {
    font-size: 20px;
  }
}

/* Contact Page */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: rgba(27, 60, 117, 0.3);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(27, 60, 117, 0.4);
  transform: translateY(-5px);
}

.info-card i {
  font-size: 24px;
  color: #36f5d0;
  margin-bottom: 10px;
}

.contact-form {
  background: rgba(27, 60, 117, 0.3);
  padding: 30px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(54, 245, 208, 0.2);
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #36f5d0;
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: rgba(10, 37, 64, 0.95);
  padding: 30px 20px;
  text-align: center;
  margin-top: 80px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social a {
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social a:hover {
  color: #36f5d0;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

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

  .hero h1 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .images {
    grid-template-columns: 1fr;
  }
}

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

.hero > * {
  animation: fadeIn 0.5s ease-out forwards;
}

.hero > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero > *:nth-child(3) {
  animation-delay: 0.4s;
}
