@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

:root {
  --primary: #0B3D78;
  --secondary: #E67E22;
  --dark: #2B2B2B;
  --light: #EAEAEA;
  --white: #FFFFFF;
  --accent: #C78A3A;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* NAVBAR */
.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 20px 0;
  /* background:rgba(255,255,255,.07);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.12); */
}

.navbar-brand {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
}

.navbar-brand span {
  color: var(--secondary)
}

.navbar-brand:hover {
  color: var(--white)
}

.nav-link {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 9px;
  font-size: 13px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: .4s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 36px
}

.dropdown-menu {
  background: rgba(11, 61, 120, .96);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  padding: 12px;
}

.dropdown-item {
  color: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
}

.dropdown-item:hover {
  background: var(--secondary);
  color: var(--white);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(230, 126, 34, .55);
  animation: pulseBtn 2s infinite;
}

.nav-phone:hover {
  color: var(--white)
}

/* LEFT BACKGROUND PANEL */
.side-social {
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 100%;
  background:
    linear-gradient(180deg,
      rgba(5, 15, 30, .98),
      rgba(10, 35, 65, .95));
  border-right: 1px solid rgba(255, 255, 255, .08);
  z-index: 2;
  overflow: hidden;
}

/* glow effect */
.side-social::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background:
    radial-gradient(rgba(230, 126, 34, .18),
      transparent 70%);
  top: -120px;
  left: -180px;
  animation: moveGlow 8s infinite alternate;
}

/* FOLLOW CONTENT */
.social-wrapper {
  position: absolute;
  left: 18px;
  /* أقصى الشمال */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* TEXT */
.follow-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 5px;
  color: white;
  margin-bottom: 25px;
}

/* LINE */
.side-line {
  width: 1px;
  height: 100px;
  background:
    linear-gradient(transparent,
      var(--secondary),
      transparent);
  margin-bottom: 25px;
}

/* ICONS */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateX(0px);
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background:
    rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: .5s;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: var(--secondary);
  transform:
    translateX(8px) rotate(8deg);
  box-shadow:
    0 0 30px rgba(230, 126, 34, .5);
}

/* navbar spacing */
.navbar .container {
  padding-left: 100px;
}

/* hero spacing */
.hero-section {
  padding-left: 0;
}

/* image */
.hero-image-card {
  width: 145%;
  margin-left: -70px;
  position: relative;
  z-index: 5;
}

/* animation */
@keyframes moveGlow {
  from {
    transform:
      translateY(0);
  }

  to {
    transform:
      translateY(90px) translateX(50px);
  }
}

/* MOBILE */
@media(max-width:991px) {
  .side-social {
    display: none;
  }

  .hero-image-card {
    width: 100%;
    margin-left: 0;
  }

  .navbar .container {
    padding-left: 12px;
  }
}

.hero-section {
  position: relative;
  padding-left: 0;
}

/* IMAGE */
.hero-image-card {
  width: 145%;
  margin-left: -70px;
  margin-top: -35px;
  position: relative;
  z-index: 5;
  border-radius: 0 35px 35px 0;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .55);
}

.hero-image-card img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

/* logo spacing */
.navbar .container {
  padding-left: 100px;
}

/* FOLLOW ITEMS */
.follow-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 5px;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 5;
}

.side-line {
  width: 1px;
  height: 100px;
  margin: 25px 0;
  background: linear-gradient(transparent,
      var(--secondary),
      transparent);
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: .4s;
}

.social-icons a:hover {
  background: var(--secondary);
  transform:
    translateX(8px) rotate(10deg);
}

/* animation */
@keyframes moveGlow {
  from {
    transform: translateY(0);
  }

  to {
    transform:
      translateY(90px) translateX(60px);
  }
}

/* MOBILE */
@media(max-width:991px) {
  .side-social {
    display: none;
  }

  .hero-image-card {
    width: 100%;
    margin: 0;
  }

  .navbar .container {
    padding-left: 12px;
  }
}

/* اللوجو يتحرك شوية */
.navbar .container {
  padding-left: 60px;
}

/* ريسبونسف */
@media(max-width:991px) {
  .side-social {
    display: none;
  }

  .hero-section {
    padding-left: 0;
  }

  .hero-image-card {
    width: 100%;
    margin-left: 0;
  }

  .navbar .container {
    padding-left: 12px;
  }
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-left: 78px;
  background:
    linear-gradient(90deg, rgba(6, 18, 34, .94), rgba(11, 61, 120, .72), rgba(0, 0, 0, .58)),
    url("../garage-door/garage-door.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(230, 126, 34, .32), transparent 27%),
    linear-gradient(120deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: auto, 95px 95px;
  animation: bgMove 16s linear infinite;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 70px;
}

/* LEFT BIG IMAGE */
.hero-image-card {
  position: relative;
  margin-top: 16px;
  margin-left: -35px;
  width: 115%;
  min-height: 680px;
  border-radius: 0 38px 38px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 45px 100px rgba(0, 0, 0, .55);
  animation: floatCard 5s ease-in-out infinite;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(230, 126, 34, .6);
  border-radius: 0 25px 25px 0;
  z-index: 3;
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
  animation: slowZoom 12s ease-in-out infinite alternate;
  transition: 1s;
}

.hero-image-card:hover img {
  transform: scale(1.13);
}

/* CONTENT */
.hero-content {
  color: var(--white);
  position: relative;
  padding-left: 45px;
}

.location-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 18px;
}

.location-text::before {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--accent);
}

.bg-number {
  position: absolute;
  top: -80px;
  left: 25px;
  font-size: 190px;
  color: rgba(255, 255, 255, .06);
  font-weight: 900;
  z-index: -1;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 900;
  /* line-height: .95; */
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-content p {
  max-width: 690px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.btn-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 16px 34px;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .32);
  overflow: hidden;
  transition: .45s;
  font-size: 21px;
}

.btn-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateX(-102%);
  transition: .45s;
  z-index: -1;
}

.btn-luxury:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(230, 126, 34, .45);
}

.btn-luxury:hover::before {
  transform: translateX(0)
}

.btn-luxury:hover span {
  transform: translateX(8px)
}

.btn-luxury span {
  transition: .35s;
}

/* PARTICLES */
.particles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 0 18px rgba(255, 255, 255, .75);
  animation: particleMove 12s linear infinite;
  z-index: 4;
}

.particles span:nth-child(1) {
  left: 18%;
  top: 22%
}

.particles span:nth-child(2) {
  left: 38%;
  top: 72%;
  animation-delay: 2s
}

.particles span:nth-child(3) {
  left: 67%;
  top: 29%;
  animation-delay: 4s
}

.particles span:nth-child(4) {
  left: 86%;
  top: 66%;
  animation-delay: 1s
}

.particles span:nth-child(5) {
  left: 55%;
  top: 88%;
  animation-delay: 3s
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATION */
@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, .65)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(230, 126, 34, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0)
  }
}

@keyframes bgMove {
  from {
    background-position: 0 0
  }

  to {
    background-position: 190px 190px
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04)
  }

  to {
    transform: scale(1.11)
  }
}

@keyframes particleMove {
  0% {
    transform: translateY(0);
    opacity: .2
  }

  50% {
    transform: translateY(-65px);
    opacity: .9
  }

  100% {
    transform: translateY(-120px);
    opacity: 0
  }
}

/* RESPONSIVE */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .45);
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media(max-width:991px) {
  .side-social {
    display: none;
  }

  .hero-section {
    padding-left: 0;
    min-height: auto;
  }

  .custom-navbar {
    background: rgba(11, 61, 120, .95);
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(8, 36, 73, .96);
  }

  .nav-link {
    margin: 8px 0;
  }

  .nav-phone {
    margin-top: 12px;
  }

  .hero-inner {
    padding-top: 150px;
    min-height: auto;
  }

  .hero-section .hero-inner .row {
    flex-direction: column-reverse;
  }

  .hero-image-card {
    width: 100%;
    margin: 0 0 35px 0;
    min-height: 430px;
    border-radius: 30px;
  }

  .hero-image-card::before {
    border-radius: 20px;
  }

  .hero-image-card img {
    height: 430px;
  }

  .hero-content {
    padding-left: 0;
  }

  .bg-number {
    font-size: 130px;
    top: -45px;
    left: 0;
  }
}

@media(max-width:575px) {
  .navbar-brand {
    font-size: 20px;
  }

  .hero-inner {
    padding-top: 135px;
    padding-bottom: 55px;
  }

  .hero-image-card {
    min-height: 310px;
    border-radius: 24px;
  }

  .hero-image-card img {
    height: 310px;
  }

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

  .hero-content p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .btn-luxury {
    width: 100%;
    justify-content: center;
  }
}

.nav-link .active {
  color: #E67E22;
}

/* MINI WHY SECTION */
.why-mini-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mini-tag {
  display: block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.why-mini-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #071323;
  line-height: 1.2;
  margin: 0;
}

.why-mini-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: .4s;
}

.point-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.point-item span {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--secondary),
      var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
}

.point-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #071323;
}

@media(max-width:991px) {
  .why-mini-points {
    margin-top: 35px;
  }
}

@media(max-width:768px) {
  .why-mini-points {
    grid-template-columns: 1fr;
  }
}

.lux-equal-section {

  padding: 100px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f7f9fc);

  overflow: hidden;

  position: relative;

}

.lux-equal-section::before {

  content: "";

  position: absolute;

  top: -140px;
  right: -140px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(230, 126, 34, .08),
      transparent 70%);

}


/* TITLE */

.lux-top-tag {

  display: block;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 8px;

  color: var(--secondary);

  margin-bottom: 15px;

}

.lux-equal-section h2 {

  font-size: clamp(34px, 4vw, 58px);

  font-weight: 900;

  line-height: 1.05;

  color: #07111f;

  margin: 0;

}


/* WRAPPER */

.lux-equal-wrapper {

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .06);

  position: relative;

  z-index: 2;

}


/* LEFT */

.lux-left-side {

  height: 100%;

  display: flex;

  flex-direction: column;

  background: white;

}

.lux-image-box {

  /* height:470px; */

  overflow: hidden;

  position: relative;

}

.lux-image-box::after {

  content: "";

  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, .55);

  pointer-events: none;

}

.lux-image-box img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 1s;

  display: block;

}

.lux-image-box:hover img {

  transform: scale(1.08);

}


/* POINTS */

.lux-bottom-points {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  background: #07111f;

}

.bottom-point {

  padding: 26px 22px;

  border-right: 1px solid rgba(255, 255, 255, .08);

  transition: .4s;

}

.bottom-point:hover {

  background: rgba(255, 255, 255, .05);

}

.bottom-point strong {

  display: block;

  color: var(--secondary);

  font-size: 14px;

  font-weight: 900;

  margin-bottom: 10px;

}

.bottom-point p {

  margin: 0;

  font-size: 13px;

  line-height: 1.7;

  color: rgba(255, 255, 255, .78);

}


/* RIGHT */

.lux-right-side {

  height: 100%;

  display: flex;

  flex-direction: column;

}

.lux-copy-box {

  flex: 1;

  background: white;

  display: flex;

  align-items: center;

  padding: 70px;

}

.lux-copy-box p {

  margin: 0;

  font-size: 15px;

  line-height: 2;

  color: #687485;

}

.lux-orange-box {

  background:
    linear-gradient(135deg,
      var(--secondary),
      var(--accent));

  padding: 65px 70px;

  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  position: relative;

  overflow: hidden;

}

.lux-orange-box::before {

  content: "";

  position: absolute;

  right: -40px;
  top: -40px;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, .3);

}

.lux-orange-box span {

  display: block;

  font-size: 52px;

  font-weight: 900;

  line-height: 1;

  color: rgba(255, 255, 255, .75);

  margin-bottom: 18px;

}

.lux-orange-box h3 {

  font-size: 24px;

  font-weight: 900;

  line-height: 1.55;

  color: #07111f;

  margin: 0;

  position: relative;

  z-index: 2;

}


/* RESPONSIVE */

@media(max-width:991px) {

  .lux-equal-section {

    padding: 75px 0;

  }

  .lux-image-box {

    height: 360px;

  }

  .lux-copy-box {

    padding: 40px 30px;

  }

  .lux-orange-box {

    padding: 45px 30px;

    min-height: auto;

  }

}

@media(max-width:575px) {

  .lux-equal-section {

    padding: 60px 0;

  }

  .lux-top-tag {

    letter-spacing: 5px;

  }

  .lux-image-box {

    height: 280px;

  }

  .lux-bottom-points {

    grid-template-columns: 1fr;

  }

  .bottom-point {

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

  }

  .lux-orange-box span {

    font-size: 40px;

  }

  .lux-orange-box h3 {

    font-size: 19px;

  }

}

/* COUNTER SECTION */

.lux-counter-section {

  padding: 110px 0;

  background:
    linear-gradient(135deg,
      #07111f,
      #0B3D78);

  position: relative;

  overflow: hidden;

}

.lux-counter-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

  background-size: 80px 80px;

  opacity: .5;

}

.counter-tag {

  display: block;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 5px;

  color: var(--secondary);

  margin-bottom: 18px;

  position: relative;

  z-index: 2;

}

.lux-counter-section h2 {

  font-size: clamp(34px, 4vw, 58px);

  font-weight: 900;

  line-height: 1.08;

  color: white;

  margin-bottom: 25px;

  position: relative;

  z-index: 2;

}

.lux-counter-section p {

  font-size: 16px;

  line-height: 1.9;

  color: rgba(255, 255, 255, .78);

  margin: 0;

  position: relative;

  z-index: 2;

}


/* COUNTERS */

.counter-wrapper {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  position: relative;

  z-index: 2;

}

.counter-box {

  padding: 45px 30px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .08);

  border: 1px solid rgba(255, 255, 255, .12);

  backdrop-filter: blur(10px);

  transition: .45s;

  position: relative;

  overflow: hidden;

}

.counter-box::before {

  content: "";

  position: absolute;

  top: -40px;
  right: -40px;

  width: 120px;
  height: 120px;

  border-radius: 50%;

  background:
    rgba(230, 126, 34, .08);

}

.counter-box:hover {

  transform: translateY(-10px);

  border-color: rgba(230, 126, 34, .45);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .25);

}

.counter-box h3 {

  font-size: clamp(42px, 5vw, 72px);

  font-weight: 900;

  line-height: 1;

  color: var(--secondary);

  margin-bottom: 12px;

}

.counter-box h3::after {

  content: "+";

}

.counter-box span {

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 1px;

  color: rgba(255, 255, 255, .82);

  text-transform: uppercase;

}


/* RESPONSIVE */

@media(max-width:768px) {

  .counter-wrapper {

    grid-template-columns: 1fr;

  }

}

@media(max-width:575px) {

  .lux-counter-section {

    padding: 70px 0;

  }

  .counter-box {

    padding: 35px 25px;

    border-radius: 22px;

  }

  .counter-box h3 {

    font-size: 50px;

  }

}

.fit-performance-section {
  padding: 110px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.fit-performance-section::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(rgba(11, 61, 120, .10), transparent 70%);
}

.fit-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.fit-content h2 {
  color: #07111f;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 24px;
}

.fit-content p {
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.fit-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 50px;
  background: #fff;
  color: #3f4754;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .045);
  transition: .4s ease;
}

.fit-point:hover {
  transform: translateX(10px);
  box-shadow: 0 18px 40px rgba(11, 61, 120, .10);
}

.fit-point span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.fit-note {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 5px solid var(--secondary);
  background: #fff;
  color: #07111f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .05);
}

.editorial-install-section {

  position: relative;

  padding: 110px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8fafc);

  overflow: hidden;

}


/* GLOW */

.editorial-glow {

  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 800px;
  height: 800px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(230, 126, 34, .08),
      transparent 70%);

  z-index: 1;

}


/* TAG */

.editorial-tag {

  display: inline-block;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 5px;

  color: var(--secondary);

  margin-bottom: 18px;

  position: relative;

  z-index: 3;

}


/* TITLE */

.editorial-install-section h2 {

  font-size: clamp(36px, 4vw, 66px);

  font-weight: 900;

  line-height: 1.05;

  color: #07111f;

  margin-bottom: 24px;

  position: relative;

  z-index: 3;

}


/* TEXT */

.editorial-text {

  max-width: 820px;

  margin: auto;

  font-size: 17px;

  line-height: 1.9;

  color: #667085;

  position: relative;

  z-index: 3;

}


/* SIMPLE POINTS */

.editorial-points {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 28px;

  position: relative;

  z-index: 3;

}

.editorial-point {

  display: flex;

  align-items: center;

  gap: 14px;

}

.editorial-point span {

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--secondary),
      var(--accent));

  box-shadow:
    0 0 20px rgba(230, 126, 34, .4);

}

.editorial-point p {

  margin: 0;

  font-size: 15px;

  font-weight: 700;

  color: #4b5563;

}


/* PHOTO SCENE */

.editorial-photos-scene {

  position: relative;

  z-index: 3;

  height: 700px;

}


/* PHOTOS */

.editorial-photo {

  position: absolute;

  overflow: hidden;

  border-radius: 40px;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, .16);

  transition: .5s;

}

.editorial-photo:hover {

  transform: translateY(-15px);

}

.editorial-photo img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 1.3s;

}

.editorial-photo:hover img {

  transform: scale(1.08);

}


/* BEFORE */

.editorial-before {

  left: 5%;

  bottom: 0;

  width: 40%;

  height: 520px;

  transform:
    rotate(-8deg);

  z-index: 2;

}


/* AFTER */

.editorial-after {

  right: 5%;

  top: 0;

  width: 50%;

  height: 580px;

  transform:
    rotate(6deg);

  z-index: 4;

}


/* INNER BORDER */

.editorial-photo::before {

  content: "";

  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, .6);

  border-radius: 26px;

  pointer-events: none;

  z-index: 2;

}


/* LABEL */

.editorial-label {

  position: absolute;

  top: 22px;
  left: 22px;

  padding: 11px 20px;

  border-radius: 50px;

  background:
    rgba(255, 255, 255, .92);

  backdrop-filter: blur(10px);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 4px;

  color: #07111f;

  z-index: 5;

}


/* CENTER */

.editorial-center {

  position: absolute;

  left: 43%;
  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 8;

  display: flex;

  flex-direction: column;

  align-items: center;

}


/* ARROW */

.editorial-arrow {

  width: 120px;
  height: 120px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      var(--secondary),
      var(--accent));

  color: white;

  font-size: 42px;

  font-weight: 900;

  box-shadow:
    0 25px 60px rgba(230, 126, 34, .35);

  animation: editorialArrow 2.5s infinite ease-in-out;

}


/* LINE */

