* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* Top Bar */
.topbar {
  background: #ffffff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Section */

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

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}

/* Navigation */

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.cta {
  background: #063f84;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  border-radius: 4px;
}

.cta:hover {
  background: #5495e4;
}


/* Hero Slider */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* Overlay */

.hero-content {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 22px;
}

.hero-content button {
  padding: 14px 28px;
  font-size: 18px;
  border: none;
  background: #063f84;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  cursor: pointer;
}

.hero-content button:hover {
  background: #5495e4;
}







/* Help Section */

.help-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  color: #111827;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #063f84;
  display: block;
  margin: 14px auto 0;
  border-radius: 4px;
}

/* Grid */

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */

.help-card {
  background: #e5e7eb;
  padding: 28px 30px 30px 30px;
  position: relative;
  transition: all .3s ease;
  border-radius: 6px;
}

.help-card:hover {
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.help-card h3 {
  margin-left: 60px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111827;
}

.help-card p {
  margin-left: 60px;
  line-height: 1.6;
  color: #4b5563;
  font-size: 15px;
}

/* Plus Icon */

.icon {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  background: #063f84;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  border-radius: 4px;
}













/* Section */

.testimonial-strip {
  width: 100%;
}

/* Top red strip */

.strip-top {
  background: #063f84;
  color: rgb(255, 255, 255);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip-top h3 {
  font-size: 24px;
}

.strip-top p {
  font-size: 14px;
  margin-top: 6px;
  opacity: .9;
}

.strip-call {
  background: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

/* Testimonial body */

.testimonial-box {
  background: #f3f4f6;
  text-align: center;
  padding: 60px 20px;
}

.stars {
  font-size: 26px;
  color: #3987ac;
  margin-bottom: 20px;
}

#reviewText {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  min-height: 90px;
}

.author {
  margin-top: 18px;
  font-weight: bold;
  color: #a4431c;
}

/* Dots */

.dots {
  margin-top: 20px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #cbd5e1;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.dot.active {
  background: #000;
}









/* Section */

.service-area {
  padding: 80px 60px;
  background: #f3f4f6;
}

/* Ribbon */

.ribbon {
  background: #063f84;
  color: rgb(255, 255, 255);
  display: inline-block;
  padding: 16px 40px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #063f84;
}

/* Layout */

.service-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Left */

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #374151;
}

.service-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #000;
}

/* Button */

.call-btn {
  background: #063f84;
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}

/* Right image */

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}














.contact-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

/* Layout */

.contact-wrap {
  display: flex;
  gap: 40px;
}

/* LEFT */

.contact-left {
  flex: 2;
}

