/*===============================
    LOCATION HERO SECTION
================================*/

.location_hero_section {
  padding: 7rem 0 5rem;
  background: #ffffff;
}

.location_hero_wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.location_tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  background: rgba(28, 122, 255, 0.08);

  color: #1c7aff;

  padding: 0.7rem 1.3rem;

  border-radius: 50px;

  font-size: 0.95rem;

  font-weight: 600;

  margin-bottom: 1.5rem;
}

.location_hero_content h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);

  line-height: 1.15;

  margin-bottom: 1.5rem;

  color: #111;
}

.location_hero_content h1 span {
  color: #1c7aff;
}

.hero_description {
  font-size: 1.1rem;

  line-height: 1.8;

  color: #555;

  margin-bottom: 2rem;

  max-width: 650px;
}

.hero_buttons {
  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

  margin-bottom: 2.5rem;
}

.hero_features {
  display: grid;

  grid-template-columns: repeat(2, minmax(180px, 1fr));

  gap: 1rem;
}

.feature_item {
  display: flex;

  align-items: center;

  gap: 0.8rem;

  background: #f8f9fb;

  padding: 1rem 1.2rem;

  border-radius: 12px;

  border: 1px solid #ececec;

  font-weight: 500;
}

.feature_item i {
  color: #1c7aff;

  font-size: 1.1rem;
}

.location_hero_image img {
  width: 100%;

  height: auto;

  display: block;
}

/*===============================
        Breadcrumb
================================*/

.breadcrumb {
  margin-bottom: 3rem;

  font-size: 0.95rem;

  color: #666;
}

.breadcrumb a {
  color: #666;

  text-decoration: none;
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/*======================================
      SMART HOME BENEFITS
======================================*/

.automation_benefits_section {
  padding: 7rem 0;

  background: #f8fafc;
}

.section_heading {
  max-width: 850px;

  margin: auto;

  text-align: center;

  margin-bottom: 4rem;
}

.section_tag {
  display: inline-block;

  background: #e8f2ff;

  color: var(--primary-color);

  padding: 0.6rem 1.3rem;

  border-radius: 50px;

  font-weight: 600;

  margin-bottom: 1.2rem;
}

.section_heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 1.3rem;

  line-height: 1.2;
}

.section_heading h2 span {
  color: var(--primary-color);
}

.section_heading p {
  font-size: 1.05rem;

  color: #666;

  line-height: 1.9;
}

.benefits_grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;
}

.benefit_card {
  background: #fff;

  padding: 2rem;

  border-radius: 18px;

  transition: 0.35s;

  border: 1px solid #ececec;
}

.benefit_card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit_icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #edf5ff;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 1.5rem;
}

.benefit_icon i {
  font-size: 1.8rem;

  color: var(--primary-color);
}

.benefit_card h3 {
  margin-bottom: 1rem;

  font-size: 1.3rem;
}

.benefit_card p {
  color: #666;

  line-height: 1.8;
}

/*========================================
        RETROFIT CALLOUT
========================================*/

.retrofit_callout_section {
  padding: 2rem 0 6rem;

  background: #ffffff;
}

.retrofit_callout {
  display: grid;

  grid-template-columns: 130px 1fr;

  gap: 2rem;

  padding: 3rem;

  border-radius: 22px;

  background: linear-gradient(135deg, #0f172a, #1e3a8a);

  border: 1px solid #dcecff;
}

.retrofit_icon {
  width: 110px;

  height: 110px;

  border-radius: 50%;

  background: #ffffff;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.retrofit_icon i {
  font-size: 3rem;

  color: var(--primary-color);
}

.retrofit_tag {
  display: inline-block;

  margin-bottom: 1rem;

  padding: 0.55rem 1.1rem;

  background: #dbeafe;

  color: var(--primary-color);

  border-radius: 50px;

  font-weight: 600;
}

.retrofit_content h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);

  line-height: 1.2;

  margin-bottom: 1.5rem;

  color: #fff;
}

.retrofit_content h2 span {
  color: #60a5fa;
}

.retrofit_content p {
  font-size: 1.05rem;

  color: #faf8f8;

  line-height: 1.9;

  margin-bottom: 2rem;
}

.retrofit_buttons{

    display:flex;

    gap:1.5rem;

    flex-wrap:wrap;

    margin-top:2rem;

}

.retrofit_buttons .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.retrofit_points {
  display: grid;

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 1rem 2rem;

  list-style: none;

  padding: 0;

  margin: 0 0 2rem;

  color: #fff;
}

