/* ============================================================
   ORELLA GROUP – style.css
   Author: Custom Theme
   Stack: Vanilla CSS (Flexbox + Grid), no frameworks
   ============================================================ */


/* ── 1. RESET & BASE ──────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Figtree', Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #000;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}


/* ── Global Variables ─────────────────────────────────────────── */

:root {
  --commercial-orange: #f47a21;
  --commercial-white: #ffffff;
  --commercial-muted: rgba(255, 255, 255, 0.72);
  --commercial-card: rgba(235, 235, 235, 0.92);
  --commercial-black: #030303;
}


/* ── 2. UTILITIES ─────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 24px;
}

.main-container {
  padding-top: 150px;
}

.text-center {
  text-align: center;
}

/* ── 3. BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #f47a21;
  color: #ffffff;
  border: 2px solid #f47a21;
}

.btn--primary:hover {
  background: #c74e12;
  border-color: #c74e12;
}

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm {
  padding: 6px 14px;
  font-size: 0.78rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}


/* ── 6. HERO ──────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #111 var(--hero-bg) center/cover no-repeat;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__title {
  display: flex;
  justify-content: center;
  margin: 150px 0 20px 0;
}

.hero__title--accent {
  color: #f47a21;
}

.hero__sub {
  margin-bottom: 20px;
  color: #FFF;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 8px;
  text-transform: capitalize;
  white-space: nowrap;
}

.hero__sub a {
  color: #FFF;
}

.hero__sub a:hover {
  color: var(--og-orange);
}

.hero__sub span::after {
  content: "|";
  display: inline-block;
  margin: 0 18px 0 15px;
  color: #f47a20;
  font-weight: 300;
  letter-spacing: 0;
}

.hero__content .site-btn__book {
  padding: 15px 30px;
  font-size: 18px;
}

.learn_more {
  position: absolute;
  bottom: 30px;
  width: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2
}

.learn_more a.go_next_s {
  width: 29px;
  height: 29px;
  min-height: 0;
  min-width: 0;
  max-height: none;
  max-width: none;
  border-color: rgba(255, 255, 255, .75);
  border-style: solid;
  border-width: 2px;
  padding: 16px;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  position: relative
}

span.animeted_dot {
  -webkit-animation: 2s linear infinite MoveUpDown;
  animation: 2s linear infinite MoveUpDown;
  width: 10px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  border-radius: 100%;
  left: calc(50% - 5px);
  top: 33px
}

@-webkit-keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(-29px);
    transform: translateY(-29px)
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(-29px);
    transform: translateY(-29px)
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

section {
  scroll-margin-top: 150px;
  /* Height of your fixed header */
}

/* Tablet */

@media (max-width: 991px) {
  .hero__sub {
    font-size: clamp(24px, 4.5vw, 38px);
    letter-spacing: 5px;
    margin-bottom: 20px;
  }

  .hero__sub span::after {
    margin: 0 10px 0 5px;
  }
}


/* Mobile */

@media (max-width: 768px) {
  .hero {
    min-height: 420px;
  }

  .hero__title {
    margin: 70px 0 20px 0;
  }

  .learn_more {
    bottom: 15px;
  }

  section {
    scroll-margin-top: 70px;
    /* Height of your fixed header */
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 400px;
  }

  .hero__sub {
    font-size: clamp(21px, 4.2vw, 22px);
    letter-spacing: 0;
    margin-bottom: 1.2em;
  }

  .hero__sub span::after {
    margin: 0 6px;
  }

  .hero__content .site-btn__book {
    padding: 12px 30px;
  }
}


/* ── 7. MISSION ───────────────────────────────────────────── */


/* =========================================================
   Build Better Section
   ========================================================= */

.trust-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 70px clamp(24px, 5.2vw, 88px);
  color: #ffffff;
  background: #000000;
}

.trust-section__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  overflow: hidden;
  opacity: 0.4;
}

.trust-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(430px, 520px);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.trust-section__content {
  min-width: 0;
}

.trust-section__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(45px, 4vw, 60px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -1px;
  text-transform: uppercase;
}


.trust-section__description {
  display: inline-flex;
}

.trust-section__description p {
  max-width: 620px;
  color: #ffffff;


}

.trust-section__description h1 {
  font-size: clamp(24px, 4.55vw, 30px);
  margin: inherit;
  font-weight: 300;
}

.trust-section__description p span {
  color: #f47a21;
}

.trust-section__title span {
  color: #f47a21;
  font-weight: 600;
}


/* =========================================================
   Build Better Image Collage - Grid Version
   ========================================================= */

