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

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

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FF9F29;
  color: #2D2D2D;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  background-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.header {
  background-color: #FF9F29;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  flex-direction: column;
}
.header .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header .logo-text:hover {
  color: #474747;
}
.header .logo-text span {
  display: block;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
  transition: all 0.3s ease;
}
.header .logo-text:hover span {
  color: #474747;
}
.header .nav-links {
  display: flex;
  gap: 30px;
}
.header .nav-links a {
  color: #2D2D2D;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
.header .nav-links a:hover {
  color: #FFFFFF;
}
.header .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}
.header .nav-links a:hover::after {
  width: 100%;
}
.header .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2D2D2D;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .phone-link:hover {
  color: #FFFFFF;
}
.header .phone-icon {
  font-size: 1.1rem;
}
@media (max-width: 992px) {
  .header .nav-links {
    display: none;
  }
}

.hero {
  margin-top: 70px;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/00e7e29b327611f0b78dca37084cf44c.jfif") center/cover no-repeat;
  color: #FFFFFF;
  position: relative;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 0;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
}

.about {
  padding: 80px 0;
  background-color: #FFF5EB;
}
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  color: #2D2D2D;
  margin-bottom: 25px;
  position: relative;
}
.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #FF9F29;
  margin-top: 15px;
}
.about-text p {
  margin-bottom: 20px;
  color: #6D6D6D;
}
.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
}

.process {
  padding: 80px 0;
}
.process-title {
  text-align: center;
  margin-bottom: 60px;
}
.process-title h2 {
  color: #2D2D2D;
  position: relative;
}
.process-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #FF9F29;
  margin: 20px auto 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.process-step {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.process-step-icon {
  font-size: 2.5rem;
  color: #FF9F29;
  margin-bottom: 20px;
}
.process-step h3 {
  color: #2D2D2D;
  margin-bottom: 15px;
}
.process-step p {
  color: #6D6D6D;
}
@media (max-width: 768px) {
  .process {
    padding: 60px 0;
  }
  .process-title {
    margin-bottom: 40px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.when {
  padding: 80px 0;
  background-color: #FFF5EB;
}
.when-title {
  text-align: center;
  margin-bottom: 60px;
}
.when-title h2 {
  color: #2D2D2D;
  position: relative;
}
.when-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #FF9F29;
  margin: 20px auto 0;
}
.when-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.when-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.when-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.when-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.when-card-content {
  padding: 25px;
}
.when-card-content h3 {
  color: #2D2D2D;
  margin-bottom: 15px;
}
.when-card-content p {
  color: #6D6D6D;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .when {
    padding: 60px 0;
  }
  .when-cards {
    grid-template-columns: 1fr;
  }
}

.faq {
  padding: 80px 0;
}
.faq-title {
  text-align: center;
  margin-bottom: 60px;
}
.faq-title h2 {
  color: #2D2D2D;
  position: relative;
}
.faq-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #FF9F29;
  margin: 20px auto 0;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
}
.faq-item.active .faq-header {
  background-color: #ffe8d2;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-content {
  max-height: 500px;
  padding: 20px;
}
.faq-header {
  padding: 20px;
  background: #FFF5EB;
  color: #2D2D2D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-header:hover {
  background-color: #ffe8d2;
}
.faq-header h3 {
  margin: 0;
  font-size: 1.1rem;
}
.faq-icon {
  transition: all 0.3s ease;
}
.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-content p {
  color: #6D6D6D;
}
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
  .faq-header {
    padding: 15px;
  }
}

.cta {
  background: linear-gradient(135deg, #FF9F29 0%, #f58700 100%);
  color: #2D2D2D;
  padding: 100px 0;
  text-align: center;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  margin-top: 80px;
}
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta .btn-first {
  background: #FFFFFF;
  color: #2D2D2D;
}
.cta .btn-first:hover {
  background: #f2f2f2;
}
.cta .btn-secondary {
  background: #FFFFFF;
  color: #2D2D2D;
}
.cta .btn-secondary:hover {
  background: #f2f2f2;
}
@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

.footer {
  background: #2D2D2D;
  color: #FFFFFF;
  padding: 80px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #FF9F29;
  margin-top: 10px;
}
.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #FF9F29;
  transform: translateY(-3px);
}
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */