@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2874A6;
  --secondary-color: #1ABC9C;
  --accent-color: #45B7D1;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #2874A6 100%);
  --hover-color: #1F618D;
  --background-color: #F2F2F2;
  --text-color: #34495D;
  --border-color: rgba(69, 183, 209, 0.25);
  --divider-color: rgba(26, 188, 156, 0.15);
  --shadow-color: rgba(44, 62, 80, 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);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px var(--shadow-color);
  border-bottom: 3px solid var(--secondary-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

header nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav ul li a:hover::before {
  width: 100%;
}

header nav ul li a:hover {
  color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.mobile-menu-toggle span {
  width: 32px;
  height: 4px;
  background: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

#mobile-menu-checkbox {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(44, 62, 80, 0.65), rgba(40, 116, 166, 0.65)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  color: var(--light-color);
  padding: 5rem 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(26, 188, 156, 0.05) 10px,
    rgba(26, 188, 156, 0.05) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.8rem;
  text-shadow: 3px 5px 10px rgba(0, 0, 0, 0.5);
  animation: slideInDown 0.8s ease;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.9;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Sections */
.content-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.content-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3.5rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 60% 40%;
}

.content-grid.equal {
  grid-template-columns: 1fr 1fr;
}

.content-image {
  border-radius: 25px;
  box-shadow: 0 18px 45px var(--shadow-color),
              0 8px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 3px solid var(--accent-color);
}

.content-image:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(44, 62, 80, 0.18),
              0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.content-image:hover img {
  transform: scale(1.08);
}

.content-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
  letter-spacing: 1.5px;
}

.content-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* Section Divider */
.section-divider {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(90deg, transparent 0%, var(--light-color) 50%, transparent 100%);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--divider-color) 20%, var(--divider-color) 80%, transparent 100%);
  transform: translateY(-50%);
}

.section-divider h3 {
  display: inline-block;
  background: var(--background-color);
  padding: 0 3rem;
  position: relative;
  z-index: 1;
  font-size: 2rem;
  letter-spacing: 2px;
}

/* CTA Sections */
.cta-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
  background: linear-gradient(rgba(26, 188, 156, 0.75), rgba(40, 116, 166, 0.75)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  color: var(--light-color);
  text-align: center;
  border-top: 4px solid var(--secondary-color);
  border-bottom: 4px solid var(--primary-color);
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 3px 5px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

.cta-section p {
  font-size: 1.4rem;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.9;
}

/* Features Timeline */
.features-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.features-timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(26, 188, 156, 0.3);
}

.feature-item {
  margin-bottom: 3.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-item:nth-child(even) .feature-content {
  grid-column: 2;
  grid-row: 1;
}

.feature-item:nth-child(even) .feature-icon-wrapper {
  grid-column: 1;
  grid-row: 1;
}

.feature-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 -3px 6px rgba(255, 255, 255, 0.6),
              inset 0 3px 6px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.feature-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15),
              inset 0 -3px 6px rgba(255, 255, 255, 0.6),
              inset 0 3px 6px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.feature-icon-wrapper {
  text-align: center;
  position: relative;
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px var(--shadow-color),
              inset 0 -3px 6px rgba(0, 0, 0, 0.25),
              inset 0 3px 6px rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 2;
  border: 3px solid #ffffff;
}

.feature-item h3 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 -3px 6px rgba(255, 255, 255, 0.9),
              inset 0 3px 6px rgba(0, 0, 0, 0.03);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  border-left: 5px solid var(--secondary-color);
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.15;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(44, 62, 80, 0.15),
              inset 0 -3px 6px rgba(255, 255, 255, 0.9),
              inset 0 3px 6px rgba(0, 0, 0, 0.03);
  border-left-color: var(--primary-color);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
}

.contact-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #ffffff;
  transform: translateX(10px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.contact-item p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Form Styles */
.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 -3px 6px rgba(255, 255, 255, 0.6),
              inset 0 3px 6px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--border-color);
  border-top: 4px solid var(--secondary-color);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: var(--alt-font);
  transition: all 0.3s ease;
  background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(40, 116, 166, 0.15);
  background: #ffffff;
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem 2.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(40, 116, 166, 0.35),
              inset 0 -3px 6px rgba(0, 0, 0, 0.25),
              inset 0 3px 6px rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 116, 166, 0.45),
              inset 0 -3px 6px rgba(0, 0, 0, 0.25),
              inset 0 3px 6px rgba(255, 255, 255, 0.35);
}

/* FAQ Section */
.faq-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: #ffffff;
}

.faq-container {
  max-width: 950px;
  margin: 3.5rem auto 0;
}

.faq-item {
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 -2px 4px rgba(255, 255, 255, 0.6);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  border-left: 5px solid var(--accent-color);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15),
              inset 0 -2px 4px rgba(255, 255, 255, 0.6);
  border-left-color: var(--primary-color);
}

.faq-question {
  padding: 2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.faq-answer {
  padding: 0 2.5rem 2rem 5.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Footer Styles */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.8rem;
  border-top: 4px solid var(--secondary-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex-wrap: wrap;
}

footer nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

footer nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

footer nav ul li a:hover::after {
  width: 100%;
}

footer nav ul li a:hover {
  color: var(--secondary-color);
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 240, 241, 0.15);
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-credit a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--highlight-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    background: var(--dark-color);
    padding: 2.5rem 0;
    transition: left 0.4s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    border-top: 3px solid var(--secondary-color);
  }

  header nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  header nav ul li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(236, 240, 241, 0.15);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  #mobile-menu-checkbox:checked ~ nav {
    left: 0;
  }

  #mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  #mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .content-grid,
  .content-grid.reverse,
  .content-grid.equal {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-grid.reverse .content-image {
    order: 1;
  }

  .content-grid.reverse .content-text {
    order: 2;
  }

  .features-timeline::before {
    left: 25px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    padding-left: 70px;
  }

  .feature-item:nth-child(even) .feature-content {
    grid-column: 1;
  }

  .feature-item:nth-child(even) .feature-icon-wrapper {
    grid-column: 1;
    position: absolute;
    left: 0;
  }

  .feature-icon-wrapper {
    position: absolute;
    left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }

  .cta-section h2 {
    font-size: 2.3rem;
  }

  .cta-section p {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .content-text h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}