.trust-section__media {
  width: min(100%, 470px);
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* Each media__box is one row */

.media__box {
  display: flex;
  gap: 16px;
}


/* First row */

.media__box:first-child {
  min-height: 258px;
  align-items: flex-end;
}


/* Second row */

.media__box:last-child {
  min-height: 258px;
  align-items: flex-start;
}


/* Common image style */

.trust-section__image {
  overflow: hidden;
}

.trust-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.trust-section__image:hover img {
  transform: scale(1.045);
}


/* First row: almost square left image */

.trust-section__image--12,
.trust-section__image--1 {
  width: 264px;
  height: 221px;
  border-radius: 0 0 18px 18px;
}


/* First row: right image a little taller */

.trust-section__image--11,
.trust-section__image--2 {
  width: 182px;
  height: 262px;
  border-radius: 10px 10px 18px 18px;
}


/* Second row: small left image */

.trust-section__image--13,
.trust-section__image--3 {
  width: 150px;
  height: 180px;
  border-radius: 0 12px 12px 12px;
}


/* Second row: large right image */

.trust-section__image--14,
.trust-section__image--4 {
  width: 296px;
  height: 259px;
  border-radius: 0 0 4px 4px;
}


/* =========================================================
   Build Better Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .trust-section {
    min-height: auto;
    padding-block: 68px;
  }

  .trust-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-section__title {
    max-width: 100%;
  }

  .feature__inner .trust-section__media,
  .trust-section__media {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .trust-section {
    padding: 56px 20px;
  }

  .trust-section__title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.13;
  }

  .trust-section__media {
    gap: 14px;
  }

  .media__box {
    gap: 12px;
  }

  .media__box:first-child,
  .media__box:last-child {
    min-height: auto;
  }

  /* First row: almost square left image */
  .trust-section__image--12,
  .trust-section__image--1 {
    max-width: 244px;
    max-height: 201px;
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
  }

  /* First row: right image a little taller */
  .trust-section__image--11,
  .trust-section__image--2 {
    max-width: 162px;
    max-height: 242px;
    width: 100%;
    height: auto;
    border-radius: 10px 10px 18px 18px;
  }

  /* Second row: small left image */
  .trust-section__image--13,
  .trust-section__image--3 {
    max-width: 130px;
    max-height: 160px;
    width: 100%;
    height: auto;
    border-radius: 0 12px 12px 12px;
  }

  /* Second row: large right image */
  .trust-section__image--14,
  .trust-section__image--4 {
    max-width: 276px;
    max-height: 239px;
    width: 100%;
    height: auto;
    border-radius: 0 0 4px 4px;
  }
}

@media (max-width: 420px) {
  .trust-section__media {
    width: 100%;
    gap: 12px;
  }

  .media__box {
    gap: 10px;
  }
}


/* =========================================================
   Brand Logo Swiper Section
   ========================================================= */

.brand-slider-section {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  background: #f47a21;
}

.brand-slider {
  width: 100%;
}

.brand-slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}

.brand-slider__item {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slider__item img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 80px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
  filter: invert(0%) brightness(0%);
}

.brand-slider__item:hover img {
  transform: scale(1.04);
  opacity: 0.82;
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}


/* =========================================================
   Brand Logo Swiper Responsive
   ========================================================= */

@media (max-width: 1024px) {

  .brand-slider__item {
    height: 82px;
  }

  .brand-slider__item img {
    max-width: 220px;
    max-height: 68px;
  }
}

@media (max-width: 767px) {

  .brand-slider__item {
    height: 70px;
  }

  .brand-slider__item img {
    max-width: 180px;
    max-height: 56px;
  }
}


/* ── 9. FEATURE ───────────────────────────────────────────── */

.feature {
  background: #000;
  padding-block: 70px;
  border-bottom: 0.5px solid RGB(255, 255, 255, 0.3);
}

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}


/* Feature Content */

