@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2874A6;
  --secondary-color: #1B4F72;
  --accent-color: #5DADE2;
  --light-color: #D6EAF8;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #2874A6 0%, #1B4F72 100%);
  --hover-color: #21618C;
  --background-color: #F8FBFD;
  --text-color: #4B5563;
  --border-color: rgba(93, 173, 226, 0.3);
  --divider-color: rgba(27, 79, 114, 0.15);
  --shadow-color: rgba(27, 79, 114, 0.12);
  --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);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 15px 0;
  box-shadow: 0 4px 12px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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: 30px;
}

header nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--light-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  padding: 0 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 16, 33, 0.75), rgba(40, 116, 166, 0.5));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Content Section */
.content-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-image {
  flex: 0 0 40%;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 8dvh 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-color);
}

.section-divider span {
  font-family: var(--main-font);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  white-space: nowrap;
}

/* CTA Section */
.cta-section {
  padding: 15dvh 20px;
  position: relative;
  text-align: center;
  color: #FFFFFF;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
}

.cta-section p {
  font-size: 1.4rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Features Section */
.features-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-color) 100%);
}

.features-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.7);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px var(--shadow-color);
  z-index: 10;
}

.feature-icon i {
  color: #FFFFFF;
  font-size: 24px;
}

.feature-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: var(--background-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 18px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 24px;
  margin-top: 5px;
}

.contact-item div h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-item div p {
  font-size: 1rem;
  color: var(--text-color);
}

.contact-form {
  flex: 1;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
}

.contact-form h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  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(40, 116, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: var(--background-color);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 25px;
  box-shadow: 0 4px 12px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 18px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.faq-item h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3 i {
  color: var(--highlight-color);
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

footer .logo img {
  height: 50px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

footer nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

footer nav a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 20px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
  }

  #menu-toggle:checked ~ nav {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  header .logo {
    margin: 0 auto;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .content-flex {
    flex-direction: column;
    gap: 30px;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .content-text h2 {
    font-size: 1.8rem;
  }

  .features-timeline::before {
    left: 20px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
  }

  .feature-icon {
    left: 20px;
    transform: translateX(0);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  footer .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 10px;
  }
}