.editorial-line {

  width: 2px;

  height: 140px;

  margin-top: 15px;

  background:
    linear-gradient(transparent,
      rgba(11, 61, 120, .22),
      transparent);

}


/* FLOAT TEXT */

.editorial-float-text {

  position: absolute;

  left: 50%;

  bottom: 40px;

  transform: translateX(-50%);

  width: 360px;

  padding: 30px;

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .9);

  backdrop-filter: blur(14px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .12);

  z-index: 10;

  text-align: center;

}

.editorial-float-text strong {

  display: block;

  font-size: 26px;

  font-weight: 900;

  line-height: 1.3;

  color: #07111f;

  margin-bottom: 12px;

}

.editorial-float-text p {

  margin: 0;

  font-size: 15px;

  line-height: 1.8;

  color: #667085;

}


/* ANIMATION */

@keyframes editorialArrow {

  0%,
  100% {

    transform: translateX(0);

  }

  50% {

    transform: translateX(10px);

  }

}


/* RESPONSIVE */

@media(max-width:991px) {

  .editorial-install-section {

    padding: 80px 0;

  }

  .editorial-photos-scene {

    height: auto;

    display: flex;

    flex-direction: column;

    gap: 25px;

  }

  .editorial-photo,
  .editorial-before,
  .editorial-after {

    position: relative;

    width: 100%;

    height: 340px;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    transform: none;

    border-radius: 28px;

  }

  .editorial-center {

    position: relative;

    left: auto;
    top: auto;

    transform: none;

    order: 2;

    margin: auto;

  }

  .editorial-arrow {

    width: 85px;
    height: 85px;

    font-size: 30px;

    transform: rotate(90deg);

  }

  .editorial-line {

    display: none;

  }

  .editorial-float-text {

    position: relative;

    left: auto;
    bottom: auto;

    transform: none;

    width: 100%;

    margin-top: 20px;

  }

}

@media(max-width:575px) {

  .editorial-install-section {

    padding: 65px 0;

  }

  .editorial-install-section h2 {

    font-size: 34px;

  }

  .editorial-photo {

    height: 250px;

  }

  .editorial-points {

    justify-content: flex-start;

    gap: 18px;

  }

  .editorial-float-text {

    padding: 24px;

    border-radius: 24px;

  }

  .editorial-float-text strong {

    font-size: 22px;

  }

}

.clean-gallery-section {
  position: relative;
  padding: 105px 0;
  background: #f4f7fb;
  overflow: hidden;
}

.clean-gallery-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(rgba(230, 126, 34, .12), transparent 70%);
}

.clean-gallery-section::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(rgba(11, 61, 120, .10), transparent 70%);
}

.clean-gallery-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.clean-gallery-section h2 {
  color: #07111f;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.clean-gallery-intro {
  color: #667085;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.clean-gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  grid-template-rows: 250px 250px;
  gap: 18px;
}

.clean-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(11, 61, 120, .12);
  background: #fff;
}

.main-card {
  grid-row: span 2;
}

.wide-card {
  grid-column: span 2;
}

.clean-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1s ease;
}

.clean-gallery-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
  z-index: 2;
  opacity: 0;
  transition: .4s ease;
}

.clean-gallery-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
  transform: translateY(8px);
  transition: .4s ease;
}

.clean-gallery-info span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.clean-gallery-info h3 {
  color: #07111f;
  font-size: 21px;
  font-weight: 900;
  margin: 5px 0 0;
}

.clean-gallery-card:hover img {
  transform: scale(1.08);
}

.clean-gallery-card:hover::before {
  opacity: 1;
}

.clean-gallery-card:hover .clean-gallery-info {
  transform: translateY(0);
  background: rgba(255, 255, 255, .94);
}

@media(max-width:991px) {
  .clean-gallery-section {
    padding: 80px 0;
  }

  .clean-gallery-intro {
    margin-top: 22px;
  }

  .clean-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .clean-gallery-card {
    height: 280px;
  }

  .main-card,
  .wide-card {
    grid-row: auto;
    grid-column: auto;
  }
}

@media(max-width:575px) {
  .clean-gallery-section {
    padding: 65px 0;
  }

  .clean-gallery-grid {
    grid-template-columns: 1fr;
  }

  .clean-gallery-card {
    height: 255px;
    border-radius: 24px;
  }

  .clean-gallery-info {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

.lux-strip-gallery-section {
  position: relative;
  padding: 105px 0;
  background: #061220;
  overflow: hidden;
}

.lux-strip-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 126, 34, .13), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(11, 61, 120, .12), transparent 26%);
}

.strip-gallery-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.lux-strip-gallery-section h2 {
  color: #fff;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  position: relative;
  z-index: 2;
}

.strip-gallery-text {
  color: #667085;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  position: relative;
  z-index: 2;
}

.strip-gallery-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr .8fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.strip-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(11, 61, 120, .13);
  transition: .45s ease;
}

.tall-strip {
  height: 520px;
}

.small-strip {
  height: 360px;
}

.wide-strip {
  height: 440px;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1s ease;
}

.strip-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: .4s ease;
}

.strip-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
  transform: translateY(8px);
  transition: .4s ease;
}

.strip-info span {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.strip-info h3 {
  color: #07111f;
  font-size: 20px;
  font-weight: 900;
  margin: 6px 0 0;
  line-height: 1.35;
}

.strip-card:hover {
  transform: translateY(-12px);
}

.strip-card:hover img {
  transform: scale(1.08);
}

.strip-card:hover::before {
  opacity: 1;
}

.strip-card:hover .strip-info {
  transform: translateY(0);
}

@media(max-width:991px) {
  .lux-strip-gallery-section {
    padding: 80px 0;
  }

  .strip-gallery-text {
    margin-top: 22px;
  }

  .strip-gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-card,
  .tall-strip,
  .small-strip,
  .wide-strip {
    height: 300px;
  }
}

@media(max-width:575px) {
  .lux-strip-gallery-section {
    padding: 65px 0;
  }

  .strip-gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .strip-card {
    height: 255px;
    border-radius: 24px;
  }

  .strip-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}



.smart-tech-section {

  position: relative;

  padding: 110px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f7f9fc);

  overflow: hidden;

}


/* LIGHT */

.smart-tech-light {

  position: absolute;

  right: -180px;
  top: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(230, 126, 34, .12),
      transparent 70%);

  z-index: 1;

}


/* CONTENT */
/* RIGHT VISUAL */

