:root {
  --navy: #0e2f4d;
  --navy-2: #153b5d;
  --navy-3: #08243b;
  --yellow: #f2c300;
  --yellow-2: #ffd84a;
  --white: #ffffff;
  --light: #f4f5f7;
  --text: #1b1b1b;
  --muted: #d7e2ec;
  --shadow: 0 20px 50px rgba(0, 0, 0, .18);
  --radius: 28px;

  /* التحكم في الخط المائل */
  --hero-slope-height: 190px;
  --hero-slope-left: 58%;
  --hero-slope-right: 0%;

  /* تحكم إضافي */
  --hero-min-height: 100vh;
  --air-opacity: .25;
  --glow-opacity: .18;
}

html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
}

a {
  text-decoration: none;
}

.sachse-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-min-height);
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 0, .10), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .08), transparent 20%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 45%, var(--navy-3) 100%);
}

/* الخط المائل */
.sachse-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: var(--hero-slope-height);
  background: var(--light);
  clip-path: polygon(0 var(--hero-slope-left), 100% var(--hero-slope-right), 100% 100%, 0 100%);
  z-index: 1;
}

/* خلفية إضافية متحركة */
.sachse-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .04) 45%, transparent 70%);
  animation: heroSweep 9s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-airflow,
.hero-air-dots,
.hero-rings,
.hero-floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-airflow {
  z-index: 0;
}

.hero-air-dots {
  z-index: 0;
}

.hero-rings {
  z-index: 0;
}

.hero-floating-shapes {
  z-index: 0;
}

.hero-airflow span {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, .5),
      rgba(242, 195, 0, .32),
      rgba(255, 255, 255, 0));
  opacity: var(--air-opacity);
  animation: airMove linear infinite;
}

.hero-airflow span:nth-child(1) {
  width: 220px;
  top: 12%;
  left: -20%;
  animation-duration: 11s;
}

.hero-airflow span:nth-child(2) {
  width: 180px;
  top: 21%;
  left: -16%;
  animation-duration: 9s;
  animation-delay: 1s;
}

.hero-airflow span:nth-child(3) {
  width: 300px;
  top: 34%;
  left: -22%;
  animation-duration: 13s;
  animation-delay: 2s;
}

.hero-airflow span:nth-child(4) {
  width: 190px;
  top: 48%;
  left: -14%;
  animation-duration: 10s;
  animation-delay: 1.2s;
}

.hero-airflow span:nth-child(5) {
  width: 330px;
  top: 60%;
  left: -18%;
  animation-duration: 15s;
  animation-delay: 2.5s;
}

.hero-airflow span:nth-child(6) {
  width: 210px;
  top: 75%;
  left: -12%;
  animation-duration: 12s;
  animation-delay: 1.8s;
}

.hero-airflow span:nth-child(7) {
  width: 260px;
  top: 83%;
  left: -24%;
  animation-duration: 14s;
  animation-delay: 2.8s;
}

.hero-airflow span:nth-child(8) {
  width: 170px;
  top: 28%;
  left: -10%;
  animation-duration: 8s;
  animation-delay: 3s;
}

.hero-air-dots i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  box-shadow: 0 0 18px rgba(255, 255, 255, .15);
  animation: dotFloat linear infinite;
}

.hero-air-dots i:nth-child(1) {
  top: 18%;
  left: 12%;
  animation-duration: 9s;
}

.hero-air-dots i:nth-child(2) {
  top: 30%;
  left: 20%;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.hero-air-dots i:nth-child(3) {
  top: 45%;
  left: 8%;
  animation-duration: 10s;
  animation-delay: 2s;
}

.hero-air-dots i:nth-child(4) {
  top: 58%;
  left: 26%;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.hero-air-dots i:nth-child(5) {
  top: 72%;
  left: 18%;
  animation-duration: 11s;
  animation-delay: 2.2s;
}

.hero-air-dots i:nth-child(6) {
  top: 15%;
  left: 52%;
  animation-duration: 10s;
  animation-delay: 1.3s;
}

.hero-air-dots i:nth-child(7) {
  top: 68%;
  left: 44%;
  animation-duration: 14s;
  animation-delay: 2.6s;
}

.hero-rings span {
  position: absolute;
  border: 1px solid rgba(242, 195, 0, .18);
  border-radius: 50%;
  animation: spinSlow linear infinite;
}

.hero-rings span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: 10%;
  right: 8%;
  animation-duration: 18s;
}

.hero-rings span:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 56%;
  left: 4%;
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-rings span:nth-child(3) {
  width: 160px;
  height: 160px;
  bottom: 18%;
  right: 18%;
  animation-duration: 20s;
}

.hero-floating-shapes span {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
  animation: floatShape 8s ease-in-out infinite;
}

.hero-floating-shapes span:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 30%;
  transform: rotate(25deg);
}

.hero-floating-shapes span:nth-child(2) {
  width: 28px;
  height: 28px;
  top: 64%;
  right: 48%;
  border-radius: 50%;
  animation-duration: 6s;
}

.hero-floating-shapes span:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 22%;
  left: 8%;
  transform: rotate(35deg);
  animation-duration: 10s;
}

@keyframes airMove {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }

  15% {
    opacity: var(--air-opacity);
  }

  85% {
    opacity: var(--air-opacity);
  }

  100% {
    transform: translateX(140vw) translateY(-14px);
    opacity: 0;
  }
}

