/*==========================
    RESET
==========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: #ffffff;

  color: #222;
}

img {
  width: 100%;

  display: block;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  list-style: none;
}

/*==========================
    CONTAINER
==========================*/

.container {
  width: 100%;

  max-width: 1400px;

  margin: auto;
}

/*==========================
        HEADER
==========================*/

.header {
  width: 100%;

  background: #fff;

  position: sticky;

  top: 0;

  z-index: 999;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.hero-right {
  padding: 20px 15px;
}
/*==========================
        NAVBAR
==========================*/

.navbar {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 95px;
}

/*==========================
        LOGO
==========================*/

.logo {
  width: 149px;
}

/*==========================
        MENU
==========================*/

.nav-menu {
  display: flex;

  align-items: center;

  gap: 42px;
}

.nav-menu a {
  color: #222;

  font-size: 16px;

  font-weight: 500;

  transition: 0.3s;

  position: relative;
}

.nav-menu a:hover {
  color: #df1f19;
}

.nav-menu .active {
  color: #df1f19;
}

.nav-menu .active::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 3px;

  background: #df1f19;

  left: 0;

  bottom: -10px;

  border-radius: 20px;
}

/*==========================
      CALL BUTTON
==========================*/

.call-btn {
  display: flex;

  align-items: center;

  gap: 12px;

  background: #df1f19;

  color: #fff;

  padding: 15px 28px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.call-btn:hover {
  background: #c01813;

  transform: translateY(-3px);
}

.call-btn i {
  font-size: 18px;
}
/*==============================
        HERO SECTION
==============================*/
.hero {
  position: relative;
  /* background: url("../images/banner/BG.png") center/cover no-repeat; */
  background: #fafafa;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75); /* Overlay */
  z-index: -1;
}
.hero {
  background: #fafafa;
}

.hero-wrapper {
  display: flex;
  width: 100%;
}
.hero-left {
  width: 40%;
  padding-top: 60px;
}
.hero-right {
  width: 60%;
}
.hero-right {
  display: flex;
  gap: 15px;
}
.gallery {
  width: 50%;
}
.lead-form {
  width: 50%;
}
/*==============================
        LEFT
==============================*/

.hero-tag {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #333;

  font-size: 18px;

  margin-bottom: 25px;
}

.hero-tag span {
  width: 40px;

  height: 3px;

  background: #df1f19;
}

.hero-left h1 {
  font-size: 40px;

  line-height: 1.08;

  font-weight: 800;

  color: #111;
}

.hero-left h1 span {
  color: #df1f19;
}

.hero-left p {
  margin-top: 28px;

  font-size: 18px;

  color: #666;

  line-height: 1.9;

  max-width: 700px;
}

/*==============================
        BUTTONS
==============================*/

.hero-btns {
  display: flex;

  gap: 20px;

  margin-top: 45px;
}

.btn {
  padding: 18px 34px;

  border-radius: 14px;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: #df1f19;

  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-5px);

  background: #c31914;
}

.btn-outline {
  border: 2px solid #df1f19;

  color: #df1f19;
}

.btn-outline:hover {
  background: #df1f19;

  color: #fff;
}

/*==============================
        FEATURES
==============================*/

.hero-features {
  display: flex;

  justify-content: space-between;

  margin-top: 60px;

  gap: 20px;
}

.feature {
  flex: 1;

  text-align: center;

  border-right: 1px solid #e4e4e4;

  padding: 10px;
}

.feature:last-child {
  border: none;
}

.feature i {
  color: #df1f19;

  font-size: 25px;

  margin-bottom: 18px;
}

.feature h4 {
  font-size: 11px;
  color: #222;
  font-weight: 600;
  line-height: 1.2;
}
/*==============================
        LEAD FORM
==============================*/

.lead-form {
  background: #fff;

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  position: sticky;

  top: 120px;
}
.form-head {
  text-align: center;
}
.form-head span {
  color: #df1f19;
}

.form-head h3 {
  margin-top: 18px;

  font-size: 22px;

  font-weight: 700;

  color: #111;
}

.form-head p {
  margin-top: 10px;

  color: #666;

  line-height: 1.7;

  font-size: 15px;
}

form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #222;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  height: 55px;

  border: 1px solid #e5e5e5;

  border-radius: 12px;

  padding: 0 18px;

  font-size: 15px;

  font-family: Poppins;

  outline: none;

  transition: 0.3s;

  background: #fafafa;
}

.form-group textarea {
  height: 130px;

  padding-top: 15px;

  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #df1f19;

  background: #fff;
}

.lead-form button {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 14px;

  background: #df1f19;

  color: #fff;

  font-size: 17px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.lead-form button:hover {
  background: #bf1712;

  transform: translateY(-3px);
}
/*==========================
        HERO STATS
==========================*/

.hero-stats {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.stat-card {
  background: #fff;

  padding: 35px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h2 {
  font-size: 42px;

  color: #df1f19;

  margin-bottom: 12px;
}

.stat-card p {
  color: #666;

  font-size: 16px;
}

/*==========================
        HERO BG
==========================*/

.hero {
  position: relative;

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  background: #ffecec;

  border-radius: 50%;

  top: -260px;

  left: -180px;

  z-index: -1;
}

.hero::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  background: #eef8ef;

  border-radius: 50%;

  bottom: -180px;

  right: -120px;

  z-index: -1;
}

/*==========================
        CARD HOVER
==========================*/

.gallery-top,
.gallery-middle,
.gallery-item,
.lead-form {
  transition: 0.35s;
}

/* .gallery-top:hover,
.gallery-middle:hover,
.gallery-item:hover,
.lead-form:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
} */

.gallery-bottom {
  display: flex;
  gap: 10px;
}
.gallery img {
  border: 2px solid #fff;
  border-radius: 15px;
}
/*==========================
      WHATSAPP
==========================*/

.whatsapp {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  position: fixed;

  right: 25px;

  bottom: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  z-index: 999;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);

  transition: 0.35s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/*==========================
        RESPONSIVE
==========================*/

@media (max-width: 1200px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-left {
    text-align: center;
  }

  .hero-features {
    flex-wrap: wrap;

    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 42px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .call-btn {
    display: none;
  }

  .hero {
    padding: 40px 0;
  }

  .gallery-top {
    height: 220px;
  }

  .gallery-middle {
    height: 200px;
  }

  .gallery-item {
    height: 170px;
  }
}

.video-showcase {
  padding: 48px 0;

  background: #fafafa;
}

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title span {
  color: #df1f19;

  font-weight: 600;

  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 45px;

  margin: 15px 0;
}

.section-title p {
  color: #777;

  max-width: 650px;

  margin: auto;
}

.video-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;
}

.video-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  background: #fff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
  height: 320px;
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-card video {
  width: 100%;

  object-fit: cover;

  display: block;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    height: 250px;
  }
}
.video-content {
  padding: 20px;
}

.video-content h3 {
  font-size: 22px;

  color: #111;

  margin-bottom: 8px;

  font-weight: 600;
}

.video-content p {
  color: #666;

  font-size: 15px;

  line-height: 1.7;
}

/* =====================================================
   MAIN SECTION
===================================================== */

.lead-section2 {
  width: 100%;
  overflow: hidden;
}

/* =====================================================
   PROCESS SECTION
===================================================== */

.process-section {
  width: 100%;

  padding: 37px 40px 32px;

  background: linear-gradient(180deg, #fff8f8 0%, #fffafa 65%, #ffffff 100%);
}

/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
  text-align: center;

  margin-bottom: 32px;
}

.small-heading {
  color: #e92520;

  font-size: 18px;

  font-weight: 700;

  line-height: 1;

  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: 21px;

  line-height: 1.25;

  font-weight: 700;

  color: #171717;
}

.heading-line {
  width: 26px;

  height: 2px;

  background: #e92520;

  border-radius: 10px;

  margin: 7px auto 0;
}

/* =====================================================
   PROCESS CONTAINER
===================================================== */

.process-container {
  width: 100%;

  max-width: 1050px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  position: relative;
}

/* =====================================================
   CONNECTING LINE
===================================================== */

.process-line {
  position: absolute;

  top: 31px;

  left: 12%;

  right: 12%;

  border-top: 1px dashed #e92520;

  z-index: 0;
}

/* =====================================================
   PROCESS ITEM
===================================================== */

.process-item {
  text-align: center;

  position: relative;

  z-index: 1;
}

/* =====================================================
   STEP ICON
===================================================== */

.step-icon {
  width: 72px;

  height: 72px;

  margin: 0 auto 12px;

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid #eeeeee;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.045);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #e92520;

  font-size: 20px;

  position: relative;
}

/* =====================================================
   STEP NUMBER
===================================================== */

.step-number {
  position: absolute;
  width: 22px;
  height: 22px;
  top: -6px;
  left: -2px;
  border-radius: 50%;
  background: #e92520;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   PROCESS TEXT
===================================================== */

.process-item h3 {
  font-size: 16px;

  line-height: 1.3;

  font-weight: 700;

  margin-bottom: 4px;
}

.process-item p {
  font-size: 14px;

  line-height: 1.55;

  color: #858585;
}

/* =====================================================
   LEAD FORM WRAPPER
===================================================== */

.lead-form2-wrapper {
  width: 100%;
  max-width: 1128px;
  min-height: 118px;
  margin: 28px auto 0;
  padding: 55px 35px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 13px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.055);
  display: grid;
  grid-template-columns:
    1fr
    2.35fr;
  align-items: center;
  gap: 28px;
}

/* =====================================================
   FORM CONTENT
===================================================== */

.form-label {
  font-size: 12px;

  color: #e92520;

  font-weight: 700;

  margin-bottom: 5px;
}

.lead-form2-content h2 {
  font-size: 18px;

  line-height: 1.12;

  font-weight: 700;
}

.lead-form2-content h2 span {
  color: #e92520;
}

.lead-form2-content p {
  font-size: 12px;

  color: #777777;

  line-height: 1.5;

  margin-top: 7px;
}

/* =====================================================
   FORM
===================================================== */

.lead-form2 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;
}