.retrofit_points li {
  display: flex;

  align-items: center;

  gap: 0.8rem;

  font-weight: 500;
}

.retrofit_points i {
  color: #16a34a;

  font-size: 1rem;
}

/*=========================================
        WHY SMUDDY
=========================================*/

.why_smuddy_section {
  padding: 7rem 0;

  background: #ffffff;
}

.why_smuddy_grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;

  margin-top: 4rem;
}

.why_card {
  background: #fff;

  padding: 2rem;

  border-radius: 18px;

  border: 1px solid #ececec;

  transition: 0.35s;
}

.why_card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why_icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #edf5ff;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 1.5rem;
}

.why_icon i {
  color: var(--primary-color);

  font-size: 1.8rem;
}

.why_card h3 {
  font-size: 1.3rem;

  margin-bottom: 1rem;
}

.why_card p {
  line-height: 1.8;

  color: #666;
}

/*==========================================
        HOME TRANSFORMATION
==========================================*/

.home_transformation {
  padding: 7rem 0;

  background: #f8fafc;
}

.transformation_steps {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  margin-top: 4rem;
}

.step_card {
  flex: 1;

  position: relative;

  background: #fff;

  border-radius: 20px;

  padding: 2.5rem 2rem;

  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.step_card:hover {
  transform: translateY(-10px);
}

.step_number {
  position: absolute;

  top: 15px;

  right: 15px;

  width: 35px;

  height: 35px;

  border-radius: 50%;

  background: var(--primary-color);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;
}

.step_icon {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: #edf5ff;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: auto;

  margin-bottom: 1.8rem;
}

.step_icon i {
  color: var(--primary-color);

  font-size: 2.2rem;
}

.step_card h3 {
  margin-bottom: 1rem;

  font-size: 1.35rem;
}

.step_card p {
  line-height: 1.8;

  color: #666;
}

.step_arrow {
  color: var(--primary-color);

  font-size: 2rem;
}

.why_smuddy_strip {
  padding: 1rem 0 6rem;

  background: #f8fafc;
}

.strip_wrapper {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 1rem;
}

.strip_item {
  display: flex;

  align-items: center;

  gap: 0.8rem;

  padding: 1rem 1.5rem;

  background: #fff;

  border-radius: 50px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;
}

.strip_item i {
  color: var(--primary-color);
}

/*=========================================
        AREAS SERVED
=========================================*/

.areas_served_section {
  padding: 7rem 0;

  background: #f8fafc;
}

.areas_wrapper {
  display: grid;

  grid-template-columns: 1.4fr 0.8fr;

  gap: 3rem;

  align-items: start;

  margin-top: 4rem;
}

.areas_content h3 {
  font-size: 2rem;

  margin-bottom: 1rem;
}

.areas_content p {
  color: #666;

  font-size: 1.1rem;

  font-weight: 500;

  line-height: 1.5;

  margin-bottom: 2rem;
}

.area_tags {
  display: flex;

  flex-wrap: wrap;

  gap: 0.9rem;
}

.area_tags li {
  padding: 0.4rem 1.2rem;

  border-radius: 50px;

  background: #ffffff;

  border: 1px solid #e5e5e5;

  font-weight: 600;

  transition: 0.3s;
}

.area_tags li:hover {
  background: #1c7aff;

  color: #fff9f9;

  transform: translateY(-3px);
}

.areas_note {
  margin-top: 2rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
}

.areas_card {
  background: #fff;

  border-radius: 20px;

  padding: 2.5rem;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.areas_icon {
  width: 80px;

  height: 80px;

  border-radius: 50%;

  background: #edf5ff;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 1.5rem;
}

.areas_icon i {
  color: var(--primary-color);

  font-size: 2rem;
}

.areas_card h3 {
  margin-bottom: 1rem;
}

.areas_card p {
  line-height: 1.8;

  color: #666;

  margin-bottom: 1.5rem;
}

.areas_card ul {
  list-style: none;

  padding: 0;

  margin: 0 0 2rem;
}

.areas_card li {
  display: flex;

  gap: 0.8rem;

  margin-bottom: 1rem;
}

.areas_card li i {
  color: #16a34a;
}

.areas_card a {
  color: #ffffff;
  background: #000000;
}

/*=========================================
            FAQ
=========================================*/

.faq_section {
  padding: 7rem 0;

  background: #f8fafc;
}

.faq_wrapper {
  max-width: 900px;

  margin: 4rem auto 0;
}

.faq_item {
  background: #fff;

  border-radius: 14px;

  margin-bottom: 1rem;

  overflow: hidden;

  border: 1px solid #e8e8e8;
}

.faq_question {
  width: 100%;

  padding: 1.4rem 1.8rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border: none;

  background: #fff;

  cursor: pointer;

  font-size: 1.05rem;

  font-weight: 600;

  text-align: left;
}

.faq_question i {
  transition: 0.3s;

  color: var(--primary-color);
}

.faq_answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq_answer p {
  padding: 0 1.8rem 1.8rem;

  line-height: 1.9;

  color: #666;
}

.faq_answer a {
  color: #2b1edf;
  font-weight: 500;
}

.faq_item.active .faq_answer {
  max-height: 300px;
}

.faq_item.active .faq_question i {
  transform: rotate(45deg);
}

/*=========================================
                FINAL CTA
=========================================*/

.final_cta_section {
  padding: 7rem 0;

  background: #ffffff;
}

.final_cta {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 4rem;

  background: linear-gradient(135deg, #0f172a, #1e3a8a);

  border-radius: 28px;

  padding: 4rem;

  overflow: hidden;
}

.cta_tag {
  display: inline-block;

  padding: 0.6rem 1.2rem;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  border-radius: 50px;

  margin-bottom: 1.5rem;

  font-weight: 600;
}

.cta_content h2 {
  color: #fff;

  font-size: clamp(2.2rem, 5vw, 3.6rem);

  line-height: 1.2;

  margin-bottom: 1.5rem;
}

.cta_content h2 span {
  color: #60a5fa;
}

.cta_content p {
  color: rgba(255, 255, 255, 0.85);

  line-height: 1.9;

  margin-bottom: 2rem;

  max-width: 650px;
}

.cta_features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;

  margin-bottom: 2.5rem;
}

.cta_features div {
  color: #fff;

  display: flex;

  align-items: center;

  gap: 0.7rem;
}

.cta_features i {
  color: #22c55e;
}

.cta_buttons {
  display: flex;

  gap: 1rem;

  flex-wrap: wrap;
  color: #000000;
}

.cta_image img {
  width: 100%;

  max-width: 700px;

  display: block;

  margin: auto;
}

/*=========================
Tablet  Responsive
=========================*/

@media (max-width: 1024px) {
  .location_hero_wrapper {
    grid-template-columns: 1fr;
  }

  .location_hero_image {
    order: -1;

    text-align: center;
  }

  .location_hero_image img {
    max-width: 500px;

    margin: auto;
  }

  .hero_features {
    grid-template-columns: 1fr;
  }

  .location_hero_content {
    text-align: center;
  }

  .hero_buttons {
    justify-content: center;
  }

  .benefits_grid {
    grid-template-columns: 1fr;
  }

  .retrofit_callout {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .retrofit_icon {
    margin: auto;
  }

  .retrofit_points {
    grid-template-columns: 1fr;

    text-align: left;
  }

  .why_smuddy_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transformation_steps {
    flex-direction: column;
  }

  .step_arrow {
    transform: rotate(90deg);
  }

  .step_card {
    width: 100%;

    max-width: 500px;
  }

  .product_cards_grid {
    grid-template-columns: 1fr;
  }

  .areas_wrapper {
    grid-template-columns: 1fr;
  }

  .final_cta {
    grid-template-columns: 1fr;

    text-align: center;

    padding: 3rem 2rem;
  }

  .cta_features {
    grid-template-columns: 1fr;
  }

  .cta_buttons {
    justify-content: center;
  }
}

/*===============================
        Mobile RESPONSIVE
================================*/

@media (max-width: 600px) {
  .benefits_grid {
    grid-template-columns: 1fr;
  }

  .retrofit_callout {
    padding: 2rem;
  }

  .retrofit_content h2 {
    font-size: 1.8rem;
  }

  .why_smuddy_grid {
    grid-template-columns: 1fr;
  }

  .area_tags {
    gap: 0.5rem;
  }

  .area_tags li {
    padding: 0.4rem 1rem;

    border-radius: 50px;

    font-size: 0.9rem;

    font-weight: 600;
  }

  .faq_question {
    font-size: 1rem;

    padding: 1.2rem;
  }

  .faq_answer p {
    padding: 0 1.2rem 1.2rem;
  }

  .cta_image img {
    width: 100%;

    max-width: 400px;

    display: block;

    margin: auto;
  }
}
