@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2980B9;
  --secondary-color: #1A5F8A;
  --accent-color: #3498DB;
  --light-color: #E8F4F8;
  --dark-color: #0D3B52;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  --hover-color: #1E6FA0;
  --background-color: #F8FCFD;
  --text-color: #2C3E50;
  --border-color: rgba(52, 152, 219, 0.25);
  --divider-color: rgba(26, 95, 138, 0.15);
  --shadow-color: rgba(41, 128, 185, 0.15);
  --highlight-color: #F39C12;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  box-shadow: 0 4px 15px var(--shadow-color);
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

header nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

header nav a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--light-color);
  transition: all 0.3s ease;
}

#menu-checkbox {
  display: none;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(13, 59, 82, 0.6), rgba(26, 95, 138, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

/* Content Section */
.content-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.content-flex img {
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

.content-flex img:hover {
  transform: scale(1.02);
}

.content-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.content-text p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Divider */
.section-divider {
  position: relative;
  text-align: center;
  margin: 5vh 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--divider-color);
}

.divider-text {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 0 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(13, 59, 82, 0.7), rgba(26, 95, 138, 0.8)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 8vh 2rem;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.cta-section p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  min-width: 70px;
  text-align: center;
}

.feature-content h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  color: var(--secondary-color);
}

.feature-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Form Section */
.form-section {
  background: var(--light-color);
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  min-width: 35px;
}

.contact-item p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.submit-btn:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  background: var(--background-color);
  box-shadow: 0 5px 20px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--primary-color);
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

footer .logo img {
  height: 45px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

footer nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 244, 248, 0.2);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-color);
    padding: 2rem 0;
  }

  #menu-checkbox:checked ~ nav {
    display: block;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-flex {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  footer .container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .contact-form {
    padding: 2rem;
  }
}