/* =====================================================
   INPUT
===================================================== */

.input-box {
  width: 100%;
}

.input-box input,
.input-box select {
  width: 100%;

  height: 36px;

  padding: 0 11px;

  border: 1px solid #e4e4e4;

  border-radius: 6px;

  outline: none;

  background: #ffffff;

  color: #333333;

  font-size: 14px;

  transition: all 0.2s ease;
}

.input-box input::placeholder {
  color: #999999;
}

.input-box input:focus,
.input-box select:focus {
  border-color: #e92520;

  box-shadow: 0 0 0 2px rgba(233, 37, 32, 0.06);
}

/* =====================================================
   SELECT
===================================================== */

.input-box select {
  cursor: pointer;

  appearance: auto;
}

/* =====================================================
   CONSULTATION BUTTON
===================================================== */

.consultation-btn {
  width: 100%;

  height: 36px;

  border: none;

  border-radius: 6px;

  background: #e92520;

  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 6px;

  transition: all 0.25s ease;
}

.consultation-btn:hover {
  background: #cf1c18;

  transform: translateY(-1px);

  box-shadow: 0 5px 12px rgba(233, 37, 32, 0.2);
}

/* =====================================================
   TESTIMONIAL SECTION
===================================================== */

.testimonial-section {
  width: 100%;

  padding: 12px 40px 18px;

  background: linear-gradient(180deg, #f7fcf9 0%, #f3faf7 100%);
}

/* =====================================================
   TESTIMONIAL HEADING
===================================================== */

.testimonial-heading {
  text-align: center;

  margin-bottom: 14px;
}

.testimonial-heading h2 {
  font-size: 17px;

  line-height: 1.25;

  font-weight: 700;
}

.testimonial-heading h2 span {
  color: #e92520;
}


/* =====================================================
   QUOTE
===================================================== */

.quote {
  width: 30px;

  min-width: 30px;

  height: 30px;

  border-radius: 50%;

  background: #fff0f0;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #e92520;

  font-size: 11px;
}

/* =====================================================
   TESTIMONIAL INFO
===================================================== */

.testimonial-info {
  flex: 1;
}

.testimonial-info p {
  font-size: 7px;

  line-height: 1.5;

  color: #555555;

  margin-bottom: 4px;
}

/* =====================================================
   RATING
===================================================== */

.rating {
  font-size: 9px;

  color: #f5a900;

  letter-spacing: 1px;

  margin-bottom: 5px;
}

/* =====================================================
   CUSTOMER
===================================================== */

.customer {
  display: flex;

  align-items: center;

  gap: 6px;
}

.customer-image {
  width: 27px;

  height: 27px;

  min-width: 27px;

  border-radius: 50%;

  background: linear-gradient(135deg, #777777, #cfcfcf);

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 7px;

  font-weight: 700;
}

.customer-details h4 {
  font-size: 8px;

  font-weight: 700;

  margin: 0;
}

.customer-details span {
  display: block;

  font-size: 6px;

  color: #888888;

  margin-top: 1px;
}

/* =====================================================
   ARROWS
===================================================== */

.testimonial-arrow {
  width: 27px;

  height: 27px;

  min-width: 27px;

  border-radius: 50%;

  border: 1px solid #eeeeee;

  background: #ffffff;

  color: #e92520;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 9px;

  cursor: pointer;

  transition: all 0.2s ease;
}

.testimonial-arrow:hover {
  background: #e92520;

  color: #ffffff;
}

/* =====================================================
   DOTS
===================================================== */

.testimonial-dots {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 4px;

  margin-top: 8px;
}

.testimonial-dots span {
  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: #d5d5d5;
}

.testimonial-dots span.active {
  background: #e92520;
}

/* =====================================================
   BOTTOM CTA
===================================================== */

.bottom-cta {
  max-width: 1020px;

  min-height: 57px;

  margin: 10px auto 0;

  padding: 8px 18px;

  border-radius: 8px;

  background: linear-gradient(100deg, #ef1813, #e51e19);

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: #ffffff;
}

/* =====================================================
   CTA CONTENT
===================================================== */

.cta-content {
  display: flex;

  align-items: center;

  gap: 11px;
}

.cta-icon {
  width: 38px;

  height: 38px;

  min-width: 38px;

  border-radius: 50%;

  background: #ffffff;

  color: #e92520;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;
}

.cta-content h3 {
  font-size: 13px;

  font-weight: 700;

  line-height: 1.25;
}

.cta-content p {
  font-size: 8px;

  margin-top: 2px;
}

/* =====================================================
   CTA PHONE
===================================================== */

.cta-phone {
  min-width: 168px;

  height: 33px;

  padding: 0 15px;

  background: #ffffff;

  color: #e92520;

  border-radius: 6px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 6px;

  text-decoration: none;

  font-size: 9px;

  font-weight: 700;

  transition: all 0.2s ease;
}

.cta-phone:hover {
  transform: translateY(-1px);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {
  .process-section,
  .testimonial-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .process-container {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 30px;
  }

  .process-line {
    display: none;
  }

  .lead-form2-wrapper {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card:nth-child(n + 2) {
    display: none;
  }
}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 600px) {
  .process-section {
    padding: 40px 15px 25px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .process-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 28px 8px;
  }

  .process-item h3 {
    font-size: 10px;
  }

  .process-item p {
    font-size: 7px;
  }

  /* FORM */

  .lead-form2-wrapper {
    margin-top: 25px;

    padding: 18px 14px;

    grid-template-columns: 1fr;
  }

  .lead-form2-content h2 {
    font-size: 19px;
  }

  .lead-form2 {
    grid-template-columns: 1fr;

    gap: 9px;
  }

  .input-box input,
  .input-box select,
  .consultation-btn {
    height: 42px;

    font-size: 10px;
  }

  /* TESTIMONIAL */

  .testimonial-section {
    padding: 20px 15px;
  }

  .testimonial-heading h2 {
    font-size: 18px;
  }

  .testimonial-container {
    gap: 6px;
  }

  .testimonial-cards {
    width: 100%;
  }

  .testimonial-card {
    min-height: 120px;
  }

  /* CTA */

  .bottom-cta {
    margin-top: 12px;

    padding: 12px;

    flex-direction: column;

    align-items: stretch;

    gap: 11px;
  }

  .cta-content h3 {
    font-size: 12px;
  }

  .cta-content p {
    font-size: 7px;
  }

  .cta-phone {
    width: 100%;

    height: 38px;
  }
}

/* =====================================================
   VIDEO CARD TITLE - STYLISH BOTTOM LABEL
===================================================== */

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Video full card */

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   TITLE SHAPE
===================================================== */

.video-content {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 82%;

  padding: 14px 18px 13px;

  background: #ffffff;

  border-radius: 0 28px 0 0;

  z-index: 2;

  box-sizing: border-box;
}

/* Decorative curved shape */

.video-content::before {
  content: "";

  position: absolute;

  width: 22px;
  height: 22px;

  right: -21px;
  bottom: 0;

  background: transparent;

  border-bottom-left-radius: 22px;

  box-shadow: -10px 10px 0 10px #ffffff;
}

/* =====================================================
   TITLE
===================================================== */

.video-content h3 {
  margin: 0;

  font-size: 15px;

  line-height: 1.2;

  font-weight: 600;

  color: #111111;

  white-space: nowrap;
}

/* Hide description in this card design */

.video-content p {
  display: none;
}

/* =====================================================
   HOVER
===================================================== */

.video-card:hover .video-content {
  padding-left: 21px;
  transition: 0.3s ease;
}

.video-content {
  transition: 0.3s ease;
}


/* =====================================================
   PVC FURNITURE COLLECTION
===================================================== */

.category-section {
    width: 100%;
    padding: 35px 4% 70px;
    background: #fff;
    overflow: hidden;
}


/* =====================================================
   SECTION HEADER
===================================================== */

.section-header {
    text-align: center;
    margin-bottom: 38px;
}

.section-header h2 {
    margin: 0;

    color: #111;

       font-size: 1.5rem;

    line-height: 1.25;

    font-weight: 700;
}


/* =====================================================
   CATEGORY TABS
===================================================== */

.category-tabs {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 58px;
}


/* =====================================================
   TAB BUTTON
===================================================== */

.tab-btn {
       cursor: pointer;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 16px;
    transition: all .3s;
}


.tab-btn:hover {
    border-color: #df1f19;

    color: #df1f19;

    transform: translateY(-1px);
}


.tab-btn.active {
    border-color: #df1f19;

    color: #df1f19;

    background: #fff;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.service-section {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 25px 22px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.service-card {
    width: 100%;

    min-width: 0;

    text-decoration: none;

    color: #111;

    display: block;

    position: relative;
}


/* =====================================================
   IMAGE WRAPPER
===================================================== */

.service-image {
    width: 100%;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    border-radius: 15px;

    background: #f1f1f1;

    position: relative;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.service-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 0;

    transition:
        opacity .35s ease,
        transform .45s ease;
}


/* Loaded image */

.service-image img.loaded {
    opacity: 1;
}


/* Hover */

.service-card:hover .service-image img {
    transform: scale(1.035);
}


/* =====================================================
   PRODUCT NAME
===================================================== */

.service-card h3 {
    margin: 14px 5px 0;

    color: #222;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 500;

    text-align: center;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =====================================================
   IMAGE SKELETON
===================================================== */

.image-skeleton {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #eeeeee 25%,
            #f8f8f8 50%,
            #eeeeee 75%
        );

    background-size: 200% 100%;

    animation:
        skeleton-loading 1.35s infinite;

    z-index: 2;

    transition: opacity .25s ease;
}


/* Remove skeleton */

.image-skeleton.hide {
    opacity: 0;

    pointer-events: none;
}


/* =====================================================
   SKELETON ANIMATION
===================================================== */

@keyframes skeleton-loading {

    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }

}


/* =====================================================
   CATEGORY SKELETON
===================================================== */

.tab-skeleton {
    width: 150px;

    height: 55px;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            #eeeeee 25%,
            #f8f8f8 50%,
            #eeeeee 75%
        );

    background-size: 200% 100%;

    animation:
        skeleton-loading 1.35s infinite;
}


/* =====================================================
   PRODUCT CARD SKELETON
===================================================== */

.product-skeleton {
    width: 100%;

    aspect-ratio: 1 / 1.08;

    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            #eeeeee 25%,
            #f8f8f8 50%,
            #eeeeee 75%
        );

    background-size: 200% 100%;

    animation:
        skeleton-loading 1.35s infinite;
}


/* =====================================================
   NO PRODUCTS
===================================================== */

.no-products {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    color: #777;

    font-size: 16px;
}


/* =====================================================
   ERROR
===================================================== */

.product-error {
    grid-column: 1 / -1;

    padding: 50px 20px;

    text-align: center;

    color: #777;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1400px) {

    .service-section {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

}


@media (max-width: 1100px) {

    .service-section {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 22px 18px;
    }

    .category-tabs {
        gap: 10px;
    }

    .tab-btn {
        height: 50px;

        padding: 0 25px;

        font-size: 15px;
    }

}


@media (max-width: 800px) {

    .category-section {
        padding:
            30px
            20px
            50px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .service-section {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 20px 15px;
    }

    .category-tabs {
        margin-bottom: 40px;
    }

}


@media (max-width: 600px) {

    .category-section {
        padding:
            25px
            14px
            45px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 23px;
    }

    .category-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding:
            2px
            2px
            8px;

        margin-bottom: 30px;

        scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;

        height: 44px;

        padding: 0 20px;

        font-size: 13px;
    }

    .tab-skeleton {
        flex-shrink: 0;

        width: 130px;

        height: 44px;
    }

    .service-section {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px 12px;
    }

    .service-image {
        border-radius: 12px;
    }

    .service-card h3 {
        margin-top: 9px;

        font-size: 12px;
    }

}


@media (max-width: 380px) {

    .service-section {
        gap: 15px 10px;
    }

    .service-card h3 {
        font-size: 11px;
    }

}


/* =====================================================
   GOOGLE REVIEWS SECTION
===================================================== */

.google-reviews-section {
    width: 100%;
    padding: 70px 20px;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    color: #202124;
}


.google-reviews-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


/* =====================================================
   BUSINESS HEADER
===================================================== */

.google-business-header {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding-bottom: 28px;

    border-bottom: 1px solid #dadce0;
}


/* Logo */

.business-logo {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 50%;

    background: #df1f19;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    font-weight: 700;
}


.business-info {
    flex: 1;
}


.business-info h2 {
    margin: 0 0 7px;

    font-size: 24px;

    font-weight: 600;

    color: #202124;
}


.business-address {
    max-width: 750px;

    margin: 0;

    color: #5f6368;

    font-size: 13px;

    line-height: 1.6;
}


.business-meta {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;
}


.business-meta strong {
    font-size: 17px;

    font-weight: 600;
}


.rating-stars,
.google-stars {
    color: #fbbc04;

    letter-spacing: 1px;

    font-size: 16px;
}


.business-meta span {
    font-size: 13px;

    color: #5f6368;
}


.business-category {
    display: inline-block;

    margin-top: 10px;

    padding: 5px 10px;

    border-radius: 5px;

    background: #f1f3f4;

    color: #5f6368;

    font-size: 11px;
}


/* =====================================================
   TOOLBAR
===================================================== */

.review-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px
        0;
}


.review-filters {
    display: flex;

    align-items: center;

    gap: 8px;

    overflow-x: auto;
}


.review-filter {
    border: 1px solid #dadce0;

    background: #ffffff;

    color: #3c4043;

    border-radius: 20px;

    padding:
        9px
        17px;

    font-family: inherit;

    font-size: 12px;

    white-space: nowrap;

    cursor: pointer;

    transition: .2s;
}


.review-filter:hover {
    background: #f8f9fa;
}


.review-filter.active {
    background: #e8f0fe;

    border-color: #aecbfa;

    color: #1967d2;

    font-weight: 500;
}


/* Sort */

.review-sort {
    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;
}


.review-sort > span {
    color: #5f6368;

    font-size: 12px;
}


.sort-button {
    border: none;

    background: transparent;

    color: #202124;

    font-family: inherit;

    font-size: 12px;

    font-weight: 500;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 7px;
}


.sort-button i {
    font-size: 9px;
}


/* =====================================================
   REVIEW LIST
===================================================== */

.reviews-list {
    width: 100%;
}


/* =====================================================
   REVIEW
===================================================== */

.google-review {
    padding:
        25px
        0;

    border-bottom:
        1px solid #dadce0;
}


/* =====================================================
   REVIEW TOP
===================================================== */

.review-top {
    display: flex;

    align-items: center;

    gap: 12px;
}


.reviewer-avatar {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    background:
        #e8eaed;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    font-weight: 600;
}


.avatar-blue {
    background: #4285f4;
}


.avatar-green {
    background: #34a853;
}


.avatar-orange {
    background: #f9ab00;
}


.avatar-purple {
    background: #8e24aa;
}


.avatar-red {
    background: #ea4335;
}


.avatar-teal {
    background: #00897b;
}


.reviewer-info {
    flex: 1;
}


.reviewer-info h3 {
    margin: 0;

    font-size: 14px;

    font-weight: 600;

    color: #202124;

    text-transform: lowercase;
}


.reviewer-info p {
    margin: 2px 0 0;

    font-size: 11px;

    color: #5f6368;
}


.review-menu {
    border: none;

    background: transparent;

    color: #5f6368;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    cursor: pointer;
}


.review-menu:hover {
    background: #f1f3f4;
}


/* =====================================================
   RATING
===================================================== */

.review-rating {
    display: flex;

    align-items: center;

    gap: 9px;

    margin:
        10px
        0
        7px
        54px;
}


.review-rating .google-stars {
    font-size: 13px;

    letter-spacing: 0;
}


.review-date {
    font-size: 11px;

    color: #5f6368;
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.review-text {
    margin:
        0
        0
        12px
        54px;

    color: #3c4043;

    font-size: 13px;

    line-height: 1.65;
}


/* =====================================================
   REVIEW PHOTO
===================================================== */

.review-photo {
    width: 230px;
    height: 170px;

    margin:
        10px
        0
        10px
        54px;

    border-radius: 9px;

    overflow: hidden;

    background: #f1f3f4;
}


.review-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #80868b;

    font-size: 11px;

    background:
        linear-gradient(
            135deg,
            #eeeeee,
            #fafafa
        );
}


/* =====================================================
   REACTIONS
===================================================== */

.review-reactions {
    display: flex;

    align-items: center;

    gap: 12px;

    margin:
        10px
        0
        0
        54px;

    color: #5f6368;

    font-size: 12px;
}


.review-reactions button {
    border: none;

    background: transparent;

    cursor: pointer;

    font-size: 14px;
}


/* =====================================================
   OWNER RESPONSE
===================================================== */

.owner-response {

    margin:
        18px
        0
        0
        54px;

    padding:
        16px
        18px;

    border-radius: 9px;

    background: #f8f9fa;

}


.owner-header {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;
}


.owner-avatar {

    width: 34px;
    height: 34px;

    min-width: 34px;

    border-radius: 50%;

    background: #df1f19;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    font-weight: 700;
}


.owner-header h4 {

    margin: 0;

    font-size: 12px;

    font-weight: 600;

    color: #202124;

}


.owner-header span {

    display: block;

    margin-top: 2px;

    font-size: 10px;

    color: #5f6368;

}


.owner-response p {

    margin: 0;

    color: #3c4043;

    font-size: 11px;

    line-height: 1.65;

}


/* =====================================================
   FOOTER
===================================================== */

.reviews-footer {

    padding-top: 25px;

    text-align: center;
}


.view-more-reviews {

    padding:
        11px
        20px;

    border:
        1px solid #dadce0;

    background: #ffffff;

    border-radius: 22px;

    color: #1967d2;

    font-family: inherit;

    font-size: 12px;

    font-weight: 500;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: .2s;
}


.view-more-reviews:hover {

    background: #f8f9fa;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 700px) {

    .google-reviews-section {
        padding:
            45px
            15px;
    }


    .google-business-header {
        gap: 13px;
    }


    .business-logo {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 22px;
    }


    .business-info h2 {
        font-size: 18px;
    }


    .business-address {
        font-size: 11px;
    }


    .review-toolbar {
        align-items: flex-start;

        flex-direction: column;
    }


    .review-sort {
        width: 100%;

        justify-content: space-between;
    }


    .review-rating,
    .review-text,
    .review-photo,
    .review-reactions,
    .owner-response {
        margin-left: 0;
    }


    .review-photo {
        width: 100%;

        max-width: 280px;

        height: 190px;
    }


    .owner-response {
        padding: 14px;
    }

}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
    width: 100%;

    padding: 25px 30px 55px;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    color: #171717;

    overflow: hidden;
}