.smart-tech-visual {

  position: relative;

  min-height: 680px;

  display: flex;

  align-items: center;

  padding-right: 140px;

}


/* PHOTO */

.smart-tech-photo {

  position: relative;

  width: 100%;

  height: 560px;

  border-radius: 40px;

  overflow: hidden;

  box-shadow:
    0 35px 90px rgba(11, 61, 120, .16);

}

.smart-tech-photo::before {

  content: "";

  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 28px;

  pointer-events: none;

  z-index: 2;

}

.smart-tech-photo img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 1.2s;

}

.smart-tech-photo:hover img {

  transform: scale(1.08);

}


/* RIGHT OFFER PANEL */

.offer-side-panel {

  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 320px;

  padding: 40px 34px;

  border-radius: 36px;

  background:
    linear-gradient(180deg,
      #07111f,
      #0B3D78);

  box-shadow:
    0 35px 80px rgba(11, 61, 120, .28);

  z-index: 5;

  overflow: hidden;

}


/* LIGHT */

.offer-side-panel::before {

  content: "";

  position: absolute;

  right: -80px;
  top: -80px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(230, 126, 34, .35),
      transparent 70%);

}


/* LABEL */

.offer-label {

  display: inline-block;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 4px;

  color: var(--secondary);

  margin-bottom: 18px;

  position: relative;

  z-index: 2;

}


/* TITLE */

.offer-side-panel h3 {

  font-size: 30px;

  font-weight: 900;

  line-height: 1.3;

  color: white;

  margin-bottom: 25px;

  position: relative;

  z-index: 2;

}


/* PRICE */

.offer-price {

  display: flex;

  align-items: flex-end;

  gap: 10px;

  margin-bottom: 22px;

  position: relative;

  z-index: 2;

}

.offer-price strong {

  font-size: 72px;

  font-weight: 900;

  line-height: 1;

  color: white;

}

.offer-price small {

  font-size: 22px;

  font-weight: 900;

  letter-spacing: 2px;

  color: var(--secondary);

  margin-bottom: 10px;

}


/* TEXT */

.offer-side-panel p {

  font-size: 15px;

  line-height: 1.9;

  color: rgba(255, 255, 255, .78);

  margin-bottom: 30px;

  position: relative;

  z-index: 2;

}


/* BUTTON */

.offer-btn {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 16px 26px;

  border-radius: 60px;

  background:
    linear-gradient(135deg,
      var(--secondary),
      var(--accent));

  color: white;

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 1px;

  text-decoration: none;

  transition: .45s;

  position: relative;

  z-index: 2;

  box-shadow:
    0 15px 40px rgba(230, 126, 34, .25);

}

.offer-btn span {

  transition: .4s;

}

.offer-btn:hover {

  transform: translateY(-6px);

  color: white;

}

.offer-btn:hover span {

  transform: translateX(6px);

}


/* WIFI */

.wifi-circle {

  position: absolute;

  left: 40px;
  bottom: 40px;

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .92);

  backdrop-filter: blur(14px);

  display: flex;

  align-items: center;
  justify-content: center;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .12);

  z-index: 5;

}

.wifi-circle::before,
.wifi-circle::after {

  content: "";

  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(230, 126, 34, .35);

  animation: wifiPulse 2.5s infinite;

}

.wifi-circle::before {

  inset: -12px;

}

.wifi-circle::after {

  inset: -24px;

  animation-delay: 1s;

}

.wifi-icon {

  font-size: 42px;

  font-weight: 900;

  color: var(--secondary);

}


/* RESPONSIVE */

@media(max-width:991px) {

  .smart-tech-visual {

    padding-right: 0;

    display: block;

    min-height: auto;

    padding-bottom: 0;

  }

  .smart-tech-photo {

    width: 100%;

    height: 430px;

    border-radius: 28px;

  }

  .offer-side-panel {

    position: relative;

    right: auto;
    top: auto;

    transform: none;

    width: 100%;

    margin-top: 25px;

    border-radius: 28px;

  }

  .estimate-circle-wrap {

    left: 20px;
    bottom: 20px;

    width: 110px;
    height: 110px;

  }

  .estimate-center {

    width: 64px;
    height: 64px;

  }

  .estimate-center span {

    font-size: 18px;
    margin-left: 0;

  }

}

@media(max-width:575px) {

  .smart-tech-photo {

    height: 300px;

    border-radius: 24px;

  }

  .offer-side-panel {

    padding: 30px 24px;

  }

  .offer-price {

    gap: 8px;

  }

  .offer-side-panel h3 {

    font-size: 24px;

  }

  .offer-price strong {

    font-size: 54px;

  }

  .offer-price small {

    font-size: 18px;
    margin-bottom: 8px;

  }

  .estimate-circle-wrap {

    width: 92px;
    height: 92px;

    left: 14px;
    bottom: 14px;

  }

  .estimate-center {

    width: 54px;
    height: 54px;

  }

  .estimate-center span {

    font-size: 16px;

  }

  .wifi-circle {

    width: 80px;
    height: 80px;

    left: 15px;
    bottom: 15px;

  }

  .wifi-icon {

    font-size: 28px;

  }

}

/* TAG */

.smart-tech-tag {

  display: inline-block;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 5px;

  color: var(--secondary);

  margin-bottom: 18px;

}


/* TITLE */

.smart-tech-section h2 {

  font-size: 41px;
  font-weight: 900;
  line-height: 1.05;
  color: #0a1d34;
  margin-bottom: 24px;

}


/* TEXT */

.smart-tech-content p {

  font-size: 16px;

  line-height: 1.9;

  color: #667085;

  margin-bottom: 22px;

}


/* NOTE */

.smart-tech-note {

  padding: 22px 26px;

  border-left: 5px solid var(--secondary);

  background: white;

  border-radius: 0 20px 20px 0;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .05);

  font-size: 17px;

  font-weight: 900;

  line-height: 1.7;

  color: #07111f;

}


/* VISUAL */

.smart-tech-visual {

  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;
  justify-content: center;

}


/* PHOTO */

.smart-tech-photo {

  position: relative;

  width: 82%;

  height: 560px;

  border-radius: 40px;

  overflow: hidden;

  box-shadow:
    0 35px 90px rgba(11, 61, 120, .16);

}

.smart-tech-photo::before {

  content: "";

  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 28px;

  pointer-events: none;

  z-index: 2;

}

