@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2980B9;
  --secondary-color: #3498DB;
  --accent-color: #F39C12;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  --hover-color: #1F5F8B;
  --background-color: #FDFAFF;
  --text-color: #34495E;
  --border-color: rgba(52, 152, 219, 0.3);
  --divider-color: rgba(41, 128, 185, 0.15);
  --shadow-color: rgba(41, 128, 185, 0.2);
  --highlight-color: #E67E22;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Open Sans', 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;
  color: var(--dark-color);
}

/* Header Styles */
header {
  background-color: var(--dark-color);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px var(--shadow-color);
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  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: 2.5rem;
}

header nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: var(--accent-color);
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  header .logo {
    order: 2;
    flex: 1;
    text-align: center;
  }

  .hamburger {
    display: flex;
    order: 1;
  }

  header nav {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #menu-toggle:checked ~ nav {
    max-height: 600px;
  }

  header nav ul {
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
  }

  header nav li {
    padding: 0.75rem 0;
    text-align: center;
  }

  header nav a::after {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2.5rem;
}

.hero-section h1 {
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Content Sections */
.content-section {
  padding: 10dvh 0;
}

.content-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.content-flex img {
  border-radius: 20px;
  box-shadow: 0 12px 35px var(--shadow-color);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-flex img:hover {
  transform: scale(1.02);
}

.content-text h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.content-text p {
  margin-bottom: 1.3rem;
  line-height: 1.9;
  text-align: justify;
}

@media (max-width: 768px) {
  .content-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Section Divider */
.section-divider {
  padding: 6dvh 0;
  text-align: center;
  position: relative;
}

.divider-line {
  height: 3px;
  background: var(--divider-color);
  margin: 2.5rem 0;
  position: relative;
}

.divider-text {
  display: inline-block;
  background-color: var(--background-color);
  padding: 0 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  top: -2rem;
  font-family: var(--main-font);
}

/* CTA Sections */
.cta-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 12dvh 0;
  text-align: center;
  color: white;
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.cta-content p {
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-size: 1.3rem;
  line-height: 1.8;
}

/* Features Section */
.features-section {
  padding: 10dvh 0;
  background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
}

.features-timeline {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.feature-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 25px var(--shadow-color);
  transition: all 0.4s ease;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.4s ease;
  border-radius: 20px 0 0 20px;
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 35px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-item i {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
}

.feature-item p {
  color: var(--text-color);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: 10dvh 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--light-color);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  padding: 10dvh 0;
  background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.contact-item i {
  color: var(--accent-color);
  margin-top: 0.3rem;
  min-width: 25px;
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10dvh 0;
  background-color: var(--light-color);
}

.faq-container {
  max-width: 950px;
  margin: 4rem auto 0;
}

.faq-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 2rem;
  padding: 2.5rem;
  box-shadow: 0 6px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 22px var(--shadow-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.faq-question {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--accent-color);
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.9;
  text-align: justify;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  padding: 4rem 0 1.5rem;
  color: var(--light-color);
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

footer nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}