.about-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;
}


/* =====================================================
   ABOUT TOP CARD
===================================================== */

.about-top {
    width: 100%;

    min-height: 620px;

    position: relative;

    display: grid;

    grid-template-columns:
        47%
        53%;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffafa 100%
        );

    border:
        1px solid #eeeeee;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 3px 15px rgba(0,0,0,.025);
}


/* =====================================================
   LEFT VISUAL
===================================================== */

.about-visual {
    height: 100%;

    min-height: 620px;

    position: relative;
}


/* =====================================================
   RED BACKGROUND SHAPE
===================================================== */

.about-red-shape {

    position: absolute;

    top: 0;
    left: 0;

    width: 310px;
    height: 260px;

    background:
        linear-gradient(
            135deg,
            #f52d27,
            #e51e19
        );

    border-radius:
        0
        0
        180px
        0;

    z-index: 0;

}


/* =====================================================
   MAIN IMAGE
===================================================== */

.about-main-image {

    position: absolute;

    top: 65px;
    left: 70px;

    width: 480px;
    height: 390px;

    border:
        8px solid #ffffff;

    border-radius: 34px;

    overflow: hidden;

    z-index: 2;

    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}


.about-main-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


/* =====================================================
   SECOND IMAGE
===================================================== */

.about-secondary-image {

    position: absolute;

    left: 320px;
    bottom: 65px;

    width: 355px;
    height: 270px;

    border:
        8px solid #ffffff;

    border-radius: 30px;

    overflow: hidden;

    z-index: 4;

    box-shadow:
        0 12px 30px rgba(0,0,0,.13);
}