.smart-tech-photo img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 1.2s;

}

.smart-tech-photo:hover img {

  transform: scale(1.08);

}


/* OFFER */

.special-offer-box {

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 260px;

  padding: 32px;

  border-radius: 34px;

  background:
    linear-gradient(135deg,
      var(--secondary),
      var(--accent));

  box-shadow:
    0 25px 70px rgba(230, 126, 34, .3);

  z-index: 5;

}

.offer-mini {

  display: block;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 4px;

  color: rgba(255, 255, 255, .75);

  margin-bottom: 14px;

}

.special-offer-box h3 {

  font-size: 58px;

  font-weight: 900;

  line-height: 1;

  color: white;

  margin-bottom: 14px;

}

.special-offer-box p {

  margin: 0;

  font-size: 16px;

  line-height: 1.7;

  font-weight: 800;

  color: white;

}


/* FREE ESTIMATE CIRCLE */

.estimate-circle-wrap {

  position: absolute;

  left: 27px;
  bottom: 30px;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, .92);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .12);

  z-index: 5;

}


/* ROTATING TEXT */

.estimate-spin-text {

  position: absolute;

  width: 100%;
  height: 100%;

  animation: rotateEstimate 12s linear infinite;

}

.estimate-spin-text text {

  fill: var(--secondary);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 3px;

  text-transform: uppercase;

}


/* CENTER */

.estimate-center {

  width: 78px;
  height: 78px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
   linear-gradient( 135deg, #092241, #0B3D77E8 );

  box-shadow:
    0 12px 30px rgba(230, 126, 34, .3);

}

.estimate-center span {

  font-size: 22px;
  font-weight: 900;
  color: #d9832c;
  margin-left: 16px;

}


/* ROTATE */

@keyframes rotateEstimate {

  from {

    transform: rotate(0deg);

  }

  to {

    transform: rotate(360deg);

  }

}


/* RESPONSIVE */

@media(max-width:575px) {

  .estimate-circle-wrap {

    width: 95px;
    height: 95px;

    left: 15px;
    bottom: 15px;

  }

  .estimate-spin-text text {

    font-size: 8px;

    letter-spacing: 2px;

  }

  .estimate-center {

    width: 55px;
    height: 55px;

  }

  .estimate-center span {

    font-size: 20px;

  }

}


/* ANIMATION */

@keyframes wifiPulse {

  0% {

    transform: scale(.9);

    opacity: 1;

  }

  100% {

    transform: scale(1.2);

    opacity: 0;

  }

}


/* RESPONSIVE */

@media(max-width:991px) {

  .smart-tech-section {

    padding: 80px 0;

  }

  .smart-tech-visual {

    min-height: auto;

  }

  .smart-tech-photo {

    width: 100%;

    height: 430px;

  }

  .special-offer-box {

    left: 20px;

    width: 220px;

    padding: 24px;

  }

  .special-offer-box h3 {

    font-size: 46px;

  }

}

@media(max-width:575px) {

  .smart-tech-section {

    padding: 65px 0;

  }

  .smart-tech-section h2 {

    font-size: 34px;

  }

  .smart-tech-photo {

    height: 300px;

    border-radius: 26px;

  }

  .special-offer-box {

    position: relative;

    left: auto;
    top: auto;

    transform: none;

    width: 100%;

    margin-top: 20px;

    border-radius: 24px;

  }

  .wifi-circle {

    width: 85px;
    height: 85px;

    right: 15px;
    bottom: 15px;

  }

  .wifi-icon {

    font-size: 30px;

  }

}


.lux-strip-gallery-section {
  position: relative;
  padding: 105px 0;
  background: #eef3f8;
  overflow: hidden;
}

.lux-strip-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 126, 34, .13), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(11, 61, 120, .12), transparent 26%);
}

.strip-gallery-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.lux-strip-gallery-section h2 {
  color: #07111f;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  position: relative;
  z-index: 2;
}

.strip-gallery-text {
  color: #667085;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  position: relative;
  z-index: 2;
}

.strip-gallery-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr .8fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.strip-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(11, 61, 120, .13);
  transition: .45s ease;
}

.tall-strip {
  height: 520px;
}

.small-strip {
  height: 360px;
}

.wide-strip {
  height: 440px;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1s ease;
}

.strip-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: .4s ease;
}

.strip-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
  transform: translateY(8px);
  transition: .4s ease;
}

.strip-info span {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.strip-info h3 {
  color: #07111f;
  font-size: 20px;
  font-weight: 900;
  margin: 6px 0 0;
  line-height: 1.35;
}

.strip-card:hover {
  transform: translateY(-12px);
}

.strip-card:hover img {
  transform: scale(1.08);
}

.strip-card:hover::before {
  opacity: 1;
}

.strip-card:hover .strip-info {
  transform: translateY(0);
}

@media(max-width:991px) {
  .lux-strip-gallery-section {
    padding: 80px 0;
  }

  .strip-gallery-text {
    margin-top: 22px;
  }

  .strip-gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-card,
  .tall-strip,
  .small-strip,
  .wide-strip {
    height: 300px;
  }
}

@media(max-width:575px) {
  .lux-strip-gallery-section {
    padding: 65px 0;
  }

  .strip-gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .strip-card {
    height: 255px;
    border-radius: 24px;
  }

  .strip-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

.panel-elite-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(rgba(7, 17, 31, .72), rgba(7, 17, 31, .72)),
    url("../garage-door/garage-door.webp") center/cover no-repeat;
  overflow: hidden;
}

.panel-elite-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(230, 126, 34, .28), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: auto, 85px 85px;
  animation: panelEliteMove 18s linear infinite;
}

.panel-elite-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.panel-elite-content {
  padding: 70px;
  background: rgba(7, 17, 31, .72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .13);
}

.panel-elite-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.panel-elite-content h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.panel-elite-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.panel-elite-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(230, 126, 34, .35);
  transition: .4s;
}

.panel-elite-btn:hover {
  color: #fff;
  transform: translateY(-5px);
}

.panel-elite-btn span {
  transition: .4s;
}

.panel-elite-btn:hover span {
  transform: translateX(7px);
}

.panel-elite-offer {
  position: relative;
  padding: 60px 45px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.panel-elite-offer::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
}