@keyframes dotFloat {
  0% {
    transform: translate(0, 0) scale(.8);
    opacity: 0;
  }

  20% {
    opacity: .5;
  }

  80% {
    opacity: .25;
  }

  100% {
    transform: translate(160px, -28px) scale(1.2);
    opacity: 0;
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-30%);
    opacity: .35;
  }

  50% {
    transform: translateX(10%);
    opacity: .2;
  }

  100% {
    transform: translateX(40%);
    opacity: .35;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatShape {

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

  50% {
    transform: translateY(-12px) rotate(30deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

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

@keyframes floatSoft {

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

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 12px 24px rgba(242, 195, 0, .24);
  }

  50% {
    box-shadow: 0 18px 34px rgba(242, 195, 0, .40);
  }
}

@keyframes imageZoom {

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

  50% {
    transform: scale(1.025);
  }
}

.custom-navbar {
  position: relative;
  z-index: 1100;
  padding: 22px 0;
  overflow: visible;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  border-radius: 14px;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(242, 195, 0, .05);
}

.brand-icon span {
  transform: rotate(-45deg);
  font-size: 22px;
  font-weight: 900;
}
.nav-link.active {
  color:  #091f32;
}


.navbar-nav .nav-link {
  color: var(--white);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 15px !important;
  transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  color: var(--yellow);
}

.dropdown-menu {
  border: none;
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  z-index: 1200;
}

.dropdown-item {
  border-radius: 12px;
  font-weight: 700;
  padding: 11px 14px;
}

.dropdown-item:hover {
  background: #f6f7f8;
  color: var(--navy);
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  transition: .3s ease;
  box-shadow: 0 12px 24px rgba(242, 195, 0, .22);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.quote-btn:hover {
  background: var(--yellow-2);
  color: #111;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: none !important;
}

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

.hero-main {
  position: relative;
  z-index: 3;
  padding: 30px 0 120px;
}

.hero-row {
  min-height: 720px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 3;
  padding-right: 30px;
  animation: fadeUp .95s ease both;
}

.hero-small {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  margin: 0 0 22px;
  font-size:65px;
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  max-width: 700px;
}

.hero-title .box {
  display: inline;
  background: rgba(255, 255, 255, .97);
  color: var(--navy);
  padding: 0 .12em;
  box-shadow: .28em 0 0 rgba(255, 255, 255, 0), -.28em 0 0 rgba(255, 255, 255, 0);
  transition: .3s ease;
  font-size: 42px;
}

.hero-title .box:hover {
  background: var(--yellow);
  color: #111;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.main-cta-box {
background: var(--yellow);
  color: #163a5b;
  width: 70%;
  /* min-height: 150px; */
  padding: 22px 26px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 1.35;
  box-shadow: 0 18px 35px rgba(242, 195, 0, .20);
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.main-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.main-cta-box:hover::before {
  left: 140%;
}

.main-cta-box:hover {
  transform: translateY(-6px) scale(1.02);
  color: #14395a;
  background: var(--yellow-2);
}

.main-cta-box .arrow {
  font-size: 2rem;
  line-height: 1;
  transition: .3s ease;
}

.main-cta-box:hover .arrow {
  transform: translateX(6px);
}

.mini-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.mini-points span {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp .8s ease both;
}

.mini-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(242, 195, 0, .12);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  animation: fadeLeft 1.1s ease both;
}

.hero-image-wrap {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-box {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 2;
  transform: perspective(1200px) rotateY(-3deg);
  transition: .45s ease;
}

.hero-image-box:hover {
  transform: perspective(1200px) rotateY(0deg) translateY(-6px);
}

.hero-image-box img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  display: block;
  animation: imageZoom 7s ease-in-out infinite;
}

.hero-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 47, 77, .10) 0%, rgba(14, 47, 77, 0) 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, .22), transparent);
  z-index: 1;
  pointer-events: none;
}

.corner-accent {
  position: absolute;
  z-index: 1;
  background: var(--yellow);
  box-shadow: 0 16px 30px rgba(242, 195, 0, .18);
}

.corner-accent.top {
  width: 180px;
  height: 85px;
  top: -20px;
  left: 24px;
  animation: floatSoft 5s ease-in-out infinite;
}

.corner-accent.bottom {
  width: 220px;
  height: 85px;
  bottom: -40px;
  right: -33px;
  transform: skewX(-22deg);
  animation: floatSoft 6s ease-in-out infinite;
}

.garage-3d-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 3;
  background: rgba(14, 47, 77, .92);
  color: #fff;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  min-width: 240px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .24);
  animation: floatSoft 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.garage-3d-badge strong {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.garage-mini-door {
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, #2b4966 0%, #183650 100%);
  position: relative;
  overflow: hidden;
}

.garage-mini-door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, .09) 0,
      rgba(255, 255, 255, .09) 2px,
      transparent 2px,
      transparent 18px);
}

.garage-mini-door::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(242, 195, 0, .4);
  animation: pulseGlow 2.2s ease-in-out infinite;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(7, 29, 46, .96);
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .hero-main {
    padding: 20px 0 100px;
  }

  .hero-row {
    min-height: auto;
    row-gap: 38px;
  }

  .hero-left {
    text-align: center;
    padding-right: 0;
  }

  .hero-title,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .mini-points {
    align-items: flex-start;
  }

  .hero-image-box img {
    height: 520px;
  }

  .garage-3d-badge {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --hero-slope-height: 120px;
    --hero-slope-left: 72%;
  }

  .custom-navbar {
    padding: 14px 0;
  }

  .brand-wrap {
    font-size: 1.05rem;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-icon span {
    font-size: 18px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .main-cta-box {
    width: 100%;
    min-height: 130px;
  }

  .hero-image-wrap {
    min-height: auto;
  }

  .hero-image-box {
    transform: none;
  }

  .hero-image-box img {
    height: 400px;
  }

  .corner-accent.top {
    width: 110px;
    height: 52px;
    top: -12px;
    left: 14px;
  }

  .corner-accent.bottom {
    width: 120px;
    height: 52px;
    bottom: -14px;
    right: -8px;
  }

  .garage-3d-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    width: 100%;
  }

  .hero-rings,
  .hero-floating-shapes {
    display: none;
  }
}


