@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2980B9;
  --secondary-color: #1F618D;
  --accent-color: #3498DB;
  --light-color: #D6EAF8;
  --dark-color: #1A4D6F;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  --hover-color: #2471A3;
  --background-color: #1C2833;
  --text-color: #E8F8F5;
  --border-color: rgba(52, 152, 219, 0.3);
  --divider-color: rgba(31, 97, 141, 0.2);
  --shadow-color: rgba(26, 77, 111, 0.4);
  --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;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  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: 2rem;
}

header nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    left: 20px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
  }

  header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  header nav ul li {
    border-bottom: 1px solid var(--border-color);
  }

  header nav ul li a {
    display: block;
    padding: 1rem 2rem;
  }

  #menu-toggle:checked ~ nav {
    max-height: 500px;
  }

  #menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hero Section */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(28, 40, 51, 0.7), rgba(26, 77, 111, 0.8));
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

#hero p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px var(--shadow-color);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-color);
  background: linear-gradient(135deg, #2980B9 0%, #1F618D 100%);
  border-color: var(--highlight-color);
}

/* Section Styles */
section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
}

section:nth-child(even) {
  background-color: #17202A;
}

section:nth-child(odd) {
  background-color: var(--background-color);
}

section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Content Sections */
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-wrapper img {
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.content-wrapper img:hover {
  transform: scale(1.03);
}

.content-text {
  flex: 1;
}

.content-text p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-text h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

@media (max-width: 968px) {
  .content-wrapper {
    flex-direction: column;
  }
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.section-divider p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

/* CTA Sections */
.cta-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 12dvh 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 77, 111, 0.75);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.cta-section p {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Features Section */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 2rem;
  background: linear-gradient(135deg, #212F3C 0%, #17202A 100%);
  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.1);
  position: relative;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 0 0 8px var(--background-color),
              0 8px 20px var(--shadow-color);
  z-index: 10;
}

.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light-color);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .timeline-icon {
    left: 30px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, #212F3C 0%, #17202A 100%);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 2px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.15;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 2px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--light-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--highlight-color);
  font-size: 1.1rem;
  font-style: normal;
}

/* Form Section */
#contact .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  background: linear-gradient(135deg, #212F3C 0%, #17202A 100%);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light-color);
}

.contact-form {
  padding: 3rem;
  background: linear-gradient(135deg, #212F3C 0%, #17202A 100%);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 2px 0 rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--light-color);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--alt-font);
  background: rgba(44, 62, 80, 0.5);
  color: var(--light-color);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(44, 62, 80, 0.7);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2),
              inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 1px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-color);
  background: linear-gradient(135deg, #1F618D 0%, #154360 100%);
}

@media (max-width: 968px) {
  #contact .container {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #212F3C 0%, #17202A 100%);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 2px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 2px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--highlight-color);
  font-size: 1.2rem;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--light-color);
  padding-left: 2.2rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  color: var(--light-color);
  padding: 4rem 0 2rem;
  box-shadow: 0 -4px 15px var(--shadow-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

footer .logo img {
  height: 60px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

footer nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
}

footer nav ul li a:hover::after {
  width: 100%;
}

footer nav ul li a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: rgba(232, 248, 245, 0.7);
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}

/* Decorative Background Patterns */
.pattern-bg {
  position: relative;
  overflow: hidden;
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(41, 128, 185, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Utility Classes */
.text-highlight {
  color: var(--highlight-color);
  font-weight: 700;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}