@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #E67E22;
  --secondary-color: #CA6F1E;
  --accent-color: #F39C12;
  --light-color: #FDEBD0;
  --dark-color: #A04000;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
  --hover-color: #D68910;
  --background-color: #FEF9E7;
  --text-color: #34495E;
  --border-color: rgba(230, 126, 34, 0.28);
  --divider-color: rgba(202, 111, 30, 0.18);
  --shadow-color: rgba(160, 64, 0, 0.15);
  --highlight-color: #D01257;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', 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.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 1.1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.06);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.1rem;
}

header nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 6px;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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: 31px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

#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, #34495E 0%, #2C3E50 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: 1.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(6px, -6px);
  }
}

/* Hero Section */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(160, 64, 0, 0.65), rgba(52, 73, 94, 0.7));
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  margin-bottom: 1.7rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.65);
  font-weight: 800;
}

#hero p {
  font-size: clamp(1.12rem, 2.3vw, 1.55rem);
  max-width: 720px;
  margin: 0 auto 2.3rem;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  padding: 17px 42px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 55px;
  font-weight: 700;
  font-size: 1.12rem;
  transition: all 0.35s ease;
  box-shadow: 0 9px 24px var(--shadow-color);
  border: 2px solid transparent;
  letter-spacing: 0.6px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--shadow-color);
  background: linear-gradient(135deg, #E67E22 0%, #CA6F1E 100%);
  border-color: var(--highlight-color);
}

/* Section Styles */
section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
}

section:nth-child(even) {
  background-color: #FFFAF0;
}

section:nth-child(odd) {
  background-color: var(--background-color);
}

section h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.1rem);
  margin-bottom: 3.3rem;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1.1rem;
  font-weight: 800;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Content Sections */
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 45px;
}

.content-wrapper img {
  border-radius: 22px;
  box-shadow: 0 11px 32px var(--shadow-color);
  width: 100%;
  height: auto;
  transition: transform 0.38s ease;
}

.content-wrapper img:hover {
  transform: scale(1.04);
}

.content-text {
  flex: 1;
}

.content-text p {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-color);
}

.content-text h3 {
  color: var(--accent-color);
  margin-bottom: 1.1rem;
  font-size: 1.85rem;
  font-weight: 700;
}

@media (max-width: 968px) {
  .content-wrapper {
    flex-direction: column;
  }
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  margin: 4.5rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0.32;
  border-radius: 2px;
}

.section-divider p {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  font-family: var(--main-font);
}

/* CTA Sections */
.cta-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 11dvh 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(160, 64, 0, 0.7);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  margin-bottom: 1.8rem;
  text-shadow: 2px 2px 11px rgba(0, 0, 0, 0.75);
}

.cta-section p {
  font-size: clamp(1.12rem, 2.4vw, 1.65rem);
  margin-bottom: 2.8rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.75);
  line-height: 1.8;
}

/* Features Section */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4.2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 42px);
  padding: 2.3rem;
  background: #FFFFFF;
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 9px 28px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.07);
  position: relative;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.12);
  border-color: var(--primary-color);
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #ffffff;
  box-shadow: 0 0 0 9px var(--background-color),
              0 9px 23px var(--shadow-color);
  z-index: 10;
}

.timeline-content h3 {
  font-size: 1.65rem;
  margin-bottom: 1.1rem;
  color: var(--accent-color);
  font-weight: 700;
}

.timeline-content p {
  font-size: 1.07rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 32px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .timeline-content {
    width: calc(100% - 85px);
    margin-left: 85px;
  }

  .timeline-icon {
    left: 32px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.8rem;
}

.testimonial-card {
  padding: 2.8rem;
  background: #FFFFFF;
  border-radius: 22px;
  border: 2px solid var(--border-color);
  box-shadow: 0 11px 32px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 3.2rem;
  color: var(--primary-color);
  opacity: 0.13;
}

.testimonial-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 16px 42px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.11);
  border-color: var(--accent-color);
}

.testimonial-card p {
  font-size: 1.07rem;
  line-height: 1.85;
  margin-bottom: 1.7rem;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--highlight-color);
  font-size: 1.12rem;
  font-style: normal;
}

/* Form Section */
#contact .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.2rem;
  align-items: start;
}

.contact-info {
  padding: 2.3rem;
  background: #FFFFFF;
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 9px 28px var(--shadow-color);
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 2.3rem;
  font-size: 1.9rem;
  font-weight: 700;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.contact-item i {
  font-size: 1.55rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item p {
  font-size: 1.07rem;
  line-height: 1.8;
  color: var(--text-color);
}

.contact-form {
  padding: 3.2rem;
  background: #FFFFFF;
  border-radius: 22px;
  border: 2px solid var(--border-color);
  box-shadow: 0 11px 32px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.04);
}

.contact-form h3 {
  color: var(--accent-color);
  margin-bottom: 2.3rem;
  font-size: 2.1rem;
  text-align: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.03rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 11px;
  font-size: 1.03rem;
  font-family: var(--alt-font);
  background: #FEF9E7;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.18),
              inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 155px;
}

.submit-button {
  width: 100%;
  padding: 19px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 11px;
  font-size: 1.22rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 9px 24px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.7px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--shadow-color);
  background: linear-gradient(135deg, #CA6F1E 0%, #A04000 100%);
}

@media (max-width: 968px) {
  #contact .container {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2.3rem;
  padding: 2.3rem;
  background: #FFFFFF;
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 9px 28px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.04);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px var(--shadow-color),
              inset 0 2px 0 rgba(230, 126, 34, 0.09);
  border-color: var(--primary-color);
}

.faq-question {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.faq-question i {
  color: var(--highlight-color);
  font-size: 1.25rem;
}

.faq-answer {
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--text-color);
  padding-left: 2.35rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: var(--light-color);
  padding: 4.2rem 0 2.3rem;
  box-shadow: 0 -4px 18px var(--shadow-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.3rem;
}

footer .logo img {
  height: 62px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.3rem;
  flex-wrap: wrap;
}

footer nav ul li a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}

footer nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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: 3.2rem;
  padding-top: 2.3rem;
  border-top: 2px solid var(--border-color);
  font-size: 0.93rem;
  color: rgba(253, 235, 208, 0.73);
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.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 22% 48%, rgba(230, 126, 34, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 78% 72%, rgba(208, 18, 87, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 42% 22%, rgba(243, 156, 18, 0.04) 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;
}