.feature__eyebrow {
  display: block;
  color: #FFF;
  font-weight: 300;
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.feature__title {
  font-size: 31px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.feature__title span {
  color: #f47a21;
}

.feature__body {
  color: #FFF;
  margin-bottom: 16px;
}

.feature__inner .trust-section__media {
  justify-self: start;
}

@media (max-width: 1024px) {
  .feature__inner .trust-section__media {
    justify-self: center;
  }
}


/* ── 10. TESTIMONIALS ─────────────────────────────────────── */

.testimonials {
  background: #000000;
  padding-block: 80px 100px;
  color: #1a1a1a;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials__title {
  font-size: clamp(42px, 4.5vw, 87px);
  line-height: 1.1;
  font-weight: 300;
  color: #FFF;
  margin-bottom: 0px;
}

.testimonials__title span {
  font-weight: 600;
  color: #f47a21;
}

.testimonials__sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  font-size: clamp(24px, 2.7vw, 52px);
  color: #FFF;
  flex-wrap: wrap;
  position: relative;
}

.testimonials__sub .client-testimonial-card__quote {
  position: relative;
  top: -7px;
  right: -5px;
  width: 30px;
  height: 23px;
}

.testimonials__sub .inline-logo {
  width: clamp(44px, 5vw, 80px);
  height: auto;
}

.inline-logo {
  display: inline-block;
  vertical-align: middle;
}


/* =========================================================
   Testimonials Slider Section
   ========================================================= */

.testimonials-section {
  overflow: hidden;
  width: 100%;
  padding-block: 70px;
  background: #000000;
  border-bottom: 0.5px solid RGB(255, 255, 255, 0.3);
  border-top: 0.5px solid RGB(255, 255, 255, 0.3);
}

.testimonials-slider {
  overflow: visible;
  width: 100%;
}

.testimonials-slider .swiper-wrapper {
  align-items: stretch;
}


/* =========================================================
   Testimonial Card Base
   ========================================================= */

.testimonial-card {
  width: min(33vw, 800px);
  min-height: 500px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  padding: 30px 50px;
  background: #cbcbcb;
  color: #050505;
  border: 1px solid transparent;
  border-radius: 34px;
  opacity: 1;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}


/* Center active slide */

.testimonial-card.swiper-slide-active {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
}


/* Side slides stay white/gray */

.testimonial-card.swiper-slide-prev,
.testimonial-card.swiper-slide-next {
  background: #cfcfcf;
  color: #050505;
}


/* =========================================================
   Logo Area
   ========================================================= */

.testimonial-card__logo {
  min-height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-card__logo img {
  display: block;
  width: auto;
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}

.testimonial-card.swiper-slide-active .testimonial-card__logo img {
  filter: brightness(0) invert(1);
}

.testimonial-card:not(.swiper-slide-active) .testimonial-card__logo img {
  filter: brightness(0);
}

.testimonial-card__logo--text {
  font-size: clamp(52px, 4vw, 74px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -2px;
}


/* =========================================================
   Content
   ========================================================= */

.testimonial-card__body {
  flex: 1 1 auto;
}

.testimonial-card__body p {
  margin: 0 0 15px;
  line-height: 1.2;
}

.testimonial-card__link {
  width: fit-content;
  margin-top: 10px;
  color: #ff7a1a;
  line-height: 1;
  font-weight: 300;
  transition: opacity 0.25s ease;
}

.testimonial-card__link:hover,
.testimonial-card__link:focus-visible {
  opacity: 0.72;
  outline: none;
}


/* =========================================================
   Rating
   ========================================================= */

.testimonial-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 25px;
}

.testimonial-card__rating span {
  color: #ff7a1a;
  font-size: clamp(36px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: 2px;
}

.testimonial-card__rating strong {
  color: inherit;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1;
  font-weight: 300;
}


/* =========================================================
   Author
   ========================================================= */

.testimonial-card__author {
  width: fit-content;
  margin: 34px auto 0;
}

.testimonial-card__author strong,
.testimonial-card__author span {
  display: block;
}

.testimonial-card__author strong {
  font-size: clamp(20px, 2vw, 21px);
  line-height: 1.08;
  font-weight: 600;
}

.testimonial-card__author span {
  margin-top: 4px;
  font-size: clamp(20px, 2vw, 21px);
  line-height: 1.08;
  font-weight: 300;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1440px) {
  .testimonial-card {
    width: min(50vw, 820px);
    min-height: 720px;
    padding: 44px 58px 56px;
  }
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 72px 24px;
  }

  .testimonial-card {
    width: 72vw;
    min-height: 680px;
    padding: 40px 42px 48px;
    border-radius: 28px;
  }

  .testimonial-card__body p {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 54px 24px;
  }

  .testimonials__title {
    margin-bottom: 10px;
  }

  .testimonial-card {
    width: 72vw;
    min-height: 610px;
    padding: 32px 26px 38px;
    border-radius: 24px;
  }

  .testimonial-card__logo {
    min-height: 64px;
    margin-bottom: 16px;
  }

  .testimonial-card__logo img {
    max-width: 210px;
    max-height: 64px;
  }

  .testimonial-card__body p {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.26;
  }

  .testimonial-card__rating {
    gap: 14px;
    margin-top: 26px;
  }

  .testimonial-card__rating span {
    font-size: 32px;
    letter-spacing: 0;
  }

  .testimonial-card__rating strong {
    font-size: 40px;
  }

  .testimonial-card__author {
    margin-top: 24px;
  }

  .testimonial-card__author strong {
    font-size: 24px;
  }

  .testimonial-card__author span {
    font-size: 21px;
  }

  .testimonials__sub .client-testimonial-card__quote {
    top: 10px;
    right: 0;
  }
}

@media (max-width: 420px) {
  .testimonial-card {
    width: 78vw;
    min-height: 590px;
    padding-inline: 22px;
  }

  .testimonial-card__body p {
    font-size: 18px;
  }
}


/* =========================================================
   Brand Mark Parallax Section
   ========================================================= */
.brand-mark {
  position: relative;
  height: 640px;
  overflow: hidden;
}

/* Desktop */
.brand-mark__bg {
  position: absolute;
  inset: 0;
  background-position: 0 150px;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
}

/* Mobile image */
.brand-mark__media {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.brand-mark__image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
}

@media (max-width:768px) {

  .brand-mark__bg {
    display: none;
  }

  .brand-mark__media {
    display: block;
  }

}



@media (max-width: 767px) {
  .brand-mark {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .brand-mark {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    height: 250px;
  }
}


/* ── 12. FOOTER ───────────────────────────────────────────── */

.site-footer {
  border-top: 20px solid #f47a21;
  padding: clamp(34px, 5vw, 62px) 0 0;
  position: relative;
  background: #000;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background: url("../img/contact-page-bg.jpg") center / contain repeat-x;
  opacity: 0.4;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__desc {
  color: #FFF;
}

.footer__contact {
  justify-self: end;
}

.footer__contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 300;
  font-size: 21px;
}

.footer__contact-header span {
  color: #ffffff;
  font-weight: 600;
}

.footer__address {
  color: #f47a21;
  margin-bottom: 14px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFF;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contact-list strong {
  color: #FFF;
}

.footer__contact-list a {
  color: #f47a21;
  transition: color 0.2s;
}

.footer__contact-list a:hover {
  color: #f07838;
}

.footer__bar {
  padding-block: 20px;
  color: #FFF;
  border-top: 5px solid RGB(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}
.footer__bar p {
  margin-bottom: 0;
}

.footer__bar a {
  color: #FFF;
  transition: color 0.2s;
}

.footer__bar a:hover {
  color: #f47a21;
}


/* ── 13. SCROLL ANIMATIONS ────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 14. RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 1024px) {

  .mission__inner,
  .feature__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    height: 280px;
  }

  .gallery-item--large {
    height: auto;
  }

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

@media (max-width: 767px) {

  /* Header */
  .header__topbar {
    display: none;
  }

  .primary-nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .header__nav-row {
    gap: 16px;
    padding-block: 12px;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  /* Mission */
  .mission {
    padding-block: 64px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 120px;
    height: auto;
  }

  /* Feature */
  .feature {
    padding-block: 64px;
  }

  .feature__inner {
    gap: 32px;
  }

  /* Testimonials */
  .testimonials__track {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__contact {
    justify-self: start;
  }

  /* Partners */
  .partners__list {
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .mission__headline {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 120px 120px;
    height: auto;
  }

  .gallery-item--large {
    grid-row: auto;
  }
}


/* =========================================================
   Commercial Division Page
   No header/footer styles included
   ========================================================= */

.commercial-page {
  position: relative;
  overflow: hidden;
  color: var(--commercial-white);
  background-color: #000;
}

.commercial-container {
  position: relative;
}


/* =========================================================
   Hero
   ========================================================= */

.commercial-hero {
  padding: clamp(34px, 5vw, 62px) 0 clamp(46px, 6vw, 76px);
}

.commercial-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(25px, 6vw, 30px);
}

.commercial-hero__inner:not(:has(.commercial-hero__media)) {
  grid-template-columns: 1fr;
}

.commercial-hero__title {
  margin: 0px;
  color: #FFF;
  font-size: clamp(34px, 4.55vw, 52px);
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.13;
}

.commercial-hero__content h3 {
  font-size: clamp(32px, 4.55vw, 38px);
  font-weight: 600;
  line-height: 1;
}

.commercial-hero__content p span,
.commercial-hero__content h3 span,
.commercial-hero__title span {
  color: var(--commercial-orange);
  font-weight: 600;
}

.commercial-hero__media {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

.commercial-hero__media img {
  display: block;
  width: 100%;
}

.commercial-hero__video {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 320px;
}

.commercial-hero__video video {
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0px;
  left: 0px;
  display: block !important;
}

/* =========================================================
   Section Titles
   ========================================================= */

.commercial-section-title {
  margin: 0 0 22px;
  text-align: center;
  color: #FFF;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.commercial-section-title span,
.commercial-section-title strong {
  color: var(--commercial-orange);
  font-weight: 600;
}


/* =========================================================
   Commercial Pillars
   ========================================================= */

.commercial-pillars {
  padding: clamp(34px, 5vw, 62px) 0 clamp(46px, 6vw, 76px);
  position: relative;
  background-color: #000000;
}

.pillars-section__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/contact-page-bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.4;
}

.commercial-pillars__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.commercial-pillar-card {
  min-height: 132px;
  padding: 35px 40px;
  color: #111;
  background: var(--commercial-card);
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.commercial-pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: #f58220;
  /* Orella orange */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}


/* 1st, 3rd, 5th... */

.commercial-pillar-card:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.32);
}

.commercial-pillar-card:nth-child(1):hover {
  transform: translate(-8px, -8px);
  -webkit-transform: translate(-8px, -8px);
  -moz-transform: translate(-8px, -8px);
  -ms-transform: translate(-8px, -8px);
  -o-transform: translate(-8px, -8px);
}

.commercial-pillar-card:nth-child(2):hover {
  transform: translate(8px, -8px);
  -webkit-transform: translate(8px, -8px);
  -moz-transform: translate(8px, -8px);
  -ms-transform: translate(8px, -8px);
  -o-transform: translate(8px, -8px);
}

.commercial-pillar-card:nth-child(4):hover {
  transform: translate(-8px, 8px);
  -webkit-transform: translate(-8px, 8px);
  -moz-transform: translate(-8px, 8px);
  -ms-transform: translate(-8px, 8px);
  -o-transform: translate(-8px, 8px);
}

.commercial-pillar-card:nth-child(5):hover {
  transform: translate(8px, 8px);
  -webkit-transform: translate(8px, 8px);
  -moz-transform: translate(8px, 8px);
  -ms-transform: translate(8px, 8px);
  -o-transform: translate(8px, 8px);
}

.commercial-pillar-card:hover::before {
  transform: scaleX(1);
}

.commercial-pillar-card:nth-child(1) {
  border-top-left-radius: 18px;
}

.commercial-pillar-card:nth-child(2) {
  border-top-right-radius: 18px;
}

.commercial-pillar-card:nth-child(4) {
  border-bottom-left-radius: 18px;
}

.commercial-pillar-card:nth-child(5) {
  border-bottom-right-radius: 18px;
}

.commercial-pillar-card h3 {
  margin: 0 0 15px;
  font-size: clamp(21px, 1.55vw, 24px);
  line-height: 1.2;
}

.commercial-pillar-card p {
  margin: 0;
}

.commercial-pillars__badge {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: #050505;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.commercial-pillars__badge strong {
  color: var(--commercial-orange);
}


/* =========================================================
   On Demand Maintenance Services
   Place between commercial-pillars and commercial-cases
   ========================================================= */

.maintenance-services {
  position: relative;
  padding: clamp(34px, 5vw, 62px) 24px clamp(46px, 6vw, 76px);
  color: #fff;
}


/* ==========================================================
   Heading
========================================================== */

.maintenance-services__heading {
  margin-bottom: clamp(28px, 3.5vw, 42px);
  text-align: center;
}

.maintenance-services__heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.55vw, 52px);
  line-height: 1.06;
  font-weight: 300;
  color: #fff;
  letter-spacing: -1px;
}

.maintenance-services__heading span {
  display: block;
  color: #ff7417;
  font-weight: 600;
}

/* ==========================================================
   Top Highlight Repeater
========================================================== */

.maintenance-services__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #292929;
  margin-bottom: 18px;
  margin-left: 27px;
  padding-block: 10px;
}

.maintenance-highlight {
  padding: 0 24px;
}

.maintenance-highlight p {
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0;
  padding: 5px;
}

.maintenance-highlight:last-child p {
  box-shadow: 0px 4px 10px rgba(0, 0, 0);
}

.maintenance-highlight:not(:last-child) {
  border-right: 2px solid #ff7417;
}

.maintenance-highlight strong {
  color: #ff7417;
  font-weight: 700;
}

@media (max-width: 768px) {
  .maintenance-services__highlights {
    grid-template-columns: 1fr;
  }

  .maintenance-highlight {
    padding: 10px 24px;
  }

  .maintenance-highlight:not(:last-child) {
    border-right: 0;
    border-bottom: 2px solid #ff7417;
  }
}

/* ==========================================================
   Rows
========================================================== */

.maintenance-services__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.maintenance-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 18px;
  align-items: stretch;
}

.maintenance-row__bar {
  background: #ff7417;
  border-radius: 999px;
  width: 10px;
  height: 100%;
}


/* ==========================================================
   Grids
========================================================== */

.maintenance-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


/* ==========================================================
   Cards
========================================================== */

.maintenance-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 30px;
  min-height: 216px;
  background: #292929;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
  transition: .35s;
}