.why-simple {
  padding: 80px 0;
  background: #f4f5f7;
}

.why-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 12px;
}

.why-sub {
  color: #5c6b78;
  font-size: 1rem;
  line-height: 1.8;
}

.why-box {
  background: #fff;
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0e2f4d;
  color: #fff;
  margin-bottom: 18px;
}

.why-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0e2f4d;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-box p {
  font-size: .95rem;
  color: #6c7a86;
  line-height: 1.7;
}

.why-box.highlight {
  background: #0e2f4d;
  color: #fff;
}

.why-box.highlight h4,
.why-box.highlight p {
  color: #fff;
}

.why-box.highlight .why-icon {
  background: #f2c300;
  color: #111;
}

.fix-door-section {
  padding: 90px 0;
  background: #f4f5f7;
}

.fix-door-content {
  padding-right: 20px;
}

.fix-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  background: rgba(242, 195, 0, 0.14);
  color: #0e2f4d;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 999px;
}

.fix-door-content h2 {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
  color: #0e2f4d;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fix-door-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5d6b78;
  margin-bottom: 16px;
}

.fix-points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fix-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  color: #183248;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.fix-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-size: .85rem;
  font-weight: 900;
  margin-top: 2px;
}

.fix-door-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(14, 47, 77, 0.08);
  overflow: hidden;
  height: 100%;
}

.fix-card-top {
  width: 90px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e2f4d, #f2c300);
  margin-bottom: 20px;
}

.fix-door-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0e2f4d;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
}

.fix-door-card p {
  color: #60707d;
  line-height: 1.85;
  margin-bottom: 24px;
}

.fix-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fix-stat-box {
  background: #f8fafc;
  border-radius: 18px;
  padding: 22px 18px;
  border: 1px solid rgba(14, 47, 77, 0.06);
}

.fix-stat-box strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: #0e2f4d;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fix-stat-box span {
  display: block;
  font-size: .95rem;
  line-height: 1.7;
  color: #5d6b78;
}

.fix-stat-box.dark {
  background: linear-gradient(135deg, #0e2f4d 0%, #153b5d 100%);
}

.fix-stat-box.dark strong,
.fix-stat-box.dark span {
  color: #fff;
}

@media (max-width: 991.98px) {
  .fix-door-content {
    padding-right: 0;
  }

  .fix-door-section {
    padding: 75px 0;
  }
}

@media (max-width: 767.98px) {
  .fix-door-card {
    padding: 24px 20px;
  }

  .fix-stats {
    grid-template-columns: 1fr;
  }

  .fix-door-content h2 {
    font-size: 1.75rem;
  }
}

.fix-images-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* الصورة الأساسية */
.img-main {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: fadeUp 1s ease both;
}

.img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* الصورة المتداخلة */
.img-overlay {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #f2c300;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: floatImage 4s ease-in-out infinite;
}

.img-overlay img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* شكل decorative */
.img-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: #f2c300;
  border-radius: 20px;
  transform: rotate(25deg);
  z-index: -1;
  animation: floatShape 6s ease-in-out infinite;
}

/* hover effect */
.fix-images-wrap:hover .img-main {
  transform: translateY(-6px);
  transition: .3s ease;
}

.fix-images-wrap:hover .img-overlay {
  transform: translateY(-8px) scale(1.03);
  transition: .3s ease;
}

/* animations */
@keyframes floatImage {

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

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

@keyframes floatShape {

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

  50% {
    transform: translateY(-12px) rotate(30deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* responsive */
@media (max-width:991px) {
  .fix-images-wrap {
    min-height: auto;
    margin-top: 30px;
  }

  .img-overlay {
    right: 0;
    bottom: -20px;
    width: 200px;
  }

  .img-main img {
    height: 350px;
  }
}

@media (max-width:767px) {
  .img-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    width: 100%;
  }

  .img-overlay img {
    height: 180px;
  }

  .img-main img {
    height: 280px;
  }

  .img-shape {
    display: none;
  }
}


.process-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0e2f4d 0%, #153b5d 100%);
  color: #fff;
  overflow: hidden;
}

/* التحكم في الميل */
:root {
  --process-angle-top: 70%;
  --process-angle-bottom: 35%;
  --process-height: 120px;
}

/* الخط المائل العلوي */
.process-diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--process-height);
  background: #f4f5f7;
  clip-path: polygon(0 0, 100% 0, 100% var(--process-angle-bottom), 0 100%);
}

/* الخط المائل السفلي */
.process-diagonal-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--process-height);
  background: #f4f5f7;
  clip-path: polygon(0 var(--process-angle-top), 100% 0, 100% 100%, 0 100%);
}

/* العنوان */
.process-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-sub {
  color: #cbd6df;
  line-height: 1.8;
}

/* الخط الواصل بين العناصر */
.process-row {
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  z-index: 0;
}

/* الكارت */
.process-step {
  position: relative;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  padding: 40px 25px 30px;
  border-radius: 20px;
  text-align: center;
  transition: .3s ease;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
}

/* الرقم */
.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(242, 195, 0, .3);
}