.about-secondary-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


/* =====================================================
   EXPERIENCE BADGE
===================================================== */

.experience-badge {

    position: absolute;

    left: 70px;
    bottom: 125px;

    width: 230px;
    height: 88px;

    background: #ffffff;

    border-radius: 15px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 17px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);
}


.experience-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #fff0ef;

    color: #e92520;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;
}


.experience-text {

    display: flex;

    flex-direction: column;
}


.experience-text strong {

    color: #e92520;

    font-size: 27px;

    line-height: 1;

    font-weight: 700;
}


.experience-text span {

    color: #444;

    font-size: 11px;

    margin-top: 5px;
}


/* =====================================================
   DOT PATTERN
===================================================== */

.about-dots {

    position: absolute;

    width: 105px;

    display: grid;

    grid-template-columns:
        repeat(5, 5px);

    gap: 13px;

    z-index: 1;
}


.about-dots span {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #f04a44;
}


.about-dots-top {

    top: 85px;

    right: 45px;
}


.about-dots-bottom {

    bottom: 65px;

    left: 245px;

    z-index: 3;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    padding:
        65px
        70px
        50px
        35px;

    align-self: center;
}


.about-label,
.why-label {

    display: flex;

    align-items: center;

    gap: 11px;

    color: #e92520;

    font-size: 13px;

    font-weight: 700;
}