.maintenance-card--stats {
  justify-content: center;
  min-height: 176px;
  padding: 24px 34px;
  grid-column: span 2;
}

.maintenance-card:hover,
.maintenance-card--highlight {
  background: #965829;
}

.maintenance-card h3 {
  margin: 0 0 18px;
  color: #ff7417;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}

.maintenance-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.15;
  font-weight: 300;
}

.maintenance-card p+p {
  margin-top: 10px;
}

.maintenance-card p strong {
  color: #ff7417;
  font-weight: 800;
}

.maintenance-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maintenance-card li {
  position: relative;
  padding-left: 12px;
  color: #fff;
}

.maintenance-card li+li {
  margin-top: 4px;
}

.maintenance-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  background: #ff7417;
  border-radius: 50%;
}


/* ==========================================================
   Tablet
========================================================== */

@media (max-width:1100px) {

  .maintenance-services__grid,
  .maintenance-services__grid--first {
    grid-template-columns: repeat(2, 1fr);
  }

  .maintenance-card--stats {
    grid-column: 1 / -1;
  }
}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width:640px) {
  .maintenance-services {
    padding-top: 32px;
  }

  .maintenance-services__heading {
    text-align: left;
  }

  .maintenance-row {
    grid-template-columns: 7px 1fr;
    gap: 14px;
  }

  .maintenance-row__bar {
    width: 7px;
  }

  .maintenance-services__grid,
  .maintenance-services__grid--first {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .maintenance-card,
  .maintenance-card--stats {
    min-height: auto;
    padding: 22px 20px;
  }

  .maintenance-card h3 {
    text-align: left;
  }
}

/* =========================================================
   Maintenance Gallery Field
   ========================================================= */
.maintenance-gallery {
  margin-top: clamp(34px, 5vw, 62px);
  overflow: hidden;
}

.maintenance-gallery .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.maintenance-gallery img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.maintenance-gallery .swiper-button-prev,
.maintenance-gallery .swiper-button-next {
  color: #fff;
}

.maintenance-gallery .swiper-pagination-bullet {
  background: #fff;
  opacity: .4;
}

.maintenance-gallery .swiper-pagination-bullet-active {
  opacity: 1;
}


/* =========================================================
   Case Studies
   ========================================================= */

.commercial-cases {
  padding: clamp(34px, 5vw, 62px) 0 clamp(46px, 6vw, 76px);
}

.commercial-section-title--cases {
  margin-bottom: 28px;
}

.commercial-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
  margin-inline: auto;
}