.panel-elite-offer span {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.panel-elite-offer h3 {
  color: #07111f;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
}

.panel-elite-offer p {
  color: #07111f;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.7;
  margin: 0;
}

@keyframes panelEliteMove {
  from {
    background-position: 0 0
  }

  to {
    background-position: 170px 170px
  }
}

@media(max-width:991px) {
  .panel-elite-section {
    padding: 85px 0;
  }

  .panel-elite-box {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .panel-elite-content {
    padding: 45px 32px;
  }

  .panel-elite-offer {
    padding: 42px 32px;
  }
}

@media(max-width:575px) {
  .panel-elite-section {
    padding: 65px 0;
  }

  .panel-elite-box {
    border-radius: 26px;
  }

  .panel-elite-content {
    padding: 32px 24px;
  }

  .panel-elite-offer h3 {
    font-size: 32px;
  }
}


.slider-testimonials-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  position: relative;
  overflow: hidden;
}

.slider-testimonials-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(rgba(230, 126, 34, .13), transparent 70%);
}

.slider-review-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.slider-testimonials-section h2 {
  color: #07111f;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.slider-testimonials-section p {
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
}

.review-score-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(11, 61, 120, .08);
  max-width: 330px;
}

.review-score-box strong {
  color: var(--secondary);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.review-score-box span {
  display: block;
  color: #ffb648;
  letter-spacing: 2px;
  font-weight: 900;
}

.review-score-box p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: #07111f;
}

/* SLIDER */
.review-slider-box {
  position: relative;
  min-height: 500px;
  border-radius: 42px;
  background: linear-gradient(135deg, #07111f, #0B3D78);
  box-shadow: 0 35px 90px rgba(11, 61, 120, .22);
  overflow: hidden;
}

.review-slider-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 126, 34, .28), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, 80px 80px;
}

.review-slide {
  position: absolute;
  inset: 0;
  padding: 54px;
  opacity: 0;
  transform: translateX(35px);
  pointer-events: none;
  transition: .6s ease;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-quote {
  color: rgba(230, 126, 34, .28);
  font-size: 120px;
  font-weight: 900;
  line-height: .7;
}

.review-stars {
  color: #ffb648;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.review-slide h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
}

.review-slide p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.review-user-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-user-line img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .2);
}

.review-user-line strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.review-user-line span {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  font-weight: 700;
}

.review-arrow {
  position: absolute;
  bottom: 34px;
  right: 34px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  z-index: 10;
  font-size: 28px;
  transition: .35s;
}

.prev-review {
  right: 98px;
}

.review-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

@media(max-width:991px) {
  .slider-testimonials-section {
    padding: 80px 0;
  }

  .review-slider-box {
    min-height: 520px;
  }
}

@media(max-width:575px) {
  .slider-testimonials-section {
    padding: 65px 0;
  }

  .review-slide {
    padding: 36px 24px 95px;
  }

  .review-slide h3 {
    font-size: 24px;
  }

  .review-quote {
    font-size: 80px;
  }

  .review-slider-box {
    border-radius: 28px;
  }
}

.minimal-maintenance-section {
  padding: 80px 0;
  background: #ffffff;
}

.minimal-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.minimal-maintenance-section h2 {
  color: #07111f;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.minimal-maintenance-section p {
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
  max-width: 760px;
  margin: auto;
}

/* 
.minimal-list{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.minimal-list div{
  padding:14px 20px;
  border-bottom:2px solid var(--secondary);
  color:#07111f;
  font-weight:800;
  font-size:15px;
} */

@media(max-width:575px) {

  .minimal-maintenance-section {
    padding: 65px 0;
  }

  .minimal-list {
    flex-direction: column;
    align-items: flex-start;
  }

}


.signature-footer {
  position: relative;
  padding: 100px 0 28px;
  background:
    radial-gradient(circle at 15% 15%, rgba(230, 126, 34, .18), transparent 28%),
    linear-gradient(135deg, #07111f, #0B3D78);
  overflow: hidden;
}

.signature-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 85px 85px;
  animation: footerMove 18s linear infinite;
}

.footer-main-card {
  position: relative;
  z-index: 2;
  border-radius: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .32);
}

.footer-top-contact {
  padding: 34px 34px 0;
}

/* FORM SIDE */
.footer-form-area {
  height: 100%;
  padding: 45px;
  background: #fff;
}

.footer-mini-title {
  display: inline-block;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer-form-area h3 {
  color: #07111f;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
}

.footer-form-area p {
  color: #667085;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 61, 120, .10);
  background: #f7f9fc;
  border-radius: 16px;
  padding: 15px 17px;
  outline: none;
  font-weight: 700;
  color: #07111f;
  transition: .35s;
}

.footer-contact-form textarea {
  min-height: 110px;
  resize: none;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 12px 30px rgba(230, 126, 34, .10);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.footer-contact-form button {
  border: 0;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(230, 126, 34, .28);
  transition: .4s;
}

.footer-contact-form button:hover {
  transform: translateY(-5px);
}

.footer-contact-form button span {
  display: inline-block;
  transition: .35s;
}

.footer-contact-form button:hover span {
  transform: translateX(7px);
}

/* INFO SIDE */
.footer-info-area {
  height: 100%;
  padding: 50px;
  color: #fff;
}

.footer-brand {
  max-width: 700px;
  margin-bottom: 38px;
}

.footer-brand h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.85;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-bottom: 35px;
  align-items: start;
}

.footer-col h4,
.service-location-box h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 17px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 11px;
  transition: .3s;
}