.note {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form */

form input,
form textarea {
  width: 100%;
  background: #dee3ff;
  border: none;
  padding: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  border-radius: 10px;
}

.row {
  display: flex;
  gap: 14px;
}

textarea {
  height: 160px;
  resize: vertical;
}

form button {
  background: #063f84;
  color: rgb(255, 255, 255);
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
}

/* RIGHT */

.contact-right {
  flex: 1.2;
}

/* Support card */

/* Map */

.map iframe {
  width: 100%;
  height: 430px;
  border: none;
}










.site-footer {
  background: #e5e7eb;
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Icon */



/* Text */

.footer-text {
  flex: 1;
  text-align: center;
}

.designed {
  margin-bottom: 8px;
  color: #000;
}

.brand {
  color: #16a34a;
  font-weight: bold;
}

.links {
  margin-bottom: 8px;
}

.links a {
  color: #16a34a;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

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

.address {
  font-size: 14px;
  color: #000;
}







.about-section {
  background: #f3f4f6;
  padding: 80px 60px;
}

/* Layout */

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Image */

.about-image {
  flex: 1.2;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */

.about-content {
  flex: 1;
}

.about-content h2 {
  color: #063f84;
  font-size: 34px;
  margin-bottom: 16px;
}

.about-content p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}


















/* Scroll To Top Button */

#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #0671ca;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  /* animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;

  z-index: 9999;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

/* visible state */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
#scrollTopBtn:hover {
  transform: translateY(-3px);
}

/* mobile size */
@media (max-width: 600px) {
  #scrollTopBtn {
    right: 14px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.sty {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}








.c-phone {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 150px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.c-phone img {
  width: 40px;
  margin-left: -6px;

}

.c-phone p {
  padding: 8px 0px 5px 13px;
  text-align: center;
  font-weight: 600;


}


.float {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 95px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.float img {
  width: 40px;
  margin-left: -6px;

}

.float p {
  padding: 8px 0px 5px 10px;
  text-align: center;
  font-weight: 600;


}























/* =========================
   TOP CONTACT BAR
========================= */

.top-contact-bar {
  width: 100%;
  background: #ffffff;
  padding: 6px 35px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* group */

.top-contact-group {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

/* contact text */

.contact-text {
  color: #374151;
}

.contact-text a {
  color: #063f84;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* =========================
   BUTTON
========================= */

.top-cta {
  background: #063f84;
  color: #000;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 13px;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

.top-cta:hover {
  background: #063f84;
  color: #fff;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

/* dropdown menu */

.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #ffffff;
  min-width: 230px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

/* menu links */

.dropdown-menu a {
  padding: 12px 15px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all .25s ease;
}

/* hover effect */

.dropdown-menu a:hover {
  background: #f5f5f5;
  border-left: 4px solid #063f84;
  color: #063f84;
}

/* desktop hover */

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* click support */

.dropdown-menu.show {
  display: flex;
}

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

@media (max-width: 600px) {

  .top-contact-bar {
    justify-content: center;
    padding: 10px;
  }

  .top-contact-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }

  .dropdown {
    width: 100%;
  }

  .top-cta {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    top: 5px;
    right: auto;
    box-shadow: none;
    border: 1px solid #eee;
  }

}

















.appliance-banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 8%;
  background: url("./image/banner1.jpg") center center / cover no-repeat;
  overflow: hidden;
  color: #ffffff;
}

/* Dark overlay for text readability */
.appliance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* Text Area */
.banner-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: bannerFadeLeft 1.2s ease forwards;
}

.banner-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.banner-heading span {
  color: #68a5f0;
}

.banner-description {
  margin: 22px 0 32px;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Buttons */
.banner-action-group {
  display: flex;
  gap: 18px;
}

.banner-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn-main {
  background: #68a5f0;
  color: #000;
}

.banner-btn-main:hover {
  background: #68a5f0;
}

.banner-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.banner-btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Animation */
@keyframes bannerFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .appliance-banner {
    padding: 70px 6%;
    text-align: center;
  }

  .banner-action-group {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .appliance-banner {
    padding: 60px 5%;
  }

  .banner-heading {
    font-size: 2.1rem;
  }

  .banner-description {
    font-size: 1rem;
  }
}





































.policy-section {
  padding: 80px 8%;
  background: #ffffff;
}

.policy-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.policy-image-box img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.policy-content-box {
  color: #222;
}

.policy-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #063f84;
  margin-bottom: 8px;
}

.policy-updated {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.policy-content-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-content-box h4 {
  font-size: 1.2rem;
  margin: 25px 0 10px;
  font-weight: 600;
}

.policy-list {
  padding-left: 18px;
  margin-bottom: 15px;
}

.policy-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  list-style: disc;
}

.policy-note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-image-box {
    order: -1;
  }
}

@media (max-width: 576px) {
  .policy-section {
    padding: 60px 5%;
  }

  .policy-title {
    font-size: 1.9rem;
  }
}

































/* =========================
   MODERN RESPONSIVE NAVBAR
========================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
}

/* desktop menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 15px;
  position: relative;
}

.nav-menu a:hover {
  color: #063f84;
}

/* button */

.nav-btn {
  background: #063f84;
  padding: 9px 18px;
  border-radius: 6px;
  color: #ffffff !important;
}

/* hamburger */

.nav-toggle {
  display: none;
  width: 26px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: #000;
  transition: .4s;
}

/* animation */

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}






/* =========================
   MOBILE NAV PANEL
========================= */

@media (max-width: 991px) {

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    font-size: 22px;

    transform: translateX(100%);
    transition: .45s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 22px;
  }

}




/* =========================
   MOBILE FULL VIEW SYSTEM
========================= */

@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  section {
    padding: 60px 18px !important;
  }

  /* grids -> single column */

  .help-grid {
    grid-template-columns: 1fr !important;
  }

  .about-container,
  .service-container,
  .contact-wrap,
  .policy-container {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* hero */

  .hero-content h1 {
    font-size: 28px;
  }

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

  /* images full width */

  img {
    max-width: 100%;
    height: auto;
  }

  /* map height */

  .map iframe {
    height: 280px;
  }

}










/* =========================
   HEADER + NAVBAR
========================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */

.nav-logo img {
  height: 48px;
}

/* desktop menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 15px;
}

.nav-menu a:hover {
  color: #063f84;
}

/* button */

.nav-btn {
  background: #063f84;
  padding: 9px 18px;
  border-radius: 6px;
  color: #000 !important;
}

/* hamburger */

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: #000;
  transition: .4s;
}

/* hamburger animation */

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* close button */

.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  background: #063f84;
  border: none;
  font-size: 22px;
  font-weight: bold;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  .nav-toggle {
    display: flex;
    background: #063f84;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .nav-toggle span {
    background: #000;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    font-size: 22px;

    transform: translateX(100%);
    transition: .45s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 22px;
  }

  .nav-close {
    display: block;
  }

}




















































/* mobile round menu button */

@media(max-width:991px) {

  .nav-toggle {
    background: #10a1b9;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .nav-toggle span {
    background: #fff;
  }

}

















































































/* ===== MAIN SECTION ===== */

.lxrsvc-procedure-orbitarium {
  padding: 90px 20px;
  background: #f8fafc;
  font-family: system-ui, -apple-system, sans-serif;
}

.lxrsvc-procedure-orbitarium__wrapper {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADING ===== */

.lxrsvc-procedure-orbitarium__heading-zone {
  text-align: center;
  margin-bottom: 60px;
}

.lxrsvc-procedure-orbitarium__title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.lxrsvc-procedure-orbitarium__subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 620px;
  margin: auto;
}

/* ===== GRID ===== */

.lxrsvc-procedure-orbitarium__timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ===== STEP CARD ===== */

.lxrsvc-procedure-node {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid #e2e8f0;
}

.lxrsvc-procedure-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* STEP NUMBER */

.lxrsvc-procedure-node__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

/* TEXT */

.lxrsvc-procedure-node__text {
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
}

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

/* Laptop */
@media (max-width: 1100px) {
  .lxrsvc-procedure-orbitarium__timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .lxrsvc-procedure-orbitarium__title {
    font-size: 30px;
  }

  .lxrsvc-procedure-orbitarium__timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .lxrsvc-procedure-orbitarium {
    padding: 60px 16px;
  }

  .lxrsvc-procedure-orbitarium__timeline-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lxrsvc-procedure-node {
    padding: 22px;
  }
}










































/* ===== BRAND DISCLAIMER SECTION ===== */

.lxrlegl-brandclarity-sentinel {
  width: 100%;
  padding: 28px 18px;
  background: #fff7ed;
  border-top: 2px solid #fb923c;
  border-bottom: 2px solid #fb923c;
  font-family: system-ui, -apple-system, sans-serif;
}

.lxrlegl-brandclarity-sentinel__containrix {
  max-width: 1200px;
  margin: 0 auto;
}

.lxrlegl-brandclarity-sentinel__notice-core {
  text-align: center;
}

/* HEADLINE */

.lxrlegl-brandclarity-sentinel__headline {
  font-size: 20px;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* TEXT */

.lxrlegl-brandclarity-sentinel__statement {
  font-size: 15px;
  line-height: 1.7;
  color: #7c2d12;
  max-width: 820px;
  margin: 0 auto;
}

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

/* Tablet */
@media (max-width: 768px) {

  .lxrlegl-brandclarity-sentinel {
    padding: 24px 16px;
  }

  .lxrlegl-brandclarity-sentinel__headline {
    font-size: 18px;
  }

  .lxrlegl-brandclarity-sentinel__statement {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .lxrlegl-brandclarity-sentinel {
    padding: 20px 14px;
  }

  .lxrlegl-brandclarity-sentinel__statement {
    line-height: 1.6;
  }
}









































/* ===== SERVICE AREA SECTION ===== */

.lxrgeo-serviceregion-vectorium {
  width: 100%;
  padding: 80px 20px;
  background: #f1f5f9;
  font-family: system-ui, -apple-system, sans-serif;
}

.lxrgeo-serviceregion-vectorium__containment-core {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */

.lxrgeo-serviceregion-vectorium__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

/* SUBTITLE */

.lxrgeo-serviceregion-vectorium__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  max-width: 720px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {

  .lxrgeo-serviceregion-vectorium {
    padding: 60px 18px;
  }

  .lxrgeo-serviceregion-vectorium__title {
    font-size: 28px;
  }

  .lxrgeo-serviceregion-vectorium__subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .lxrgeo-serviceregion-vectorium {
    padding: 50px 14px;
  }

  .lxrgeo-serviceregion-vectorium__subtitle {
    line-height: 1.6;
  }
}












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

.lxrcontact-infocard-hyperion {
  padding: 80px 20px;
  background: #f1f5f9;
  font-family: system-ui, -apple-system, sans-serif;
}

.lxrcontact-infocard-hyperion__outerwrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */

.lxrcontact-infocard-hyperion__cardbody {
  background: #184785;
  color: #ffffff;
  padding: 50px 55px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* HEADING */

.lxrcontact-infocard-hyperion__heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

/* INFO LIST */

.lxrcontact-infocard-hyperion__infoflow {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.lxrcontact-infocard-hyperion__item {
  font-size: 16px;
  line-height: 1.7;
  color: #e6edf6;
}

.lxrcontact-infocard-hyperion__item strong {
  color: #ffffff;
  font-weight: 600;
}

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

@media (max-width: 768px) {

  .lxrcontact-infocard-hyperion__cardbody {
    padding: 38px 28px;
  }

  .lxrcontact-infocard-hyperion__heading {
    font-size: 22px;
  }

  .lxrcontact-infocard-hyperion__item {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .lxrcontact-infocard-hyperion {
    padding: 60px 14px;
  }

  .lxrcontact-infocard-hyperion__cardbody {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .lxrcontact-infocard-hyperion__infoflow {
    gap: 20px;
  }
}