.commercial-case-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 15px;
  background: #111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  border: 1px solid #6e6c6c;
}

.commercial-case-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.commercial-case-card a:hover>img {
  transform: scale(1.045);
  filter: grayscale(0.75);
}

.commercial-case-card__content {
  position: absolute;
  inset: auto 0px 0px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 15px;
  background: #000;
}

.commercial-case-card__button {
  min-width: 120px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 10px;
  color: #fff;
  border: 1px solid var(--commercial-orange);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  transition: background 0.22s ease, color 0.22s ease;
}

.commercial-case-card__button span {
  width: 16px;
  height: 7px;
  background: var(--commercial-orange);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0% 100%);
}

.commercial-case-card__button:hover,
.commercial-case-card__button:focus-visible {
  background: rgba(255, 116, 23, 0.16);
  outline: none;
}

.commercial-case-card__content h3 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.08;
  font-weight: 600;
  justify-self: end;
  max-width: 175px;
}

.commercial-case-card__content h3:hover {
  color: var(--commercial-orange);
}

.commercial-case-card__content img {
  width: 40px;
  height: 30px;
  object-fit: contain;
  justify-self: center;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .commercial-hero__inner {
    grid-template-columns: 1fr;
  }

  .commercial-cases__grid {
    max-width: 680px;
  }

  .commercial-cases__grid {
    gap: 28px 22px;
  }
}