.about-label span,
.why-label span {

    width: 35px;

    height: 3px;

    background: #e92520;

    display: block;
}


.about-content h2 {

    margin:
        20px
        0
        18px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.7px;
}


.about-content h2 strong {

    color: #e92520;
}


.about-title-line {

    width: 72px;

    height: 3px;

    background: #e92520;

    margin-bottom: 22px;
}


.about-content > p {

    max-width: 700px;

    margin:
        0
        0
        15px;

    color: #4d4d4d;

    font-size: 15px;

    line-height: 1.75;
}


/* =====================================================
   STATISTICS
===================================================== */

.about-stats {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 34px;
}


.about-stat {

    text-align: center;

    min-height: 92px;

    padding:
        0
        15px;

    border-right:
        1px solid #dedede;

    display: flex;

    flex-direction: column;

    align-items: center;
}


.about-stat:last-child {

    border-right: none;

}


.stat-icon {

    height: 33px;

    color: #e92520;

    font-size: 25px;

    margin-bottom: 8px;
}


.about-stat strong {

    color: #e92520;

    font-size: 23px;

    line-height: 1;

    font-weight: 700;
}


.about-stat span {

    margin-top: 7px;

    color: #444;

    font-size: 12px;

    white-space: nowrap;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {

    margin-top: 28px;

    padding:
        42px
        50px;

    min-height: 300px;

    display: grid;

    grid-template-columns:
        31%
        69%;

    align-items: center;

    gap: 25px;

    background:
        linear-gradient(
            135deg,
            #fffafa,
            #fff6f6
        );

    border:
        1px solid #f0e7e7;

    border-radius: 28px;
}


/* =====================================================
   WHY INTRO
===================================================== */

.why-intro {

    padding-right: 20px;
}


.why-intro h2 {

    margin:
        19px
        0
        16px;

    font-size: 30px;

    line-height: 1.28;

    font-weight: 700;
}


.why-intro h2 strong {

    color: #e92520;
}


.why-line {

    width: 62px;

    height: 3px;

    background: #e92520;

    margin-bottom: 20px;
}


.why-intro p {

    max-width: 380px;

    margin: 0;

    color: #555;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   WHY CARDS
===================================================== */

.why-cards {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}


.why-card {

    min-height: 240px;

    padding:
        22px
        14px;

    background: #ffffff;

    border:
        1px solid #eeeeee;

    border-radius: 15px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.045);

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.why-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.08);
}


/* =====================================================
   WHY ICON
===================================================== */

.why-icon {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    background:
        #fff0ef;

    color: #e92520;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 18px;
}


/* =====================================================
   CARD TITLE
===================================================== */

