:root {
  --primary-color: #E67E22;
  --secondary-color: #D35400;
  --accent-color: #F39C12;
  --light-color: #FDF6E3;
  --dark-color: #A04000;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
  --hover-color: #CA6F1E;
  --background-color: #FFFBF0;
  --text-color: #5D4037;
  --border-color: rgba(243, 156, 18, 0.2);
  --divider-color: rgba(211, 84, 0, 0.1);
  --shadow-color: rgba(211, 84, 0, 0.15);
  --highlight-color: #8E44AD;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Neomorphism styles */
.neomorphism {
  box-shadow: 12px 12px 24px var(--shadow-color), -12px -12px 24px rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}

.neomorphism-inset {
  box-shadow: inset 12px 12px 24px var(--shadow-color), inset -12px -12px 24px rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  background: rgba(255, 251, 240, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 50px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.navigation a:hover {
  color: var(--primary-color);
}

.navigation a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navigation a:hover::before {
  width: 100%;
  left: 0;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 32px;
  height: 4px;
  background: var(--text-color);
  border-radius: 4px;
  transition: 0.3s;
}

#menu-checkbox {
  display: none;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('./img/bg.jpg') center/cover fixed;
  position: relative;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(160, 64, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 1000px;
  padding: 4rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 4.5rem;
  margin-bottom: 2rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.4);
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.5);
}

/* Section styles */
.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--main-font);
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.3;
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.image-content img {
  width: 100%;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px var(--shadow-color);
}

.image-content img:hover {
  transform: scale(1.03) rotate(1deg);
}

.text-content h2 {
  margin-bottom: 2rem;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.feature-card {
  padding: 3rem;
  text-align: center;
  background: var(--light-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.feature-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA sections */
.cta-section {
  background: url('./img/bg.jpg') center/cover fixed;
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(160, 64, 0, 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: white;
}

.cta-content h2 {
  font-family: var(--main-font);
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  padding: 3rem;
  background: var(--light-color);
  border-left: 6px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: var(--main-font);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  padding-top: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-family: var(--main-font);
}

/* Contact section */
.contact-section {
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--dark-color);
}

.contact-item {
  margin-bottom: 2.5rem;
}

.contact-item h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.contact-item p {
  font-size: 1.1rem;
}

.contact-form {
  padding: 3rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--dark-color);
  text-align: center;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem;
  border: 3px solid var(--border-color);
  border-radius: 20px;
  font-family: inherit;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  transform: scale(1.02);
}

/* FAQ */
.faq-item {
  margin-bottom: 3rem;
  padding: 3rem;
  background: white;
  border-radius: 25px;
  border-left: 6px solid var(--accent-color);
}

.faq-question {
  font-family: var(--main-font);
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.faq-item p {
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 5rem 2rem 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 20px var(--shadow-color);
    border-radius: 0 0 20px 20px;
  }

  #menu-checkbox:checked~.navigation {
    max-height: 400px;
  }

  .navigation ul {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
  }

  .logo {
    justify-content: center;
    flex: 1;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}