@media (max-width: 640px) {
  .commercial-container {
    width: 100%;
  }

  .commercial-hero {
    padding-top: 46px;
  }

  .commercial-hero__title,
  .commercial-section-title {
    text-align: left;
  }

  .commercial-pillars__grid,
  .commercial-cases__grid {
    grid-template-columns: 1fr;
  }

  .commercial-pillar-card,
  .commercial-pillar-card:nth-child(1),
  .commercial-pillar-card:nth-child(2),
  .commercial-pillar-card:nth-child(4),
  .commercial-pillar-card:nth-child(5) {
    border-radius: 16px;
  }

  .commercial-pillars__badge {
    display: none;
  }

  .commercial-case-card__content {
    inset: auto 12px 10px;
  }
}


/* ── 15. ACCESSIBILITY ────────────────────────────────────── */

:focus-visible {
  outline: 2px solid #f47a21;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   SHARED SECTION STRUCTURE
   ============================================================ */

.og-section {
  display: flex;
  align-items: stretch;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}


/* Alternating background: odd = white, even = light grey */

.og-section--projects {
  background: #ffffff;
}

.og-section--systems {
  background: #f4f4f4;
}

.og-section--service {
  background: #ffffff;
}


/* ── Media panel ──────────────────────────────────────────── */

.og-section__media {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

.og-section__media--left {
  order: 1;
}

.og-section__media--right {
  order: 2;
}


/* ── Content panel ────────────────────────────────────────── */

.og-section__content {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.og-section__content--left {
  order: 1;
  justify-content: flex-end;
  padding-right: 0;
}

.og-section__content--right {
  order: 2;
  justify-content: flex-start;
}

.og-section__content-inner {
  max-width: 420px;
  padding: 0 48px;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.og-section__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 18px;
}

.og-heading-accent {
  color: #e87722;
}

.og-section__body {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 14px;
}

.og-section__body--footnote {
  font-size: 0.83rem;
  color: #555555;
  margin-top: 16px;
  margin-bottom: 0;
}


/* ── List ─────────────────────────────────────────────────── */

.og-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

.og-list li {
  font-size: 0.88rem;
  color: #333333;
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}

.og-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #e87722;
  border-radius: 50%;
}


/* =========================================================
   Systems & Service Section
   ========================================================= */

.systems-service-section {
  position: relative;
  padding: 0 24px clamp(46px, 6vw, 76px);
  color: #ffffff;
}

.systems-service__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 86px) clamp(40px, 8vw, 120px);
  margin-inline: auto;
}

