* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e65100;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-nav ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-nav ul li a.active,
.site-nav ul li a:hover {
  color: #e65100;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #333333;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(230, 81, 0, 0.6),
      rgba(230, 81, 0, 0.6)
    ),
    url("../assets/images/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeIn 1s ease;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, #f57c00, #fb8c00);
  color: #ffffff;
  padding: 12px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: opacity 0.3s ease;
}

.btn-hero:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  padding: 80px 0;
  background-color: #fff3e0;
}

.about-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #555555;
  font-size: 1rem;
  text-align: center;
}

.services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff3e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #e65100;
  margin: 20px 0 10px;
}

.service-card p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.team-section {
  padding: 80px 0;
  background-color: #fff3e0;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.2rem;
  color: #e65100;
  margin-bottom: 5px;
}

.team-info span {
  font-size: 0.9rem;
  color: #757575;
}

.testimonials-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff3e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #555555;
  margin-bottom: 15px;
}

.testimonial-card strong {
  color: #333333;
}

.contact-section {
  padding: 80px 0;
  background-color: #fff3e0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1rem;
  color: #555555;
}

.contact-section a {
  color: #e65100;
  text-decoration: none;
}

.site-footer {
  background-color: #333333;
  padding: 20px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #fb8c00;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .bar {
  color: #ffffff;
}

.site-footer p {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #f57c00, #fb8c00);
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .site-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .team-grid,
  .testimonials-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.tips-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.tips-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.tip-card h3 {
  font-size: 1.2rem;
  color: #e65100;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background: #fff3e0;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px;
  text-align: left;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ffe0b2;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #e65100;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 20px 0;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    margin-bottom: 15px;
  }
}

.gallery-section {
  padding: 80px 0;
  background-color: #fff3e0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  animation: fadeIn 0.5s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.advantages-section {
  padding: 80px 0;
  background: #fff3e0;
}

.advantages-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #e65100;
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.advantage-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.advantage-title {
  font-size: 1.2rem;
  color: #e65100;
  margin-bottom: 10px;
}

.advantage-desc {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.title_background {
  background: linear-gradient(90deg, #e65100, #fb8c00);
  padding: 60px 0;
}

.title_background .container {
  display: flex;
  justify-content: center;
}

.title_background .title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: slideIn 1s forwards;
}

.text_background {
  background-color: #fff3e0;
  padding: 40px 0;
}

.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}

.text_background .text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

.animated-text {
  opacity: 0;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}

.about-details-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-details-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-details-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #e65100;
  margin-bottom: 30px;
  position: relative;
}

.about-details-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f57c00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-details-section p {
  font-size: 1rem;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about-details-section h3 {
  font-size: 1.5rem;
  color: #e65100;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
}

.about-details-section h3::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #f57c00;
  border-radius: 2px;
}

.about-details-section ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-details-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.about-details-section ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #e65100;
  font-size: 1rem;
  line-height: 1;
}

.about-details-section strong {
  color: #333333;
}

.about-details-section p:last-child {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  color: #757575;
}

@media (max-width: 768px) {
  .about-details-section h2 {
    font-size: 2rem;
  }

  .about-details-section h3 {
    font-size: 1.3rem;
  }

  .about-details-section p,
  .about-details-section ul li {
    font-size: 0.95rem;
  }
}

html {
  scroll-behavior: smooth;
}