/* النص */
.process-step h4 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-step p {
  font-size: .95rem;
  color: #d6e0ea;
  line-height: 1.7;
}

/* كارت مميز */
.process-step.highlight {
  background: #f2c300;
  color: #111;
}

.process-step.highlight h4,
.process-step.highlight p {
  color: #111;
}

.process-step.highlight .step-number {
  background: #111;
  color: #fff;
}

/* animation */
.process-step {
  animation: fadeUp .8s ease both;
}

.process-step:nth-child(2) {
  animation-delay: .1s;
}

.process-step:nth-child(3) {
  animation-delay: .2s;
}

.process-step:nth-child(4) {
  animation-delay: .3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* responsive */
@media (max-width:991px) {
  .process-row::before {
    display: none;
  }
}

@media (max-width:767px) {
  .process-section {
    padding: 90px 0;
  }

  .process-diagonal-top,
  .process-diagonal-bottom {
    height: 80px;
  }
}

.new-door-section {
  position: relative;
  padding: 95px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
  overflow: hidden;
}

.new-door-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(180deg, rgba(242, 195, 0, 0.08) 0%, rgba(14, 47, 77, 0.04) 100%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.new-door-content {
  position: relative;
  z-index: 2;
  padding-right: 22px;
}

.new-door-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.14);
  color: #0e2f4d;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.new-door-content h2 {
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 18px;
}

.new-door-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5d6b78;
  margin-bottom: 18px;
}

.new-door-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0;
}

.new-door-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: #183248;
  font-weight: 700;
  line-height: 1.7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(14, 47, 77, 0.05);
  transition: .3s ease;
}

.new-door-points div:hover {
  transform: translateX(6px);
}

.new-door-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-size: .85rem;
  font-weight: 900;
  margin-top: 2px;
  box-shadow: 0 0 0 6px rgba(242, 195, 0, 0.12);
}

.new-door-note {
  margin-bottom: 0;
}

/* 
.new-door-visual-card{
  position:relative;
  z-index:2;
  background:#ffffff;
  border-radius:26px;
  padding:34px;
  box-shadow:0 20px 45px rgba(14,47,77,0.08);
  overflow:hidden;
  border:1px solid rgba(14,47,77,0.05);
}

.new-door-visual-card::before{
  content:"";
  position:absolute;
  right:-25px;
  top:-25px;
  width:110px;
  height:110px;
  background:rgba(242,195,0,0.08);
  border-radius:24px;
  transform:rotate(35deg);
}

.visual-top-bar{
  width:92px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg, #0e2f4d, #f2c300);
  margin-bottom:18px;
}

.visual-badge{
  display:inline-block;
  margin-bottom:16px;
  padding:10px 14px;
  border-radius:999px;
  background:#0e2f4d;
  color:#fff;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.new-door-visual-card h3{
  font-size:1.55rem;
  line-height:1.28;
  font-weight:900;
  text-transform:uppercase;
  color:#0e2f4d;
  margin-bottom:14px;
}

.new-door-visual-card p{
  color:#60707d;
  line-height:1.85;
  margin-bottom:24px;
}

.visual-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.visual-info-box{
  background:#f8fafc;
  border-radius:18px;
  padding:22px 18px;
  border:1px solid rgba(14,47,77,0.06);
  transition:.3s ease;
}

.visual-info-box:hover{
  transform:translateY(-6px);
}

.visual-info-box strong{
  display:block;
  font-size:1.08rem;
  font-weight:900;
  color:#0e2f4d;
  margin-bottom:8px;
  text-transform:uppercase;
  line-height:1.35;
}

.visual-info-box span{
  display:block;
  font-size:.95rem;
  line-height:1.75;
  color:#5d6b78;
}

.visual-info-box.dark{
  background:linear-gradient(135deg, #0e2f4d 0%, #153b5d 100%);
}

.visual-info-box.dark strong,
.visual-info-box.dark span{
  color:#fff;
}

.visual-info-box.wide{
  grid-column:1 / -1;
  background:rgba(242,195,0,0.1);
} */

@media (max-width: 991.98px) {
  .new-door-section {
    padding: 80px 0;
  }

  .new-door-content {
    padding-right: 0;
  }

  .new-door-diagonal {
    width: 180px;
    opacity: .7;
  }
}

@media (max-width: 767.98px) {
  .new-door-section {
    padding: 70px 0;
  }

  .new-door-visual-card {
    padding: 24px 20px;
  }

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

  .visual-info-box.wide {
    grid-column: auto;
  }

  .new-door-content h2 {
    font-size: 1.75rem;
  }

  .new-door-points div:hover {
    transform: none;
  }
}


:root {
  --counter-angle-top: 28%;
  --counter-angle-bottom: 72%;
  --counter-diagonal-height: 110px;
}

.counter-diagonal-section {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(135deg, #0e2f4d 0%, #153b5d 55%, #0b2740 100%);
  overflow: hidden;
  color: #fff;
}

.counter-diagonal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 0, .10), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .05), transparent 18%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .03) 45%, transparent 70%);
  pointer-events: none;
}

.counter-diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--counter-diagonal-height);
  background: #f4f5f7;
  clip-path: polygon(0 0, 100% 0, 100% var(--counter-angle-top), 0 100%);
  z-index: 1;
}

.counter-diagonal-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--counter-diagonal-height);
  background: #ffffff;
  clip-path: polygon(0 var(--counter-angle-bottom), 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.counter-diagonal-section .container {
  z-index: 2;
}

.counter-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, .14);
  color: #f2c300;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.counter-diagonal-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.counter-diagonal-sub {
  max-width: 760px;
  margin: 0 auto;
  color: #c9d6e2;
  line-height: 1.85;
}