.footer-col a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-contact-col {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 26px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.footer-contact-card {
  min-height: 112px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer-contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-contact-card p,
.footer-contact-card a {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials-compact {
  margin-top: 10px;
  gap: 8px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}

.footer-socials a:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

/* LOCATIONS */
.service-location-box {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.service-location-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-location-box span {
  padding: 10px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 800;
}

/* MAP */
.footer-map-strip {
  height: 300px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}

.signature-footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 28px;
}

.signature-footer-bottom p {
  color: rgba(255, 255, 255, .68);
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

@keyframes footerMove {
  from {
    background-position: 0 0
  }

  to {
    background-position: 170px 170px
  }
}

@media(max-width:991px) {
  .signature-footer {
    padding: 75px 0 25px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top-contact {
    padding: 28px 28px 0;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-info-area,
  .footer-form-area {
    padding: 35px;
  }
}

@media(max-width:575px) {
  .signature-footer {
    padding: 60px 0 22px;
  }

  .footer-main-card {
    border-radius: 26px;
  }

  .footer-top-contact {
    padding: 22px 22px 0;
  }

  .footer-form-area h3 {
    font-size: 30px;
  }

  .footer-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-info-area,
  .footer-form-area {
    padding: 26px;
  }

  .footer-map-strip {
    height: 240px;
  }
}

.cc-fcf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cc-fcf-form input,
.cc-fcf-form select,
.cc-fcf-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 101, 192, .12);
  background: #F5F9FF !important;
  border-radius: 16px !important;
  padding: 15px 16px !important;
  color: #0F172A !important;
  outline: none;
  font-weight: 700;
  margin: 0 0 14px !important;
  box-shadow: none !important;
}

.cc-fcf-form textarea {
  resize: none;
  width: 100% !important;
  height: 95px !important;
}

.cc-fcf-form input:focus,
.cc-fcf-form select:focus,
.cc-fcf-form textarea:focus {
  border-color: #00D4FF;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, .12) !important;
}

.cc-fcf-label {
  color: #1565C0;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
}

.cc-fcf-date {
  display: grid;
  grid-template-columns: 1fr 1fr .7fr;
  gap: 14px;
}

.cc-fcf-form input[type="submit"] {
  border: 0;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #1565C0, #00D4FF) !important;
  color: #fff !important;
  font-weight: 900;
  padding: 17px 28px !important;
  transition: .35s;
}

.cc-fcf-form input[type="submit"]:hover {
  transform: translateY(-4px);
}

/* Footer */
.cc-fcf-footer {
  margin-top: 70px;
}

.cc-fcf-brand {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.cc-fcf-brand h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.cc-fcf-brand h3 span {
  color: #00D4FF;
}

.cc-fcf-brand p {
  color: rgba(255, 255, 255, .70);
  line-height: 1.8;
}

.cc-fcf-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.cc-fcf-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .35s;
}

.cc-fcf-social a:hover {
  background: linear-gradient(135deg, #43A047, #00D4FF);
  transform: translateY(-5px);
}

.cc-fcf-footer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.cc-fcf-footer-cards div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.cc-fcf-footer-cards i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43A047, #00D4FF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-fcf-links {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 26px;
}

.cc-fcf-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 700;
}

.cc-fcf-links a:hover {
  color: #00D4FF;
}

.cc-fcf-copy {
  text-align: center;
  color: rgba(255, 255, 255, .62);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

@keyframes ccFcfFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes ccFcfBubble {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-26px) scale(1.08);
  }
}

@media(max-width:991px) {
  .cc-final-contact-footer {
    padding-top: 90px;
  }

  .cc-fcf-head h2 {
    font-size: 40px;
  }

  .cc-fcf-main,
  .cc-fcf-footer-cards {
    grid-template-columns: 1fr;
  }

  .cc-fcf-map-card,
  .cc-fcf-map-card iframe {
    min-height: 430px;
  }
}

@media(max-width:575px) {
  .cc-fcf-head h2 {
    font-size: 30px;
  }

  .cc-fcf-grid,
  .cc-fcf-date {
    grid-template-columns: 1fr;
  }

  .cc-fcf-form-card {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .cc-fcf-map-card {
    border-radius: 28px;
  }
}

.garage-faq-section{
  padding:110px 0;
  background:#f7f9fc;
}

.faq-tag{
  display:inline-block;
  color:var(--secondary);
  font-size:12px;
  font-weight:900;
  letter-spacing:5px;
  margin-bottom:18px;
}

.garage-faq-section h2{
  color:#07111f;
  font-size:clamp(35px,4vw,60px);
  font-weight:900;
  line-height:1.05;
  margin-bottom:20px;
}

.garage-faq-section p{
  color:#667085;
  font-size:16px;
  line-height:1.9;
  max-width:760px;
  margin:auto;
}

.faq-category-title{
  margin:45px 0 18px;
  color:#07111f;
  font-size:24px;
  font-weight:900;
}

.custom-faq .accordion-item{
  border:0;
  border-radius:24px !important;
  overflow:hidden;
  margin-bottom:16px;
  box-shadow:0 14px 40px rgba(11,61,120,.06);
}

.custom-faq .accordion-button{
  background:#fff;
  color:#07111f;
  font-size:17px;
  font-weight:800;
  padding:22px 24px;
  box-shadow:none !important;
}

.custom-faq .accordion-button:not(.collapsed){
  background:linear-gradient(135deg,var(--primary),#0d4c94);
  color:#fff;
}

.custom-faq .accordion-button::after{
  filter:brightness(0) invert(1);
}

.custom-faq .accordion-button.collapsed::after{
  filter:none;
}

.custom-faq .accordion-body{
  background:#fff;
  color:#667085;
  font-size:15px;
  line-height:1.9;
  padding:0 24px 24px;
}

@media(max-width:575px){

.garage-faq-section{
  padding:70px 0;
}

.faq-category-title{
  font-size:20px;
}

.custom-faq .accordion-button{
  font-size:15px;
  padding:18px 18px;
}

.custom-faq .accordion-body{
  padding:0 18px 20px;
}

}

@media (max-width: 991px) {
  .smart-tech-visual {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    min-height: auto !important;
  }

  .smart-tech-photo {
    order: 1;
    width: 100% !important;
    height: 430px !important;
    margin: 0 !important;
    border-radius: 28px !important;
  }

  .offer-side-panel {
    order: 3;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 60px !important;
    border-radius: 28px !important;
  }

  .estimate-circle-wrap {
    display: none !important;
  }

  .estimate-center {
    width: 64px !important;
    height: 64px !important;
  }

  .estimate-center span {
    margin-left: 0 !important;
    font-size: 18px !important;
  }
}

@media (max-width: 575px) {
  .smart-tech-photo {
    height: 300px !important;
    border-radius: 24px !important;
  }

  .offer-side-panel {
    margin-top: 50px !important;
    padding: 30px 24px !important;
  }

  .offer-side-panel h3 {
    font-size: 24px !important;
  }

  .offer-price {
    gap: 8px !important;
  }

  .offer-price strong {
    font-size: 54px !important;
  }

  .offer-price small {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .estimate-spin-text text {
    font-size: 8px !important;
    letter-spacing: 2px !important;
  }

  .estimate-center {
    width: 54px !important;
    height: 54px !important;
  }

  .estimate-center span {
    font-size: 16px !important;
  }
}
