@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #D35400;
  --secondary-color: #E67E22;
  --accent-color: #F39C12;
  --light-color: #FEFAE0;
  --dark-color: #5F6F52;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #D35400 100%);
  --hover-color: #A04000;
  --background-color: #FFFEF9;
  --text-color: #5F6F52;
  --border-color: rgba(243, 156, 18, 0.25);
  --divider-color: rgba(211, 84, 0, 0.15);
  --shadow-color: rgba(211, 84, 0, 0.12);
  --highlight-color: #27AE60;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Inter', 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;
}

.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;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 25px var(--shadow-color);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.08);
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-icon span {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--light-color);
  text-decoration: none;
  font-family: var(--alt-font);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--highlight-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  padding: 2.5rem;
  z-index: 2;
  color: var(--light-color);
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-family: var(--alt-font);
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.2),
              inset 0 3px 10px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.3),
              inset 0 3px 10px rgba(255, 255, 255, 0.4);
}

.cta-button-light {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 60px;
  font-family: var(--alt-font);
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
              inset 0 -3px 10px rgba(0, 0, 0, 0.1),
              inset 0 3px 10px rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.cta-button-light:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--highlight-color);
  color: white;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45),
              inset 0 -3px 10px rgba(0, 0, 0, 0.2),
              inset 0 3px 10px rgba(255, 255, 255, 0.3);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Content Section */
.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 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3.5rem;
  align-items: center;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 18px 45px var(--shadow-color),
              inset 0 -4px 12px rgba(0, 0, 0, 0.1),
              inset 0 4px 12px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.content-image img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px var(--shadow-color),
              inset 0 -4px 12px rgba(0, 0, 0, 0.15),
              inset 0 4px 12px rgba(255, 255, 255, 0.3);
}

.content-text p {
  font-size: 1.08rem;
  line-height: 1.9;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem 2rem;
}

.divider-line {
  flex: 1;
  height: 3px;
  background: var(--divider-color);
  border-radius: 3px;
  box-shadow: inset 0 2px 4px var(--shadow-color);
}

.divider-text {
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 1.5rem;
}

/* CTA Section */
.cta-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
  background-size: cover;
}

/* Features Section */
.features-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(243, 156, 18, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(211, 84, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 45px;
  top: 90px;
  bottom: -3.5rem;
  width: 4px;
  background: linear-gradient(180deg, var(--border-color) 0%, transparent 100%);
  border-radius: 3px;
}

.timeline-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 25px var(--shadow-color),
              inset 0 -4px 10px rgba(0, 0, 0, 0.25),
              inset 0 4px 10px rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease;
  z-index: 1;
  border: 3px solid white;
}

.timeline-content {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  border: 3px solid var(--border-color);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 -3px 8px rgba(0, 0, 0, 0.05),
              inset 0 3px 8px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateX(12px);
  box-shadow: 0 18px 50px var(--shadow-color),
              inset 0 -3px 8px rgba(0, 0, 0, 0.08),
              inset 0 3px 8px rgba(255, 255, 255, 0.6);
  border-color: var(--accent-color);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 35px var(--shadow-color),
              inset 0 -4px 10px rgba(0, 0, 0, 0.35),
              inset 0 4px 10px rgba(255, 255, 255, 0.45);
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: var(--background-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 22px;
  border: 3px solid var(--border-color);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.05),
              inset 0 3px 10px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 25px;
  font-size: 6rem;
  color: var(--accent-color);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 55px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.08),
              inset 0 3px 10px rgba(255, 255, 255, 0.6);
  border-color: var(--accent-color);
}

.testimonial-text {
  font-size: 1.06rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 1.12rem;
  text-align: right;
}

/* Contact Section */
.contact-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 2rem;
  margin-top: 0.3rem;
}

.contact-item p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-form-container {
  background: white;
  padding: 3.5rem;
  border-radius: 22px;
  border: 3px solid var(--border-color);
  box-shadow: 0 18px 45px var(--shadow-color),
              inset 0 -4px 12px rgba(0, 0, 0, 0.05),
              inset 0 4px 12px rgba(255, 255, 255, 0.5);
}

.form-group {
  margin-bottom: 1.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem;
  border: 3px solid var(--border-color);
  border-radius: 14px;
  font-family: var(--alt-font);
  font-size: 1.02rem;
  transition: all 0.3s ease;
  background: var(--background-color);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.12),
              inset 0 3px 8px rgba(0, 0, 0, 0.08);
}

.submit-button {
  width: 100%;
  padding: 1.1rem 2.5rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 60px;
  font-family: var(--alt-font);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.2),
              inset 0 3px 10px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 -3px 10px rgba(0, 0, 0, 0.3),
              inset 0 3px 10px rgba(255, 255, 255, 0.4);
}

/* FAQ Section */
.faq-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 18px;
  border: 3px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 -3px 8px rgba(0, 0, 0, 0.05),
              inset 0 3px 8px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 -3px 8px rgba(0, 0, 0, 0.08),
              inset 0 3px 8px rgba(255, 255, 255, 0.6);
  border-color: var(--accent-color);
}

.faq-question {
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.faq-answer {
  font-size: 1.06rem;
  line-height: 1.9;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 3.5rem 0 1.5rem;
  color: var(--light-color);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--light-color);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--highlight-color);
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 2rem 0;
  margin-top: 2.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--light-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  
  .navigation {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    transition: left 0.3s ease;
    box-shadow: 0 12px 35px var(--shadow-color);
  }
  
  .menu-toggle:checked ~ .navigation {
    left: 0;
  }
  
  .navigation ul {
    flex-direction: column;
    padding: 2.5rem;
    gap: 0;
  }
  
  .navigation li {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  }
  
  .nav-link {
    display: block;
    padding: 1.2rem;
  }
  
  .content-grid,
  .content-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    grid-template-columns: 70px 1fr;
    gap: 2rem;
  }
  
  .timeline-icon {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  
  .timeline-item:not(:last-child)::after {
    left: 35px;
    top: 70px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav ul {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero-content p {
    font-size: 1.1rem !important;
  }
  
  .divider-text {
    font-size: 1.2rem;
  }
}