.circle-counter-box {
  position: relative;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  padding: 28px 20px 24px;
  height: 100%;
  text-align: center;
  transition: .35s ease;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
}

.circle-counter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f2c300, rgba(255, 255, 255, .45));
}

.circle-counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .09);
}

.circle-counter-box.featured {
  background: linear-gradient(135deg, rgba(242, 195, 0, .96) 0%, rgba(255, 216, 74, .96) 100%);
  color: #111;
}

.circle-counter-box.featured h3,
.circle-counter-box.featured p {
  color: #111;
}

.progress-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 10;
}

.progress-ring-fill {
  fill: none;
  stroke: #f2c300;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 1.6s ease;
}

.circle-counter-box.featured .progress-ring-bg {
  stroke: rgba(17, 17, 17, .12);
}

.circle-counter-box.featured .progress-ring-fill {
  stroke: #0e2f4d;
}

.progress-icon {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0e2f4d;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  animation: floatIcon 3.6s ease-in-out infinite;
}

.circle-counter-box.featured .progress-icon {
  background: #0e2f4d;
  color: #fff;
}

.progress-number {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.circle-counter-box.featured .progress-number {
  color: #111;
}

.circle-counter-box h3 {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.circle-counter-box p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.75;
  color: #c8d4df;
}

@keyframes floatIcon {

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

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

@media (max-width: 991.98px) {
  .counter-diagonal-section {
    padding: 110px 0;
  }
}

@media (max-width: 767.98px) {
  :root {
    --counter-diagonal-height: 75px;
    --counter-angle-top: 42%;
    --counter-angle-bottom: 62%;
  }

  .counter-diagonal-section {
    padding: 90px 0;
  }

  .progress-wrap {
    width: 135px;
    height: 135px;
  }

  .progress-ring {
    width: 135px;
    height: 135px;
  }

  .progress-number {
    font-size: 1.75rem;
  }
}


.rapid-service-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
  overflow: hidden;
  text-align: center;
}

.rapid-bg-shape {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 195, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.rapid-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.14);
  color: #0e2f4d;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rapid-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 20px;
}

.rapid-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5d6b78;
  margin-bottom: 20px;
}

.rapid-text.small {
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* points */
.rapid-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  align-items: center;
}

.rapid-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  color: #183248;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.rapid-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-size: .8rem;
  font-weight: 900;
}

/* CTA */
.rapid-cta {
  margin-top: 30px;
}

.rapid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: #f2c300;
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  transition: .3s ease;
  box-shadow: 0 12px 25px rgba(242, 195, 0, .25);
}

.rapid-btn:hover {
  background: #ffd84a;
  transform: translateY(-3px);
  color: #111;
}

/* responsive */
@media (max-width:767px) {
  .rapid-service-section {
    padding: 70px 0;
  }

  .rapid-title {
    font-size: 1.8rem;
  }

  .rapid-text {
    font-size: 1rem;
  }

  .rapid-points div {
    text-align: left;
  }
}


.gallery-stacked-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f5f7 0%, #ffffff 100%);
  overflow: hidden;
}

.gallery-stacked-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, .14);
  color: #0e2f4d;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.gallery-stacked-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 12px;
}

.gallery-stacked-sub {
  color: #5d6b78;
  line-height: 1.8;
}

.gallery-stacked-wrap {
  position: relative;
  min-height: 760px;
  max-width: 1100px;
  margin: 0 auto;
}

.stack-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(14, 47, 77, .12);
  text-decoration: none;
  background: #ddd;
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.stack-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}

.stack-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background: linear-gradient(to top, rgba(14, 47, 77, .74), rgba(14, 47, 77, .12) 55%, transparent);
  z-index: 1;
}

.stack-overlay.small {
  padding: 18px;
}

.stack-overlay h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-overlay.small h3 {
  font-size: 1rem;
}

.stack-overlay span {
  color: #f2c300;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.stack-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 65px rgba(14, 47, 77, .18);
  z-index: 5;
}

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

/* positions */
.stack-main {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 560px;
  z-index: 3;
}

.stack-main:hover {
  transform: translateX(-50%) translateY(-10px) scale(1.02);
}

.stack-one {
  top: 0;
  left: 2%;
  width: 28%;
  height: 250px;
  z-index: 2;
  transform: rotate(-4deg);
}

.stack-two {
  top: 80px;
  right: 2%;
  width: 26%;
  height: 220px;
  z-index: 2;
  transform: rotate(4deg);
}

.stack-three {
  bottom: 40px;
  left: 5%;
  width: 26%;
  height: 220px;
  z-index: 2;
  transform: rotate(3deg);
}

.stack-four {
  bottom: 0;
  right: 4%;
  width: 30%;
  height: 250px;
  z-index: 2;
  transform: rotate(-3deg);
}

/* animation on load */
.stack-card {
  animation: stackFadeUp .8s ease both;
}

.stack-one {
  animation-delay: .08s;
}

.stack-two {
  animation-delay: .16s;
}

.stack-main {
  animation-delay: .22s;
}

.stack-three {
  animation-delay: .30s;
}

.stack-four {
  animation-delay: .38s;
}

@keyframes stackFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
  }
}

/* lightbox */
.gallery-stacked-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 27, .92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 9999;
  padding: 30px;
}