.systems-service__grid {
  position: relative;
  margin-top: clamp(34px, 5vw, 62px);
}

.systems-service__grid:nth-child(even)>*:first-child {
  order: 2;
}

.systems-service__grid:nth-child(even)>*:last-child {
  order: 1;
}




/* =========================================================
   Images
   ========================================================= */

.systems-service__image {
  overflow: hidden;
  border-radius: 33px;
  background: #151515;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  -o-border-radius: 33px;
}

.systems-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
}


/* =========================================================
   Content
   ========================================================= */

.systems-service__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.systems-service__content::after {
  background: var(--side-logo) no-repeat center;
  position: absolute;
  top: 50%;
  width: 440px;
  height: 488px;
  position: absolute;
  content: "";
  background-size: cover;
  transform: translateY(-50%);
  z-index: -1;
}

.systems-service__grid:nth-child(odd) .systems-service__content::after {
  right: -24px;
}

.systems-service__grid:nth-child(2n) .systems-service__content::after {
  left: -24px;
  transform: rotateY(180deg) translateY(-50%);
}

.systems-service__grid:nth-child(odd) .systems-service__content {
  padding-right: 100px;
}

.systems-service__grid:nth-child(even) .systems-service__content {
  padding-left: 100px;
  justify-self: end;
}

.systems-service__content h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(36px, 4.55vw, 46px);
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.systems-service__content h2 span {
  color: #ff7417;
  font-weight: 600;
}

.systems-service__content p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.86);
}

.systems-service__content ul {
  margin: 0 15px 10px;
  padding: 0;
  list-style: none;
}

.systems-service__content li {
  position: relative;
  padding-left: 8px;
  color: #FFF;
}

.systems-service__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff7417;
}


/* =========================================================
   Orange Accent Lines
   ========================================================= */

.systems-service__accent {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 180px;
  min-height: 180px;
  border-radius: 999px;
  background: #ff7417;
  transform: translateY(-50%);
}

.systems-service__grid:nth-child(odd) .systems-service__accent {
  right: 15px;
}

.systems-service__grid:nth-child(even) .systems-service__accent {
  left: 15px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1200px) {
  .systems-service__grid {
    gap: clamp(30px, 7vw, 70px) clamp(30px, 8vw, 40px);
  }
}

@media (max-width: 900px) {
  .systems-service__grid {
    gap: 30px;
  }

  .systems-service__grid:nth-child(2n+1) .systems-service__content {
    padding-right: 20px;
  }


  .systems-service__grid:nth-child(2n) .systems-service__content {
    padding-left: 20px;
  }

  .systems-service__grid:nth-child(2n) .systems-service__accent {
    left: 0;
  }

  .systems-service__grid:nth-child(2n+1) .systems-service__accent {
    right: 0;
  }

  .systems-service__content {
    max-width: none;
  }

  .systems-service__content::after {
    width: 206px;
    height: 230px;
  }
}

