@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #577BC1;
  --secondary-color: #344CB7;
  --accent-color: #3498DB;
  --light-color: #ECF0F1;
  --dark-color: #000957;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #577BC1 100%);
  --hover-color: #2874A6;
  --background-color: #0F0766;
  --text-color: #ECF0F1;
  --border-color: rgba(87, 123, 193, 0.3);
  --divider-color: rgba(52, 76, 183, 0.2);
  --shadow-color: rgba(0, 9, 87, 0.4);
  --highlight-color: #FFEB00;
  --main-font: 'Playfair Display', 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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #000957 0%, #0F0766 50%, #344CB7 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px var(--shadow-color);
  border-bottom: 2px solid var(--primary-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

header nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 10px 18px;
  border-radius: 8px;
  position: relative;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav ul li a:hover::after {
  width: 80%;
}

header nav ul li a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 9, 87, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.3s ease;
}

.btn-primary {
  display: inline-block;
  padding: 18px 45px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px var(--shadow-color);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px var(--shadow-color);
  border-color: var(--highlight-color);
  background: linear-gradient(135deg, #577BC1 0%, #3498DB 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Sections */
.content-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(15, 7, 102, 0.8) 100%);
}

.content-flex {
  display: flex;
  gap: 50px;
  align-items: center;
}

.content-image {
  border-radius: 25px;
  box-shadow: 0 20px 50px var(--shadow-color);
  transition: all 0.4s ease;
  border: 3px solid var(--border-color);
}

.content-image:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 25px 60px var(--shadow-color);
}

.content-text h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--light-color);
}

/* Section Divider */
.section-divider {
  position: relative;
  text-align: center;
  padding: 50px 0;
  overflow: hidden;
  background: rgba(0, 9, 87, 0.5);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.divider-line {
  display: none;
}

.divider-text {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: var(--highlight-color);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 20px var(--shadow-color);
  position: relative;
  z-index: 2;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Sections */
.cta-section {
  padding: 18vh 0;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 9, 87, 0.8) 0%, rgba(15, 7, 102, 0.7) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  color: var(--highlight-color);
}

.cta-content p {
  font-size: 1.5rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Features Section */
.features-section {
  padding: 10vh 0;
  background: linear-gradient(135deg, rgba(15, 7, 102, 0.9) 0%, var(--background-color) 100%);
}

.features-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 35px;
  background: linear-gradient(145deg, rgba(0, 9, 87, 0.8) 0%, rgba(15, 7, 102, 0.6) 100%);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 15px 40px var(--shadow-color);
  transition: all 0.4s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-color);
  border-color: var(--primary-color);
  background: linear-gradient(145deg, rgba(52, 76, 183, 0.3) 0%, rgba(87, 123, 193, 0.2) 100%);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(87, 123, 193, 0.5);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--highlight-color);
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 10vh 0;
  background: rgba(0, 9, 87, 0.6);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  padding: 35px;
  background: linear-gradient(145deg, rgba(15, 7, 102, 0.7) 0%, rgba(0, 9, 87, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 15px 40px var(--shadow-color);
  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;
  left: 25px;
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-color);
  border-color: var(--primary-color);
}

.testimonial-text {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  color: var(--light-color);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--highlight-color);
  font-size: 1.15rem;
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  background: linear-gradient(135deg, rgba(15, 7, 102, 0.9) 0%, var(--background-color) 100%);
}

.contact-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 9, 87, 0.4);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(52, 76, 183, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-info-item h3 {
  color: var(--highlight-color);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-info-item p {
  color: var(--light-color);
}

.contact-form {
  flex: 1;
  background: linear-gradient(145deg, rgba(0, 9, 87, 0.8) 0%, rgba(15, 7, 102, 0.6) 100%);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--highlight-color);
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--light-color);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(0, 9, 87, 0.5);
  color: var(--light-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(236, 240, 241, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(87, 123, 193, 0.3);
  background: rgba(15, 7, 102, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: white;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow-color);
  border-color: var(--highlight-color);
  background: linear-gradient(135deg, #577BC1 0%, #3498DB 100%);
}

/* FAQ Section */
.faq-section {
  padding: 10vh 0;
  background: rgba(0, 9, 87, 0.6);
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 25px;
  background: linear-gradient(145deg, rgba(15, 7, 102, 0.7) 0%, rgba(0, 9, 87, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.faq-question {
  padding: 25px 30px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--highlight-color);
  background: rgba(0, 9, 87, 0.6);
  border-bottom: 1px solid var(--border-color);
}

.faq-answer {
  padding: 25px 30px;
  line-height: 1.8;
  color: var(--light-color);
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #000957 0%, #0F0766 50%, #344CB7 100%);
  color: var(--light-color);
  padding: 50px 0 25px;
  border-top: 3px solid var(--primary-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

footer nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

footer nav ul li a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

.footer-credits {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.footer-credits a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-credits a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000957 0%, #344CB7 100%);
    padding: 25px;
    box-shadow: 0 8px 20px var(--shadow-color);
  }

  #menu-toggle:checked ~ nav {
    display: block;
  }

  header nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .hamburger {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .content-flex {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 2.3rem;
  }

  .cta-content p {
    font-size: 1.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-flex {
    flex-direction: column;
  }

  footer .container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 12px;
  }
}