.gallery-stacked-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-stacked-lightbox img {
  max-width: min(100%, 980px);
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.gallery-stacked-lightbox p {
  margin: 18px 0 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.gallery-stacked-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .gallery-stacked-wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stack-card,
  .stack-main,
  .stack-one,
  .stack-two,
  .stack-three,
  .stack-four {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 260px;
    transform: none !important;
  }

  .stack-main {
    grid-column: 1 / -1;
    height: 360px;
  }

  .stack-main:hover {
    transform: translateY(-10px) scale(1.02) !important;
  }
}

@media (max-width: 767.98px) {
  .gallery-stacked-section {
    padding: 70px 0;
  }

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

  .stack-main,
  .stack-one,
  .stack-two,
  .stack-three,
  .stack-four {
    height: 240px;
  }

  .stack-overlay {
    padding: 18px;
  }

  .stack-overlay h3 {
    font-size: 1rem;
  }
}

.timely-repairs-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
  overflow: hidden;
}

.timely-repairs-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 195, 0, .12), transparent 70%);
  pointer-events: none;
}

.timely-image-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timely-image-main {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(14, 47, 77, .14);
  z-index: 2;
  transition: .35s ease;
}

.timely-image-main:hover {
  transform: translateY(-8px);
}

.timely-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.timely-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 47, 77, .05) 0%, rgba(14, 47, 77, .18) 100%);
  pointer-events: none;
}

.timely-image-badge {
  position: absolute;
  left: -15px;
  bottom: 35px;
  z-index: 3;
  background: #fff;
  border-left: 5px solid #f2c300;
  border-radius: 18px;
  padding: 18px 18px;
  min-width: 220px;
  box-shadow: 0 18px 35px rgba(14, 47, 77, .14);
  animation: timelyFloat 4.2s ease-in-out infinite;
}

.timely-image-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 6px;
}

.timely-image-badge span {
  display: block;
  font-size: .92rem;
  color: #60707d;
  line-height: 1.6;
}

.timely-shape {
  position: absolute;
  top: -18px;
  right: 30px;
  width: 120px;
  height: 120px;
  background: #f2c300;
  border-radius: 22px;
  transform: rotate(24deg);
  z-index: 1;
  opacity: .92;
}

.timely-content {
  position: relative;
  z-index: 2;
  padding-left: 12px;
}

.timely-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, .14);
  color: #d3ae0b;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.timely-content h2 {
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 18px;
}

.timely-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5d6b78;
  margin-bottom: 16px;
}

.timely-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0;
}

.timely-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: #183248;
  font-weight: 700;
  line-height: 1.7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(14, 47, 77, 0.05);
  transition: .3s ease;
}

.timely-points div:hover {
  transform: translateX(6px);
}

.timely-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #f2c300;
  color: #111;
  font-size: .85rem;
  font-weight: 900;
  margin-top: 2px;
  box-shadow: 0 0 0 6px rgba(242, 195, 0, .12);
}

.timely-note {
  font-weight: 700;
  color: #0e2f4d;
  margin-bottom: 24px;
}

.timely-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.timely-btn-primary,
.timely-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .3s ease;
}

.timely-btn-primary {
  background: #f2c300;
  color: #111;
  box-shadow: 0 12px 24px rgba(242, 195, 0, .22);
}

.timely-btn-primary:hover {
  background: #ffd84a;
  color: #111;
  transform: translateY(-3px);
}

.timely-btn-secondary {
  background: #0e2f4d;
  color: #fff;
}

.timely-btn-secondary:hover {
  background: #153b5d;
  color: #fff;
  transform: translateY(-3px);
}

@keyframes timelyFloat {

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

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

@media (max-width: 991.98px) {
  .timely-repairs-section {
    padding: 80px 0;
  }

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

  .timely-image-wrap {
    min-height: 500px;
  }

  .timely-image-badge {
    left: 10px;
  }
}

@media (max-width: 767.98px) {
  .timely-repairs-section {
    padding: 70px 0;
  }

  .timely-content h2 {
    font-size: 1.75rem;
  }

  .timely-image-wrap {
    min-height: auto;
  }

  .timely-image-main img {
    height: 380px;
  }

  .timely-image-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    width: 100%;
  }

  .timely-shape {
    display: none;
  }

  .timely-actions {
    flex-direction: column;
  }

  .timely-btn-primary,
  .timely-btn-secondary {
    width: 100%;
  }

  .timely-points div:hover {
    transform: none;
  }
}

/* التحكم في الميل */
:root {
  --timely-angle: 83%;
}

/* خلي السكشن relative */
.timely-repairs-section {
  position: relative;
  overflow: hidden;
}

/* الطبقة المائلة */
.timely-repairs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0e2f4d;
  /* اللون الغامق */
  clip-path: polygon(0 0, 100% 0, 100% var(--timely-angle), 0 100%);
  z-index: 0;
}

/* خليه فوق الخلفية */
.timely-repairs-section>.container {
  position: relative;
  z-index: 2;
}

/* تعديل الألوان علشان النص يظهر */
.timely-content h2,
.timely-content p,
.timely-note {
  position: relative;
  z-index: 2;
}

/* لو عايز النص اللي على اليمين يبقى أبيض */
@media (min-width:992px) {
  .timely-content {
    color: #fff;
  }

  .timely-content h2 {
    color: #fff;
  }

  .timely-content p {
    color: #d6e0ea;
  }
}

.google-reviews-pro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-pro-section::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 195, 0, .10), transparent 70%);
  pointer-events: none;
}

.gr-summary-box {
  background: #fff;
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 18px 40px rgba(14, 47, 77, .08);
  border: 1px solid rgba(18, 54, 87, 0.26);
  height: 100%;
}

