@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #EE7738;
  --secondary-color: #D35400;
  --accent-color: #F59D2A;
  --light-color: #FEFAE0;
  --dark-color: #C0392B;
  --gradient-primary: linear-gradient(135deg, #F59D2A 0%, #EE7738 100%);
  --hover-color: #E67E22;
  --background-color: #ECF0F1;
  --text-color: #34495E;
  --border-color: rgba(238, 119, 56, 0.3);
  --divider-color: rgba(211, 84, 0, 0.15);
  --shadow-color: rgba(192, 57, 43, 0.15);
  --highlight-color: #16A085;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.75;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(180deg, #C0392B 0%, #D35400 100%);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 53px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.07);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.3rem;
}

header nav a {
  color: #FEFAE0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--highlight-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

header nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

header nav a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 27px;
  height: 3px;
  background-color: #FEFAE0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    left: 20px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #D35400;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 420px;
  }

  header nav ul {
    flex-direction: column;
    padding: 1.3rem;
    gap: 0;
  }

  header nav li {
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.8rem;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(22, 160, 133, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

/* Content Section */
.content-section {
  padding: 10vh 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.8rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 3fr 2fr;
}

.content-image {
  border-radius: 20px;
  box-shadow: 
    18px 18px 45px var(--shadow-color),
    -9px -9px 28px rgba(255, 255, 255, 0.6);
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.content-image:hover {
  transform: translateY(-5px);
  box-shadow: 
    22px 22px 55px var(--shadow-color),
    -12px -12px 35px rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
  }
}

/* Section Divider */
.section-divider {
  text-align: center;
  position: relative;
  padding: 3.8rem 0;
  margin: 2.8rem 0;
}

.divider-line {
  height: 3px;
  background: var(--gradient-primary);
  position: relative;
  margin: 1.3rem 0;
  border-radius: 2px;
}

.divider-text {
  display: inline-block;
  background-color: var(--background-color);
  padding: 0 2.3rem;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 10vh 0;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(192, 57, 43, 0.82);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  color: #FEFAE0;
}

/* Features Section */
.features-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #ECF0F1 0%, #FEFAE0 100%);
}

.features-timeline {
  position: relative;
  max-width: 980px;
  margin: 3.8rem auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2.3rem;
  margin-bottom: 2.3rem;
  position: relative;
  box-shadow: 
    14px 14px 38px var(--shadow-color),
    -7px -7px 22px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 
    18px 18px 48px var(--shadow-color),
    -10px -10px 28px rgba(255, 255, 255, 0.8);
  border-color: var(--primary-color);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1.3rem;
  box-shadow: 0 7px 22px rgba(238, 119, 56, 0.35);
}

.feature-icon i {
  font-size: 1.7rem;
  color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 10vh 0;
  background: rgba(254, 250, 224, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.3rem;
  margin-top: 3.8rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2.3rem;
  box-shadow: 
    14px 14px 38px var(--shadow-color),
    -7px -7px 22px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: var(--highlight-color);
  box-shadow: 
    18px 18px 48px var(--shadow-color),
    -10px -10px 28px rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1.3rem;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #FEFAE0 0%, #ECF0F1 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.8rem;
  align-items: flex-start;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  margin-bottom: 2.3rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.85);
  border-left: 5px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 7px 7px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: 10px 10px 25px var(--shadow-color);
}

.contact-item i {
  color: var(--highlight-color);
  margin-right: 1.3rem;
  font-size: 1.35rem;
}

/* Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2.3rem;
  box-shadow: 
    14px 14px 38px var(--shadow-color),
    -7px -7px 22px rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.3rem;
  background: rgba(254, 250, 224, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  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);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(238, 119, 56, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 135px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 7px 22px rgba(238, 119, 56, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(238, 119, 56, 0.45);
  background: linear-gradient(135deg, #EE7738 0%, #D35400 100%);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10vh 0;
  background: rgba(255, 255, 255, 0.6);
}

.faq-container {
  max-width: 980px;
  margin: 3.8rem auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2.3rem;
  margin-bottom: 1.8rem;
  box-shadow: 
    14px 14px 38px var(--shadow-color),
    -7px -7px 22px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(7px);
  border-color: var(--primary-color);
  box-shadow: 
    18px 18px 48px var(--shadow-color),
    -10px -10px 28px rgba(255, 255, 255, 0.8);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
}

.faq-question i {
  color: var(--highlight-color);
  margin-right: 1.3rem;
  font-size: 1.35rem;
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.85;
  padding-left: 2.65rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #C0392B 0%, #922B21 100%);
  padding: 3.3rem 0 1.3rem;
  color: #FEFAE0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.3rem;
}

footer .logo img {
  height: 53px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.3rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #FEFAE0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

footer .footer-bottom {
  text-align: center;
  margin-top: 2.3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(238, 119, 56, 0.3);
  color: rgba(254, 250, 224, 0.75);
  font-size: 0.93rem;
}

footer .footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

footer .footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1.1rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 7px 22px rgba(238, 119, 56, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(238, 119, 56, 0.45);
  background: linear-gradient(135deg, #EE7738 0%, #D35400 100%);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}