.why-card h3 {

    margin: 0 0 12px;

    color: #171717;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 700;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.why-card p {

    margin: 0;

    color: #555;

    font-size: 11px;

    line-height: 1.65;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .about-top {

        grid-template-columns:
            45%
            55%;

    }


    .about-main-image {

        left: 40px;

        width: 400px;

        height: 340px;

    }


    .about-secondary-image {

        left: 230px;

        width: 310px;

        height: 235px;

    }


    .experience-badge {

        left: 40px;

        bottom: 100px;

    }


    .about-content {

        padding:
            50px
            35px;

    }


    .about-content h2 {

        font-size: 32px;

    }


    .about-content > p {

        font-size: 13px;

    }


    .why-section {

        grid-template-columns:
            27%
            73%;

        padding:
            35px;

    }


    .why-intro h2 {

        font-size: 25px;

    }


    .why-cards {

        gap: 9px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .about-section {

        padding:
            25px
            18px
            45px;

    }


    .about-top {

        grid-template-columns: 1fr;

        padding-bottom: 45px;

    }


    .about-visual {

        height: 510px;

        min-height: 510px;

    }


    .about-red-shape {

        width: 300px;

        height: 220px;

    }


    .about-main-image {

        top: 45px;

        left: 8%;

        width: 70%;

        height: 320px;

    }


    .about-secondary-image {

        left: 40%;

        bottom: 35px;

        width: 48%;

        height: 230px;

    }


    .experience-badge {

        left: 8%;

        bottom: 65px;

    }


    .about-content {

        padding:
            30px
            8%;

    }


    .about-stats {

        margin-top: 30px;

    }


    .why-section {

        grid-template-columns: 1fr;

    }


    .why-intro {

        padding-right: 0;

    }


    .why-intro p {

        max-width: 600px;

    }


    .why-cards {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-section {

        padding:
            15px
            12px
            35px;

    }


    .about-top {

        border-radius: 16px;

    }


    .about-visual {

        height: 390px;

        min-height: 390px;

    }


    .about-red-shape {

        width: 210px;

        height: 160px;

    }


    .about-main-image {

        top: 35px;

        left: 25px;

        width: 72%;

        height: 230px;

        border-width: 5px;

        border-radius: 22px;

    }


    .about-secondary-image {

        left: 34%;

        bottom: 25px;

        width: 58%;

        height: 175px;

        border-width: 5px;

        border-radius: 20px;

    }


    .experience-badge {

        left: 25px;

        bottom: 38px;

        width: 185px;

        height: 65px;

        padding:
            9px
            11px;

        gap: 9px;

        border-radius: 11px;

    }


    .experience-icon {

        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 18px;

    }


    .experience-text strong {

        font-size: 21px;

    }


    .experience-text span {

        font-size: 8px;

    }


    .about-dots {

        display: none;

    }


    .about-content {

        padding:
            30px
            20px
            10px;

    }


    .about-label,
    .why-label {

        font-size: 10px;

    }


    .about-label span,
    .why-label span {

        width: 25px;

        height: 2px;

    }


    .about-content h2 {

        font-size: 25px;

        letter-spacing: -.3px;

        margin-top: 15px;

    }


    .about-content > p {

        font-size: 11px;

        line-height: 1.7;

    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 20px;

    }


    .about-stat:nth-child(2) {

        border-right: none;

    }


    .about-stat:nth-child(3) {

        border-right: 1px solid #dedede;

    }


    .about-stat strong {

        font-size: 20px;

    }


    .about-stat span {

        font-size: 9px;

    }


    .why-section {

        padding:
            28px
            18px;

        border-radius: 18px;

    }


    .why-intro h2 {

        font-size: 23px;

    }


    .why-intro p {

        font-size: 10px;

    }


    .why-cards {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .why-card {

        min-height: 190px;

        padding:
            16px
            10px;

    }


    .why-icon {

        width: 54px;
        height: 54px;

        font-size: 21px;

        margin-bottom: 13px;

    }


    .why-card h3 {

        font-size: 11px;

        margin-bottom: 8px;

    }


    .why-card p {

        font-size: 9px;

        line-height: 1.5;

    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    width: 100%;
    padding: 80px 30px;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    color: #171717;

    overflow: hidden;
}


.faq-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =====================================================
   FAQ HEADER
===================================================== */

.faq-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;
}


.faq-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #e92520;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 15px;
}


.faq-label span {
    width: 32px;
    height: 3px;

    background: #e92520;

    display: block;
}


.faq-header h2 {
    margin: 0 0 15px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.5px;
}


.faq-header h2 strong {
    color: #e92520;
}


.faq-header p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   FAQ CONTENT
===================================================== */

.faq-content {

    display: grid;

    grid-template-columns:
        35%
        65%;

    gap: 45px;

    padding: 45px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #fffafa 0%,
            #ffffff 60%,
            #fff7f7 100%
        );

    border: 1px solid #f0e5e5;
}


/* =====================================================
   LEFT SIDE
===================================================== */

.faq-left {
    position: relative;

    padding: 20px 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;
}


.faq-left::before {
    content: "?";
    position: absolute;
    right: 6px;
    top: -16px;
    font-size: 190px;
    line-height: 1;
    font-weight: 800;
    color: rgba(233, 37, 32, .045);
    pointer-events: none;
}


.faq-number {

    width: 52px;
    height: 52px;

    border-radius: 15px;

    background: #e92520;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    box-shadow:
        0 8px 20px rgba(233, 37, 32, .18);
}


.faq-number span {
    font-size: 15px;

    font-weight: 700;
}


.faq-left h3 {

    margin: 0 0 17px;

    font-size: 29px;

    line-height: 1.25;

    font-weight: 700;
}


.faq-left h3 strong {
    color: #e92520;
}


.faq-left > p {

    max-width: 350px;

    margin: 0 0 28px;

    color: #666;

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.faq-contact-btn {

    width: fit-content;

    padding:
        12px
        19px;

    border-radius: 8px;

    background: #e92520;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    transition: .25s;
}


.faq-contact-btn:hover {

    background: #c91814;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(233, 37, 32, .18);
}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {
    width: 100%;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {

    background: #ffffff;

    border:
        1px solid #e8e8e8;

    border-radius: 13px;

    margin-bottom: 11px;

    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


.faq-item:last-child {
    margin-bottom: 0;
}


.faq-item:hover {

    border-color: #f0c5c3;

}


.faq-item[open] {

    border-color: #efb4b1;

    box-shadow:
        0 6px 20px rgba(0,0,0,.045);
}


/* =====================================================
   SUMMARY
===================================================== */

.faq-item summary {

    list-style: none;

    cursor: pointer;

    min-height: 62px;

    padding:
        0
        20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-question {

    color: #202020;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 600;
}


/* =====================================================
   PLUS ICON
===================================================== */

.faq-icon {

    width: 31px;
    height: 31px;

    min-width: 31px;

    border-radius: 50%;

    background: #fff0ef;

    color: #e92520;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform .3s ease,
        background .3s ease;
}


.faq-icon i {

    font-size: 11px;

    transition:
        transform .3s ease;
}


.faq-item[open] .faq-icon {

    background: #e92520;

    color: #ffffff;
}


.faq-item[open] .faq-icon i {

    transform: rotate(45deg);

}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    padding:
        0
        20px
        20px;

    animation:
        faqOpen .3s ease;
}


.faq-answer p {

    margin: 0;

    padding-top: 2px;

    border-top:
        1px solid #f0f0f0;

    padding-top: 15px;

    color: #666;

    font-size: 12px;

    line-height: 1.75;
}


@keyframes faqOpen {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   BOTTOM CTA
===================================================== */

.faq-bottom-cta {

    margin-top: 25px;

    padding:
        18px
        25px;

    border-radius: 14px;

    background: #e92520;

    color: #ffffff;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow:
        0 8px 25px rgba(233, 37, 32, .13);
}


.faq-cta-icon {

    width: 45px;
    height: 45px;

    min-width: 45px;

    border-radius: 50%;

    background: #ffffff;

    color: #e92520;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
}


.faq-cta-text {

    flex: 1;
}


.faq-cta-text h3 {

    margin: 0 0 3px;

    font-size: 15px;

    font-weight: 600;
}


.faq-cta-text p {

    margin: 0;

    font-size: 11px;

    opacity: .9;
}


.faq-bottom-cta > a {

    padding:
        11px
        18px;

    background: #ffffff;

    color: #e92520;

    border-radius: 7px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .25s;
}


.faq-bottom-cta > a:hover {

    transform: translateX(3px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .faq-section {
        padding:
            60px
            20px;
    }


    .faq-content {

        grid-template-columns:
            1fr;

        gap: 20px;

        padding: 30px;
    }


    .faq-left {

        padding:
            10px
            5px
            20px;
    }


    .faq-left h3 {
        font-size: 27px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .faq-section {

        padding:
            50px
            12px;
    }


    .faq-header {

        margin-bottom: 30px;
    }


    .faq-header h2 {

        font-size: 27px;
    }


    .faq-header p {

        font-size: 11px;
    }


    .faq-content {

        padding:
            20px
            13px;

        border-radius: 18px;
    }


    .faq-left {

        padding:
            10px
            8px
            20px;
    }


    .faq-number {

        width: 44px;
        height: 44px;

        margin-bottom: 18px;

        border-radius: 12px;
    }


    .faq-left h3 {

        font-size: 23px;
    }


    .faq-left > p {

        font-size: 11px;
    }


    .faq-item summary {

        min-height: 57px;

        padding:
            0
            14px;
    }


    .faq-question {

        font-size: 11px;
    }


    .faq-icon {

        width: 28px;
        height: 28px;

        min-width: 28px;
    }


    .faq-answer {

        padding:
            0
            14px
            16px;
    }


    .faq-answer p {

        font-size: 10px;

        line-height: 1.65;
    }


    .faq-bottom-cta {

        padding:
            15px;

        gap: 10px;
    }


    .faq-cta-icon {

        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 15px;
    }


    .faq-cta-text h3 {

        font-size: 12px;
    }


    .faq-cta-text p {

        font-size: 9px;
    }


    .faq-bottom-cta > a {

        padding:
            9px
            11px;

        font-size: 9px;
    }

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #171717 0%,
            #1f1f1f 55%,
            #171717 100%
        );

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    overflow: hidden;
}


/* Decorative red glow */

.site-footer::before {

    content: "";

    position: absolute;

    top: -180px;
    left: -120px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(233, 37, 32, .08);

    pointer-events: none;
}


.site-footer::after {

    content: "";

    position: absolute;

    right: -150px;
    bottom: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(233, 37, 32, .07);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.footer-container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding:
        0
        35px;

    position: relative;

    z-index: 2;
}


/* =====================================================
   TOP CTA
===================================================== */

.footer-cta {

    min-height: 110px;

    padding:
        22px
        30px;

    position: relative;

    top: -1px;

    background:
        linear-gradient(
            100deg,
            #e92520,
            #ef302b
        );

    border-radius:
        0
        0
        18px
        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}


.footer-cta-content {

    display: flex;

    align-items: center;

    gap: 16px;
}


.footer-cta-icon {

    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    background: #ffffff;

    color: #e92520;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;
}


.footer-cta h3 {

    margin: 0 0 4px;

    font-size: 18px;

    font-weight: 600;
}


.footer-cta p {

    margin: 0;

    font-size: 11px;

    opacity: .92;
}


/* CTA BUTTON */

.footer-cta-btn {

    padding:
        13px
        21px;

    border-radius: 8px;

    background: #ffffff;

    color: #e92520;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.footer-cta-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}


/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        1fr
        1.35fr;

    gap: 55px;

    padding:
        65px
        0
        50px;
}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {

    max-width: 330px;
}


.footer-logo {

    display: inline-block;

    background: #ffffff;

    padding:
        7px
        10px;

    border-radius: 6px;

    margin-bottom: 18px;
}


.footer-logo img {

    width: 145px;

    height: auto;

    display: block;
}


.footer-brand > p {

    margin: 0;

    color: #bcbcbc;

    font-size: 11px;

    line-height: 1.8;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;
}


.footer-social a {

    width: 35px;
    height: 35px;

    border:
        1px solid #444;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.footer-social a:hover {

    background: #e92520;

    border-color: #e92520;

    transform:
        translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {

    margin:
        0
        0
        21px;

    font-size: 14px;

    font-weight: 600;

    position: relative;

    padding-bottom: 10px;
}


.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;

    height: 2px;

    background: #e92520;
}


.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column ul li {

    margin-bottom: 10px;
}


.footer-column ul li a {

    color: #a9a9a9;

    text-decoration: none;

    font-size: 11px;

    transition:
        color .2s ease,
        padding-left .2s ease;
}


.footer-column ul li a::before {

    content: "›";

    color: #e92520;

    margin-right: 7px;

    opacity: 0;

    transition: .2s;
}


.footer-column ul li a:hover {

    color: #ffffff;

    padding-left: 4px;
}


.footer-column ul li a:hover::before {

    opacity: 1;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;
}


.contact-icon {

    width: 29px;
    height: 29px;

    min-width: 29px;

    border-radius: 7px;

    background:
        rgba(233, 37, 32, .12);

    color: #ef332e;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;
}


.footer-contact-item p,
.footer-contact-item a {

    margin: 0;

    padding-top: 2px;

    color: #ababab;

    text-decoration: none;

    font-size: 10px;

    line-height: 1.65;

    transition: color .2s;
}


.footer-contact-item a:hover {

    color: #ffffff;
}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {

    min-height: 65px;

    border-top:
        1px solid #333;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    margin: 0;

    color: #777;

    font-size: 10px;
}


.footer-bottom strong {

    color: #bdbdbd;

    font-weight: 500;
}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 20px;
}


.footer-bottom-links a {

    color: #777;

    font-size: 10px;

    text-decoration: none;

    transition: color .2s;
}


.footer-bottom-links a:hover {

    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;

    }


    .footer-brand {

        max-width: 400px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .footer-container {

        padding:
            0
            15px;

    }


    .footer-cta {

        padding:
            20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;

        border-radius:
            0
            0
            14px
            14px;
    }


    .footer-cta h3 {

        font-size: 15px;

    }


    .footer-cta p {

        font-size: 9px;

    }


    .footer-cta-icon {

        width: 43px;
        height: 43px;

        min-width: 43px;

        font-size: 17px;

    }


    .footer-cta-btn {

        width: 100%;

        justify-content: center;

        box-sizing: border-box;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            45px
            5px
            35px;

    }


    .footer-brand {

        max-width: 100%;

    }


    .footer-logo img {

        width: 130px;

    }


    .footer-brand > p {

        font-size: 10px;

    }


    .footer-column h3 {

        font-size: 13px;

    }


    .footer-column ul li a {

        font-size: 10px;

    }


    .footer-contact-item p,
    .footer-contact-item a {

        font-size: 9px;

    }


    .footer-bottom {

        min-height: auto;

        padding:
            18px
            5px;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .footer-bottom-links {

        gap: 14px;

    }


    .footer-bottom p,
    .footer-bottom-links a {

        font-size: 8px;

    }

}

/* =====================================================
   OFFER POPUP
===================================================== */

.offer-popup {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    z-index: 99999;

}


/* =====================================================
   DARK OVERLAY
===================================================== */

.offer-popup-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, .72);

    backdrop-filter:
        blur(4px);

    -webkit-backdrop-filter:
        blur(4px);

}


/* =====================================================
   POPUP BOX
===================================================== */

.offer-popup-box {

    position: relative;

    width: min(
        1100px,
        92vw
    );

    max-height: 92vh;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 2;

    animation:
        offerPopupIn .45s
        cubic-bezier(.22, 1, .36, 1);

}


/* =====================================================
   OFFER IMAGE
===================================================== */

.offer-banner-link {

    display: block;

    width: 100%;

    text-decoration: none;

    line-height: 0;

}


.offer-banner {

    display: block;

    width: 100%;

    max-width: 1100px;

    max-height: 90vh;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 50px
            rgba(0, 0, 0, .35)
        );

}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.offer-close {

    position: absolute;

    top: -15px;

    right: -15px;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #e92520;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 7px 25px
        rgba(0, 0, 0, .25);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.offer-close:hover {

    transform:
        rotate(90deg)
        scale(1.08);

    background: #e92520;

    color: #ffffff;

}


/* =====================================================
   POPUP ANIMATION
===================================================== */

@keyframes offerPopupIn {

    0% {

        opacity: 0;

        transform:
            scale(.82)
            translateY(25px);

    }

    100% {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .offer-popup {

        padding:
            15px;

    }


    .offer-popup-box {

        width: 96vw;

        max-height: 88vh;

    }


    .offer-banner {

        width: 100%;

        max-height: 85vh;

    }


    .offer-close {

        top: -10px;

        right: -7px;

        width: 40px;
        height: 40px;

        font-size: 17px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .offer-popup {

        padding:
            10px;

    }


    .offer-popup-box {

        width: 98vw;

    }


    .offer-banner {

        max-height: 80vh;

    }


    .offer-close {

        width: 36px;
        height: 36px;

        top: -8px;
        right: -3px;

        font-size: 15px;

    }

}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    width: 100%;

    padding:
        80px
        30px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafa 100%
        );

    font-family:
        "Poppins",
        sans-serif;

    color: #171717;

    overflow: hidden;
}


.contact-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.contact-header {

    max-width: 700px;

    margin:
        0
        auto
        50px;

    text-align: center;

}


.contact-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #e92520;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 15px;

}


.contact-label span {

    width: 32px;

    height: 3px;

    background: #e92520;

    display: block;

}


.contact-header h2 {

    margin:
        0
        0
        15px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.5px;

}


.contact-header h2 strong {

    color: #e92520;

}


.contact-header p {

    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   MAIN CONTENT
===================================================== */

.contact-content {

    display: grid;

    grid-template-columns:
        42%
        58%;

    background: #ffffff;

    border:
        1px solid #eeeeee;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.06);

}


/* =====================================================
   LEFT CONTACT INFO
===================================================== */

.contact-info {

    position: relative;

    background:
        linear-gradient(
            145deg,
            #e92520,
            #c91612
        );

    color: #ffffff;

    overflow: hidden;

}


/* Decorative circles */

.contact-info::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -120px;

    border-radius: 50%;

    border:
        45px solid
        rgba(255,255,255,.08);

}


.contact-info::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -130px;
    bottom: -120px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

}


.contact-info-inner {

    position: relative;

    z-index: 2;

    padding:
        50px
        42px;

}


/* =====================================================
   LEFT HEADING
===================================================== */

.contact-small-title {

    display: inline-block;

    padding:
        6px
        11px;

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 5px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .5px;

    margin-bottom: 18px;

}


.contact-info h3 {

    margin:
        0
        17px;

    font-size: 31px;

    line-height: 1.25;

    font-weight: 700;

}


.contact-info h3 strong {

    color: #ffffff;

}


.contact-description {

    margin:
        0
        30px;

    color:
        rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 1.75;

}


/* =====================================================
   CONTACT ITEMS
===================================================== */

.contact-info-item {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 19px;

    text-decoration: none;

    color: #ffffff;

}


.contact-item-icon {

    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.14);

    border:
        1px solid
        rgba(255,255,255,.18);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

}


.contact-info-item > div:last-child {

    display: flex;

    flex-direction: column;

}


.contact-info-item span {

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    margin-bottom: 3px;

}


.contact-info-item strong {

    color: #ffffff;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.4;

}


.contact-info-item:hover
.contact-item-icon {

    background: #ffffff;

    color: #e92520;

}


.whatsapp-icon {

    background:
        rgba(255,255,255,.2);

}


/* =====================================================
   SOCIAL
===================================================== */

.contact-social {

    margin-top: 32px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.2);

}