.gr-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, .14);
  color: #0e2f4d;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.gr-summary-box h2 {
  font-size: 26px;
  line-height: 1.14;
  font-weight: 900;
  text-transform: uppercase;
  color: #0e2f4d;
  margin-bottom: 22px;
}

.gr-rating-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.gr-big-score {
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 900;
  color: #0e2f4d;
}

.gr-head-right p {
  margin: 8px 0 0;
  color: #61717d;
  line-height: 1.7;
  font-size: .95rem;
}

.gr-stars {
  color: #f2c300;
  letter-spacing: 2px;
  font-size: 1rem;
}

.gr-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.gr-bar-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
}

.gr-bar-row span {
  font-weight: 800;
  color: #0e2f4d;
  font-size: .92rem;
}

.gr-bar {
  height: 10px;
  border-radius: 999px;
  background: #edf1f5;
  overflow: hidden;
}

.gr-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0e2f4d, #f2c300);
  border-radius: 999px;
}

.gr-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.gr-mini-box {
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(14, 47, 77, .06);
}

.gr-mini-box strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  color: #0e2f4d;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gr-mini-box span {
  display: block;
  font-size: .9rem;
  color: #61717d;
  line-height: 1.6;
}

.gr-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gr-btn-primary,
.gr-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .3s ease;
}

.gr-btn-primary {
  background: #f2c300;
  color: #111;
  box-shadow: 0 12px 24px rgba(242, 195, 0, .22);
}

.gr-btn-primary:hover {
  background: #ffd84a;
  color: #111;
  transform: translateY(-3px);
}

.gr-btn-secondary {
  background: #0e2f4d;
  color: #fff;
}

.gr-btn-secondary:hover {
  background: #153b5d;
  color: #fff;
  transform: translateY(-3px);
}

.gr-review-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 16px 35px rgba(14, 47, 77, .07);
  border: 1px solid rgba(14, 47, 77, .05);
  height: 100%;
  transition: .35s ease;
}

.gr-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(14, 47, 77, .11);
}

.gr-review-card.featured {
  background: linear-gradient(135deg, #0e2f4d 0%, #153b5d 100%);
}

.gr-review-card.featured h4,
.gr-review-card.featured span,
.gr-review-card.featured p {
  color: #fff;
}

.gr-review-card.featured .gr-avatar {
  background: #f2c300;
  color: #111;
}

.gr-review-card.featured .gr-google-badge {
  background: #fff;
  color: #0e2f4d;
}

.gr-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

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

.gr-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e2f4d;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(14, 47, 77, .12);
}

.gr-user h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 900;
  color: #0e2f4d;
  text-transform: uppercase;
}

.gr-user span {
  font-size: .86rem;
  color: #72828f;
}

.gr-google-badge {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2c300;
  color: #111;
  font-weight: 900;
  font-size: 1rem;
}

.gr-review-card .gr-stars {
  margin-bottom: 14px;
}

.gr-review-card p {
  margin: 0;
  color: #5d6b78;
  line-height: 1.85;
  font-size: .97rem;
}

@media (max-width: 767.98px) {
  .google-reviews-pro-section {
    padding: 70px 0;
  }

  .gr-summary-box {
    padding: 24px 20px;
  }

  .gr-mini-stats {
    grid-template-columns: 1fr;
  }

  .gr-rating-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gr-summary-actions {
    flex-direction: column;
  }

  .gr-btn-primary,
  .gr-btn-secondary {
    width: 100%;
  }

  .gr-review-card {
    padding: 22px 18px;
  }
}

:root {
  --lux-navy: #0e2f4d;
  --lux-navy-2: #153b5d;
  --lux-navy-3: #091f32;
  --lux-yellow: #f2c300;
  --lux-yellow-2: #ffd84a;
  --lux-white: #ffffff;
  --lux-text: #dce6ef;
  --lux-muted: #aebecd;
  --lux-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.lux-footer-section {
  position: relative;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 195, 0, .10), transparent 18%),
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, .04), transparent 20%),
    linear-gradient(135deg, var(--lux-navy) 0%, var(--lux-navy-2) 48%, var(--lux-navy-3) 100%);
  overflow: hidden;
}

.lux-footer-top-angle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
  z-index: 1;
}

.lux-footer-section .container {
  position: relative;
  z-index: 2;
}

/* CTA */
.lux-footer-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .06) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 34px 30px;
  box-shadow: var(--lux-shadow);
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
}

.lux-footer-cta::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  background: rgba(242, 195, 0, .12);
  border-radius: 28px;
  transform: rotate(35deg);
}

.lux-footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 195, 0, .14);
  color: var(--lux-yellow);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.lux-footer-cta-content h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lux-footer-cta-content p {
  color: var(--lux-text);
  line-height: 1.85;
  margin: 0;
  max-width: 700px;
}

.lux-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.lux-footer-btn-primary,
.lux-footer-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .3s ease;
}

.lux-footer-btn-primary {
  background: var(--lux-yellow);
  color: #111;
  box-shadow: 0 12px 24px rgba(242, 195, 0, .24);
}

.lux-footer-btn-primary:hover {
  background: var(--lux-yellow-2);
  color: #111;
  transform: translateY(-3px);
}

.lux-footer-btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .10);
}

.lux-footer-btn-secondary:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transform: translateY(-3px);
}

/* contact cards */
.lux-footer-contact-cards {
  margin-bottom: 34px;
}

.lux-contact-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--lux-shadow);
  position: relative;
  overflow: hidden;
  transition: .35s ease;
}

.lux-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--lux-navy), var(--lux-yellow));
}

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

.lux-contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lux-navy), var(--lux-navy-2));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px rgba(14, 47, 77, .15);
}