@media (max-width: 768px) {
  .systems-service__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .systems-service__grid:nth-child(2n)> :first-child,
  .systems-service__grid:nth-child(2n)> :last-child {
    order: inherit;
  }

  .systems-service__content {
    padding-left: 22px;
    padding-right: 0 !important;
    justify-self: stretch;
  }

  .systems-service__accent {
    left: 0;
    right: auto;
  }

  .systems-service__grid:nth-child(2n) .systems-service__content::after {
    right: 0;
    left: inherit;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

}


/* =========================================================
   Contact Page
   ========================================================= */

.contact-page {
  --contact-orange: #ff7417;
  --contact-white: #ffffff;
  --contact-muted: rgba(255, 255, 255, 0.78);
  --contact-border: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  color: var(--contact-white);
  background: #000;
}


/* =========================================================
   Contact Hero Background
   ========================================================= */

.contact-hero {
  position: relative;
  padding: clamp(40px, 6vw, 70px) 0 clamp(75px, 7vw, 150px);
  background: rgba(0, 0, 0, 0.82);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/contact-page-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 0;
  opacity: 0.4;
}

.contact-container {
  /* width: min(100% - 42px, 1172px); */
  width: min(100% - 48px);
  margin-inline: auto;
  position: relative;
}

.contact-page__title {
  margin: 0 0 32px;
  color: var(--contact-white);
  font-size: clamp(42px, 4.55vw, 52px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -1px;
}

.contact-page__title span {
  color: var(--contact-orange);
  font-weight: 600;
}


/* =========================================================
   Contact Main Grid
   ========================================================= */

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}


/* =========================================================
   Contact Form Card
   ========================================================= */

.contact-form-card {
  min-height: 668px;
  padding: 35px 30px 42px;
  border: 1px solid var(--contact-border);
  border-radius: 28px;
  background: #000;
}

.contact-form-card__heading {
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.contact-form-card__heading p {
  margin: 0;
  color: var(--contact-white);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
  font-weight: 300;
}

.contact-form-card__heading h2 {
  margin: 0;
  color: var(--contact-orange);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 600;
}

.contact-form-card__heading span {
  display: block;
  margin-top: 14px;
  color: var(--contact-white);
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
}


/* =========================================================
   Contact Info Area
   ========================================================= */

.contact-info-area {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  min-height: 330px;
  padding: 42px 44px;
  border: 1px solid var(--contact-border);
  border-radius: 28px;
  background: #000;
}

.contact-info-card h2 {
  margin: 0 0 26px;
  color: var(--contact-white);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 300;
}

.contact-info-card h2 span {
  color: var(--contact-orange);
  font-weight: 600;
}

.contact-info-card address,
.contact-info-card p {
  margin: 0 0 10px 0;
  color: var(--contact-white);
  font-size: clamp(16px, 1.15vw, 17px);
  line-height: 1.25;
  font-style: normal;
}

.contact-info-card address {
  margin: 0 0 10px;
}

.contact-info-card .hours {
  margin: 10px 0 0px;
}

.contact-info-card a {
  color: var(--contact-orange);
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-image-card {
  overflow: hidden;
  min-height: 330px;
  border-radius: 22px;
  background: #151515;
}

.contact-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}


/* =========================================================
   Map
   ========================================================= */

.contact-map {
  width: 100%;
  height: clamp(330px, 32vw, 430px);
  background: #e9e6dc;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    min-height: auto;
  }

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

  .contact-info-card,
  .contact-image-card {
    min-height: 300px;
  }

  .contact-image-card img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .contact-container {
    width: min(100% - 28px, 520px);
  }

  .contact-page__title {
    margin-bottom: 22px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

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

  .contact-form-card input[type="text"],
  .contact-form-card input[type="email"],
  .contact-form-card input[type="tel"] {
    min-height: 50px;
  }

  .contact-form-card textarea {
    min-height: 138px;
  }

  .contact-map {
    height: 340px;
  }
}


/* =========================================================
   Client Testimonials Page Section
   ========================================================= */

.client-testimonials-section {
  position: relative;
  padding: clamp(46px, 6vw, 84px) 0;
  color: #ffffff;
  background: #000000;
}

.client-testimonials__title {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: clamp(42px, 4.55vw, 52px);
  line-height: 1;
  font-weight: 300;
}

.client-testimonials__title span {
  color: #ff7417;
  font-weight: 600;
}

.client-testimonials__list {
  display: grid;
  gap: 30px;
}

.client-testimonial-card {
  position: relative;
  padding: 36px 50px 35px;
  color: #ffffff;
  background: #030303;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 33px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  -o-border-radius: 33px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  -webkit-transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  -moz-transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  -ms-transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  -o-transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.client-testimonial-card:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.32);
  transform: translate(8px, -8px);
  -webkit-transform: translate(8px, -8px);
  -moz-transform: translate(8px, -8px);
  -ms-transform: translate(8px, -8px);
  -o-transform: translate(8px, -8px);
}

.client-testimonial-card__quote {
  position: absolute;
  top: -17px;
  right: 30px;
  display: block;
  width: 35px;
  height: 29px;
  background-image: url("../img/card__quote.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  display: none;
}

.client-testimonial-card__logo {
  min-height: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.client-testimonial-card__logo img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  margin-bottom: 5px;
}

.client-testimonial-card__logo--text {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}

.client-testimonial-card>p {
  margin: 0 0 14px;
  color: #FFF;
}

.client-testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.client-testimonial-card__rating span {
  color: #ff7417;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
}

.client-testimonial-card__rating strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
}

.client-testimonial-card__meta h3 {
  margin: 0;
  color: #ffffff;
}

.client-testimonial-card__meta p {
  margin: 1px 0 0;
  color: #FFF;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 767px) {
  .client-testimonials__list {
    max-width: none;
  }

  .client-testimonial-card {
    padding: 24px 22px 22px;
    border-radius: 16px;
  }

  .main-container {
    padding-top: 70px;
  }
}


/* =========================================================
   Our Story Page
   ========================================================= */

.commercial-hero.our_story {
  padding: clamp(34px, 5vw, 62px) 0 clamp(90px, 9vw, 180px);
  position: relative;
}

.our_story .commercial-hero__inner {
  position: relative;
}

/* .our_story__bg {
  position: absolute;
  inset: 0;
  background: url("../img/contact-page-bg.jpg") center / contain repeat;
  opacity: .4;
} */