.contact-social > span {

    display: block;

    margin-bottom: 12px;

    color:
        rgba(255,255,255,.7);

    font-size: 10px;

}


.contact-social > div {

    display: flex;

    gap: 8px;

}


.contact-social a {

    width: 33px;
    height: 33px;

    border:
        1px solid
        rgba(255,255,255,.3);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    transition: .25s;

}


.contact-social a:hover {

    background: #ffffff;

    color: #e92520;

    transform:
        translateY(-3px);

}


/* =====================================================
   RIGHT FORM
===================================================== */

.contact-form-box {

    padding:
        48px
        50px;

    background: #ffffff;

}


.form-heading {

    margin-bottom: 25px;

}


.form-heading > span {

    color: #e92520;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

}


.form-heading h3 {

    margin:
        8px
        0
        8px;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 700;

}


.form-heading h3 strong {

    color: #e92520;

}


.form-heading p {

    margin: 0;

    color: #777;

    font-size: 11px;

    line-height: 1.6;

}


/* =====================================================
   FORM
===================================================== */

.contact-form {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        17px
        15px;

}


.form-group {

    width: 100%;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #292929;

    font-size: 10px;

    font-weight: 600;

}


.input-wrapper {

    position: relative;

}


.input-wrapper > i {

    position: absolute;

    left: 14px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #e92520;

    font-size: 12px;

    pointer-events: none;

}