.lux-contact-card strong {
  display: block;
  color: var(--lux-navy);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lux-contact-card a,
.lux-contact-card span {
  color: #5d6b78;
  line-height: 1.75;
  font-weight: 600;
}

/* footer body */
.lux-footer-body {
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .05) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 34px 34px 0 0;
  padding: 34px 30px 0;
  box-shadow: var(--lux-shadow);
}

/* brand box */
.lux-footer-brand-box {
  height: 100%;
}

.lux-footer-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 20px;
  border: 2px solid var(--lux-yellow);
  color: var(--lux-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.lux-footer-logo span {
  transform: rotate(-45deg);
  font-size: 1.3rem;
  font-weight: 900;
}

.lux-footer-brand-box h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 14px;
}

.lux-footer-brand-box p {
  color: var(--lux-text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.lux-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.lux-footer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lux-footer-zip-box {
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
}

.lux-footer-zip-box strong {
  display: block;
  color: var(--lux-yellow);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.lux-footer-zip-box p {
  margin: 0;
  color: var(--lux-text);
  line-height: 1.85;
}

/* form */
.lux-footer-form-box {
  background: #fff;
  border-radius: 28px;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.lux-footer-form-box h3 {
  color: var(--lux-navy);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lux-footer-input {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(14, 47, 77, .12);
  box-shadow: none !important;
  padding: 12px 15px;
}

.lux-footer-input:focus {
  border-color: var(--lux-yellow);
}

.lux-footer-textarea {
  min-height: 120px;
  resize: none;
}

.lux-footer-submit {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 14px;
  background: var(--lux-yellow);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  transition: .3s ease;
  box-shadow: 0 12px 24px rgba(242, 195, 0, .22);
}

.lux-footer-submit:hover {
  background: var(--lux-yellow-2);
  transform: translateY(-3px);
}

/* side area */
.lux-footer-side {
  height: 100%;
}

.lux-footer-map-card {
  background: rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 16px;
}

.lux-footer-map-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lux-footer-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.lux-footer-map-wrap iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.lux-footer-links-box {
  background: rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 18px 16px;
  height: 100%;
}

.lux-footer-links-box h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lux-footer-links-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-footer-links-box li {
  margin-bottom: 10px;
}

.lux-footer-links-box a {
  color: var(--lux-text);
  font-weight: 600;
  transition: .3s ease;
}

.lux-footer-links-box a:hover {
  color: var(--lux-yellow);
  padding-left: 4px;
}






/* locations */
.lux-footer-social-box {
  margin-top: 16px;
  background: rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 18px 16px;
}

.lux-footer-social-box h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lux-footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lux-footer-social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-size: 1rem;
  transition: .3s ease;
}

.lux-footer-social-links a:hover {
  background: var(--yellow);
  color: #111;
  transform: translateY(-3px);
}

.lux-footer-locations {
  margin-top: 30px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.lux-footer-locations-head h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lux-footer-locations-head p {
  color: var(--lux-text);
  line-height: 1.8;
  margin: 0;
}

.lux-footer-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lux-footer-city-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: .3s ease;
}

.lux-footer-city-grid a:hover {
  background: rgba(242, 195, 0, .16);
  transform: translateY(-2px);
}

/* bottom */
.lux-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 22px 0 26px;
}

.lux-footer-bottom p {
  color: var(--lux-muted);
  line-height: 1.7;
}

.lux-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.lux-footer-bottom-links a {
  color: var(--lux-muted);
  font-weight: 700;
  transition: .3s ease;
}

.lux-footer-bottom-links a:hover {
  color: var(--lux-yellow);
}

/* responsive */
@media (max-width: 991.98px) {
  .lux-footer-section {
    padding-top: 120px;
  }

  .lux-footer-cta-actions {
    justify-content: flex-start;
  }

  .lux-footer-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .lux-footer-section {
    padding-top: 95px;
  }

  .lux-footer-top-angle {
    height: 70px;
  }

  .lux-footer-cta {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .lux-footer-body {
    padding: 24px 18px 0;
    border-radius: 24px 24px 0 0;
  }

  .lux-footer-form-box {
    padding: 22px 16px;
    border-radius: 22px;
  }

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

  .lux-footer-map-wrap iframe {
    height: 220px;
  }

  .lux-footer-btn-primary,
  .lux-footer-btn-secondary {
    width: 100%;
  }

  .lux-footer-bottom-links {
    gap: 12px;
  }
}

.faq-tabs-section{
  padding:100px 0;
  background:#f4f5f7;
}

.faq-tabs-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:30px;
}

.tab-btn{
  padding:12px 18px;
  border:none;
  border-radius:12px;
  background:#fff;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.tab-btn.active{
  background:#0e2f4d;
  color:#fff;
}

.tab-pane{
  display:none;
  animation:fadeIn .4s ease;
}

.tab-pane.active{
  display:block;
}

.faq-item{
  background:#fff;
  border-radius:14px;
  margin-bottom:10px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:16px;
  border:none;
  text-align:left;
  font-weight:800;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:20px;
}

.faq-item.active .faq-question::after{
  content:"−";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:.4s;
}

.faq-answer p{
  padding:0 16px 16px;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1;}
}

form.CUS input.subject {
    display: none
}

input {
width: 96%;
  padding: 1%;
  margin: 1%;
  height: 40px;
  float: left;
  border-radius: 9px;
  font-size: 14px;
  /* box-shadow: 3px 1px 8px #0000005e;
  background: rgba(255, 255, 255, .08); */
  color: #123657;
  font-weight: bold;
}

