
/* ==================================
   SERVICES PAGE HERO
================================== */

.services-page-hero {
  padding: 120px 7%;
}

.services-page-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.services-page-content .section-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.services-page-content h1 {
  font-size: 55px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.services-page-content h1 span {
  color: var(--primary-color);
}

.services-page-content p {
  color: #666;
  line-height: 1.8;
  font-size: 18px;
}


/* ==================================
   SERVICES INTRO
================================== */

.services-intro {
  padding: 100px 8%;
}

.services-intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-intro-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.services-intro-content .section-tag {
  color: #FE0700;
  font-weight: 600;
}

.services-intro-content h2 {
  font-size: 42px;
  margin: 15px 0 20px;
}

.services-intro-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 15px;
}


/* ==================================
   SERVICES DETAILS
================================== */

.services-details {
  padding: 100px 8%;
  background: #f8f9fb;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-tag {
  color: var(--primary-color);
  font-weight: 600;
}

.services-header h2 {
  font-size: 42px;
  margin-top: 15px;
}

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

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  transition: .4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 75px;
  height: 75px;
  background: rgba(254,7,0,.08);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}


/* ==================================
   SERVICE BENEFITS
================================== */

.service-benefits {
  padding: 100px 8%;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-content .section-tag {
  color: var(--primary-color);
  font-weight: 600;
}

.benefits-content h2 {
  font-size: 42px;
  margin: 15px 0 20px;
}

.benefits-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item i {
  color: var(--primary-color);
}

.benefits-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}


/* ==================================
   PROCESS SECTION
================================== */

.service-process {
  padding: 100px 8%;
  background: #f8f9fb;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header .section-tag {
  color: var(--primary-color);
  font-weight: 600;
}

.process-header h2 {
  font-size: 42px;
  margin-top: 15px;
}

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

.process-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  transition: .4s;
}

.process-box:hover {
  transform: translateY(-10px);
}

.process-box span {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-box h3 {
  margin-bottom: 15px;
}

.process-box p {
  color: #666;
  line-height: 1.8;
}


/* ==================================
   SERVICES CTA
================================== */

.services-cta {
  padding: 100px 8%;
  background: linear-gradient(
    135deg,
    #FE0700,
    #c90300
  );
  text-align: center;
}

.services-cta-content {
  max-width: 800px;
  margin: auto;
}

.services-cta h2 {
  color: #fff;
  font-size: 45px;
  margin-bottom: 20px;
}

.services-cta p {
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.services-cta .about-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #fff;
  color: #FE0700;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: .4s;
}

.services-cta .about-btn:hover {
  transform: translateY(-5px);
}


/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 992px) {

  .services-intro-container,
  .benefits-container {
    grid-template-columns: 1fr;
  }

  .services-page-content h1 {
    font-size: 40px;
  }

  .services-intro-content h2,
  .benefits-content h2,
  .services-header h2,
  .process-header h2 {
    font-size: 32px;
  }

  .services-cta h2 {
    font-size: 34px;
  }

}

@media (max-width: 768px) {

  .services-intro,
  .services-details,
  .service-benefits,
  .service-process,
  .services-cta {
    padding: 70px 5%;
  }

  .services-page-content h1 {
    font-size: 32px;
  }

  .services-page-content p {
    font-size: 16px;
  }

}

/* ==================================
   CONTACT PAGE HERO
================================== */

.contact-page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8%;
  background: url("./img/project5.jpg") center/cover;
}

.contact-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.contact-page-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.contact-page-content .section-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-page-content h1 {
  font-size: 55px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-page-content p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
}


/* ==================================
   CONTACT INFO SECTION
================================== */

.contact-info-page {
  padding: 100px 8%;
}

.contact-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-content .section-tag {
  color: #FE0700;
  font-weight: 600;
}

.contact-info-content h2 {
  font-size: 42px;
  margin: 15px 0 20px;
}

.contact-info-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .4s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(254,7,0,.08);
  color: #FE0700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.contact-image img {
  width: 100%;
  border-radius: 20px;
}


/* ==================================
   CONTACT FORM
================================== */

.contact-form-page {
  padding: 100px 8%;
  background: #f8f9fb;
}

.contact-form-container {
  max-width: 900px;
  margin: auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-header .section-tag {
  color: #FE0700;
  font-weight: 600;
}

.contact-form-header h2 {
  font-size: 42px;
  margin: 15px 0;
}

.contact-form-header p {
  color: #666;
}

form {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #FE0700;
}


/* BUTTON */

.contact-btn {
  width: 100%;
  padding: 15px;
  background: #FE0700;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.contact-btn:hover {
  background: #c90300;
  transform: translateY(-3px);
}


/* ==================================
   QUICK CONTACT
================================== */

.quick-contact {
  padding: 90px 8%;
  text-align: center;
  background: linear-gradient(135deg,#FE0700,#c90300);
}

.quick-contact-content h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
}

.quick-contact-content p {
  color: rgba(255,255,255,.9);
  margin-bottom: 25px;
}

.quick-btn {
  display: inline-block;
  background: #fff;
  color: #FE0700;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: .4s;
}

.quick-btn:hover {
  transform: translateY(-5px);
}

/* ===========================
   FAQ ACCORDION
=========================== */

.faq-accordion {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}

.faq-question i {
  transition: .3s;
  color: #FE0700;
}

.faq-item.active .faq-question {
  color: #FE0700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  background: #fafafa;
}

.faq-answer p {
  padding: 0 20px;
  color: #666;
  line-height: 1.8;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  padding: 15px 0 20px;
  max-height: 200px;
}

/* ROTATE ICON */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 992px) {

  .contact-info-container {
    grid-template-columns: 1fr;
  }

  .contact-page-content h1 {
    font-size: 40px;
  }

  .contact-info-content h2,
  .contact-form-header h2,
  .faq-header h2,
  .quick-contact-content h2 {
    font-size: 32px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .contact-info-page,
  .contact-form-page,
  .contact-faq {
    padding: 70px 5%;
  }

  .contact-page-content h1 {
    font-size: 30px;
  }

}