.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {

    width: 100%;

    box-sizing: border-box;

    border:
        1px solid #e4e4e4;

    border-radius: 8px;

    background: #ffffff;

    color: #222;

    font-family: inherit;

    font-size: 11px;

    outline: none;

    transition:
        border-color .2s,
        box-shadow .2s;

}


.input-wrapper input,
.input-wrapper select {

    height: 45px;

    padding:
        0
        14px
        0
        39px;

}


.input-wrapper textarea {

    min-height: 100px;

    resize: vertical;

    padding:
        13px
        14px
        13px
        39px;

}


.input-wrapper textarea + i {

    top: 18px;

    transform: none;

}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {

    color: #a1a1a1;

}


.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {

    border-color: #e92520;

    box-shadow:
        0 0 0 3px
        rgba(233,37,32,.07);

}


/* Select */

.select-wrapper select {

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;

}


.select-wrapper::after {

    content: "\f078";

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    right: 15px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #777;

    font-size: 9px;

    pointer-events: none;

}


/* =====================================================
   MESSAGE FULL WIDTH
===================================================== */

.form-message {

    grid-column:
        1 / -1;

}


/* =====================================================
   SUBMIT
===================================================== */

.contact-submit {

    grid-column:
        1 / -1;

    width: 100%;

    height: 48px;

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            100deg,
            #e92520,
            #f02d27
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition:
        transform .25s,
        box-shadow .25s;

}


.contact-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 22px
        rgba(233,37,32,.2);

}


.contact-submit i:first-child {

    font-size: 16px;

}


.contact-submit i:last-child {

    font-size: 10px;

}


/* =====================================================
   FORM NOTE
===================================================== */

.form-note {

    grid-column:
        1 / -1;

    text-align: center;

    color: #999;

    font-size: 9px;

}


.form-note i {

    color: #e92520;

    margin-right: 4px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-section {

        padding:
            60px
            20px;

    }


    .contact-content {

        grid-template-columns:
            1fr;

    }


    .contact-info-inner {

        padding:
            40px;

    }


    .contact-form-box {

        padding:
            40px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .contact-section {

        padding:
            50px
            12px;

    }


    .contact-header {

        margin-bottom: 30px;

    }


    .contact-header h2 {

        font-size: 27px;

    }


    .contact-header p {

        font-size: 11px;

    }


    .contact-content {

        border-radius: 18px;

    }


    .contact-info-inner {

        padding:
            35px
            25px;

    }


    .contact-info h3 {

        font-size: 26px;

    }


    .contact-description {

        font-size: 11px;

    }


    .contact-form-box {

        padding:
            30px
            20px;

    }


    .form-heading h3 {

        font-size: 22px;

    }


    .contact-form {

        grid-template-columns:
            1fr;

        gap: 14px;

    }


    .form-message,
    .contact-submit,
    .form-note {

        grid-column:
            auto;

    }


    .form-message {

        grid-column:
            1;

    }


    .contact-submit {

        grid-column:
            1;

    }


    .form-note {

        grid-column:
            1;

    }

}


/* =====================================================
   OFFER POPUP VISIBILITY
===================================================== */

/* =====================================================
   OFFER POPUP
===================================================== */

.offer-popup {

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    align-items: center;

    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    z-index: 99999;

    /* DEFAULT HIDDEN */
    display: none;
}


/* SHOW */

.offer-popup.offer-popup-show {
    display: flex;
}