.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--white-color);
}

.btn-outline:hover {
  border-color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}
/*

African Eyeball - Custom Stylesheet

African Eyeball — software, product, and design

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                #ffffff;
  --primary-color:              #f97316;
  --primary-color-rgb:          249, 115, 22;
  --secondary-color:            #7c3aed;
  --section-bg-color:           #0f172a;
  --surface-color:              rgba(255, 255, 255, 0.04);
  --glass-color:                rgba(15, 23, 42, 0.6);
  --dark-color:                 #020617;
  --grey-color:                 #94a3b8;
  --p-color:                    #cbd5f5;

  --body-font-family:           'Inter', 'Space Grotesk', sans-serif;

  --h5-font-size:               24px;
  --p-font-size:                18px;
  --copyright-text-font-size:   15px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           600;
  --font-weight-black:          800;

  --shadow-soft:                0 20px 60px rgba(15, 23, 42, 0.35);
  --shadow-card:                0 30px 80px rgba(2, 6, 23, 0.55);
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  overflow-x: clip;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background:
      radial-gradient(circle at top right, rgba(124, 58, 237, 0.25), transparent 45%),
      radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.35), transparent 40%),
      #020617;
    font-family: var(--body-font-family);
    color: var(--white-color);
    position: relative;
    min-height: 100vh;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Never let media overflow the viewport */
img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

iframe,
embed,
object {
  max-width: 100%;
}

table {
  max-width: 100%;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

main {
  overflow-x: clip;
}

/* Bootstrap columns: allow flex/grid children to shrink so text wraps instead of overlapping */
.row > [class*="col-"] {
  min-width: 0;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: clamp(1.75rem, 4.2vw + 0.85rem, 4rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw + 0.85rem, 2.625rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.3rem, 1.8vw + 0.75rem, 2.25rem);
  line-height: 1.2;
}

h4 {
  font-size: clamp(1.15rem, 1.2vw + 0.85rem, 2rem);
  line-height: 1.25;
}

h5 {
  font-size: clamp(1.05rem, 0.8vw + 0.85rem, 1.5rem);
  line-height: 1.3;
}

h6 {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.25rem);
  line-height: 1.35;
}

p {
  color: var(--p-color);
  font-size: clamp(0.95rem, 0.35vw + 0.88rem, var(--p-font-size));
  font-weight: var(--font-weight-light);
  line-height: 1.7;
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--white-color);
  text-decoration: none;
}

a:hover {
  color: rgba(var(--primary-color-rgb), 0.9);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-thin);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.preloader .spinner img {
  display: block;
  max-width: min(200px, 70vw);
  width: auto;
  height: auto;
  margin: 0 auto;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}

/*---------------------------------------
  CUSTOM BUTTON & ICON              
-----------------------------------------*/
.custom-btn {
  background: linear-gradient(120deg, var(--primary-color), rgba(var(--primary-color-rgb), 0.65));
  border: none;
  border-radius: 999px;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  box-shadow: var(--shadow-soft);
}

.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--white-color);
  color: var(--dark-color);
  box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.4);
}

.custom-icon {
  color: var(--p-color);
  font-size: 24px;
}

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

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}

/*---------------------------------------
  DIV SEPARATOR               
-----------------------------------------*/
.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}

/*---------------------------------------
  FULL IMAGE               
-----------------------------------------*/
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (max-width: 991.98px) {
  .full-image-img {
    min-width: 0;
    max-width: 100%;
    position: relative;
    bottom: 0;
    right: auto;
  }
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.navbar {
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  max-width: min(1400px, calc(100vw - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  width: calc(100% - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  margin: 18px auto 0;
  margin-top: max(12px, env(safe-area-inset-top, 0px));
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 11px 22px;
  z-index: 1030;
  will-change: transform;
  transition: transform 300ms linear;
  box-shadow: 0 14px 44px rgba(2, 6, 23, 0.42);
  box-sizing: border-box;
}

h2 span,
h4 span {
  color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 10px 22px;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -100%);
}

.navbar-brand {
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

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

.navbar-brand img,
.navbar-brand__mark {
  border-radius: 10px;
  background-color: transparent;
  width: auto !important;
  height: 38px !important;
  max-height: 38px;
  max-width: min(148px, 38vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .navbar-brand img,
  .navbar-brand__mark {
    height: 40px !important;
    max-height: 40px;
    max-width: min(168px, 42vw);
  }
}

@media (min-width: 992px) {
  .navbar-brand img,
  .navbar-brand__mark {
    height: 44px !important;
    max-height: 44px;
    max-width: min(200px, 28vw);
  }
}

.navbar-brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  line-height: 1.12;
}

.navbar-brand-wordmark__line {
  font-family: "Space Grotesk", var(--body-font-family);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: var(--white-color);
  white-space: nowrap;
}

.navbar-brand-wordmark__sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.12rem;
}

@media (max-width: 374px) {
  .navbar-brand-wordmark__sub {
    display: none;
  }
}

.navbar[class*="navbar-expand-"] .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 0.45rem;
  margin-left: 0.45rem;
}

.nav-link {
  color: var(--white-color);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

@media (min-width: 1400px) {
  .nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }
}

/* Mid-width desktops: stack links under logo so nothing overlaps the wordmark */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar[class*="navbar-expand-"] .navbar-collapse {
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    order: 3;
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar[class*="navbar-expand-"] .navbar-collapse .navbar-nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.35rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navbar[class*="navbar-expand-"] .navbar-collapse .d-flex.align-items-center {
    justify-content: center;
    width: 100%;
  }
}

.navbar .nav-link::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grey-color);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar .nav-link.active::after, 
.navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

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

.nav-link:focus, 
.nav-link:hover {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus-visible {
  outline: 2px solid rgba(var(--primary-color-rgb), 0.55);
  outline-offset: 2px;
}

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: rgba(255, 255, 255, 0.95);
  transition: background 10ms 300ms ease;
  display: block;
  width: 22px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  width: 22px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -7px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 7px;
}

@media (max-width: 991.98px) {
  /* Keep wordmark from painting over the menu control (steals taps) */
  .navbar[class*="navbar-expand-"] .navbar-brand {
    max-width: calc(100% - 3.5rem);
    overflow: hidden;
  }

  .navbar[class*="navbar-expand-"] .navbar-toggler {
    position: relative;
    z-index: 5;
  }

  .navbar-brand-wordmark__line {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--section-bg-color);
  position: relative;
  overflow: hidden;
  margin-top: 78px;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: 100vh;
  }
}

.slick-slideshow {
  margin-top: 78px;
}

.slick-title {
  color: var(--white-color);
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  width: 100%;
  object-fit: cover;
}

.slick-bottom {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-bottom .container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
}

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }
}

.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--white-color);
}

/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
}

.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 5rem 7rem;
}

.slick-testimonial-caption::before {
  content: open-quote;
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--dark-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.featured {
  background: var(--section-bg-color);
}

/*---------------------------------------
  ABOUT               
-----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about .nav-pills .nav-link {
  color: var(--grey-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--grey-color);
  border-radius: 0;
  padding-right: 0;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active, 
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  border-top: 1px solid rgba(0,0,0,.125);
}

.accordion-button {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding-top: 1.5rem;
  padding-right: 0;
  padding-bottom: 1.5rem;
  padding-left: 0;
}

.accordion-body {
  padding: 2rem 0;
}

/*---------------------------------------
  TEAM MEMBERS               
-----------------------------------------*/
.team {
  background: var(--grey-color);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: .25rem;
  padding: 42px 32px;
}

.team-info {
  width: 100%;
}

.custom-modal-btn {
  background: var(--grey-color);
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*---------------------------------------
  SKILL - PROGRESS BAR               
-----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
}

.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product {
  background: var(--section-bg-color);
}

.product-thumb {
  background: var(--white-color);
  position: relative;
  transition: all 0.5s ease-out;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Flush preview on top of package / catalogue cards (inside .surface-card) */
.package-card-media {
  margin: -2rem -2rem 1.25rem -2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 23px 23px 0 0;
}

.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.surface-card.p-4 > .package-card-media:first-child {
  margin: -1.5rem -1.5rem 1.25rem -1.5rem;
  width: calc(100% + 3rem);
  max-width: none;
  border-radius: 22px 22px 0 0;
}

.product-card__body {
  padding: 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
  transition: all 0.5s ease-out;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

/* Brand / logo / flyer / web gallery pages — uniform tiles, no overflow */
.products-showcase {
  background: transparent;
}

.products-showcase .product-thumb {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.products-showcase .product-thumb:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
}

.products-showcase .product-thumb > a {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
}

.products-showcase--logos .product-thumb > a {
  aspect-ratio: 1 / 1;
}

.products-showcase .product-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
  transition: transform 0.35s ease;
}

.products-showcase .product-thumb:hover img {
  transform: scale(1.03);
}

.products-showcase .product-thumb:hover .product-image {
  box-shadow: none;
}

.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--white-color);
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  font-size: var(--product-link-font-size);
}

.view-all {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: #010409;
  padding-top: 6rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  display: block;
  width: 50%;
}

.footer-menu-link {
  color: #6c757d;
  font-weight: var(--font-weight-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
}

.site-footer .social-icon-link {
  margin-top: 4px;
}

.site-footer .social-icon-link:hover,
.footer-menu-link:hover {
  color: var(--white-color);
}

.copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #6c757d;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/* X (Twitter) — simple vector mark, aligned with other social icons */
.social-icon-link.social-icon-link--x {
  position: relative;
  width: 2.375rem;
  height: 2.375rem;
  margin-right: 15px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.social-icon-link.social-icon-link--x::before {
  content: "" !important;
  display: block !important;
  width: 1.0625rem;
  height: 1.0625rem;
  margin: 0 !important;
  vertical-align: unset !important;
  line-height: 0 !important;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.social-icon-link.social-icon-link--x:hover {
  background-color: rgba(255, 255, 255, 0.07);
}

/*---------------------------------------
  MODERN COMPONENTS              
-----------------------------------------*/
.hero {
  margin-top: 118px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero__content {
  padding-right: 1rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white-color);
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.hero__cta .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s, border-color 0.3s;
}

.hero__cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-color);
}

.hero__metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__metrics li {
  min-width: 120px;
}

.hero__metrics strong {
  display: block;
  font-size: 2rem;
  color: var(--white-color);
}

.hero__metrics span {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__visual {
  position: relative;
  padding: 2rem;
}

.hero__visual::after,
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(var(--primary-color-rgb), 0.35), rgba(124,58,237,0.25));
  filter: blur(55px);
  z-index: -2;
}

.hero__visual::before {
  inset: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  z-index: -1;
}

.hero__visual-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2.5rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
}

.surface-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  overflow-x: clip;
}

.surface-card h5 {
  color: var(--white-color);
  margin-top: 1rem;
}

.stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.stack-badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.home-showreel__frame {
  position: relative;
  margin-inline: auto;
  max-width: 960px;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 640px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 1));
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.55);
}

.home-showreel__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #020617;
}

.home-showreel__video:focus {
  outline: none;
}

.home-showreel__video:focus-visible {
  outline: 2px solid rgba(var(--primary-color-rgb), 0.55);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .home-showreel__frame {
    border-radius: 16px;
    max-height: min(58vh, 420px);
  }
}

.home-showreel__fallback {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.news-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card__tag {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.news-card__title {
  color: var(--white-color);
  font-size: 1.2rem;
}

.news-card__meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.news-card__datetime {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.news-card__datetime-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__datetime-item i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.news-card__datetime-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.filter-bar {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.filter-group > span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
}

.filter-buttons {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white-color);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.6);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.85), rgba(124,58,237,0.9));
  border-radius: 32px;
  padding: 4rem;
  color: var(--white-color);
  box-shadow: var(--shadow-card);
}

.cta-panel h2 {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.cta-panel .cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-panel .ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white-color);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 3rem;
  margin-top: 40px;
}

.auth-panel {
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  width: 100%;
  max-width: 960px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.auth-panel__body {
  padding: 3.5rem;
}

.auth-panel__side {
  background: linear-gradient(160deg, rgba(var(--primary-color-rgb), 0.85), rgba(124,58,237,0.9));
  color: var(--white-color);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-panel__side h3 {
  color: var(--white-color);
}

.form-floating .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white-color);
}

.form-floating label {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  border-color: rgba(var(--primary-color-rgb), 0.6);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
}

.social-login {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  font-weight: 500;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(var(--primary-color-rgb), 0.35), transparent 45%);
  z-index: 0;
}

.site-footer .container,
.site-footer marquee {
  position: relative;
  z-index: 2;
}

.site-footer marquee {
  margin-top: 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  RESPONSIVE STYLES ADDITIONS              
-----------------------------------------*/
@media (max-width: 991px) {
  .navbar {
    border-radius: 16px;
    margin: 12px auto 0;
    padding: 10px 16px;
  }

  .hero {
    text-align: center;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__cta,
  .hero__metrics {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 2.5rem;
  }

  .auth-panel__body,
  .auth-panel__side {
    padding: 2.5rem;
  }

  .cta-panel {
    padding: 2.5rem;
  }
}

@media (max-width: 575px) {
  .navbar {
    margin: 10px auto 0;
    padding: 9px 14px;
    border-radius: 14px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .auth-panel__body,
  .auth-panel__side {
    padding: 2rem;
  }

  .hero {
    margin-top: 82px;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
    text-align: left;
  }

  .hero__title {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    line-height: 1.25;
    word-wrap: break-word;
  }

  .hero__description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero__visual {
    padding: 1.1rem;
    margin-top: 1.4rem;
  }

  .hero__visual-card {
    padding: 1.4rem;
    min-height: auto;
  }

  .hero__metrics strong {
    font-size: 1.5rem;
  }

  .pill-badge {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .news-card img,
  .product-card img {
    height: auto;
    max-height: 230px;
  }

  .gallery-grid img {
    max-height: 230px;
  }

  .cta-panel {
    padding: 2rem;
  }
}

.floating-cta {
  position: fixed;
  right: max(24px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  background: rgba(2,6,23,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 1.5rem;
  width: 260px;
  max-width: calc(100vw - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: var(--shadow-card);
  z-index: 1040;
}

.floating-cta--visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}

.floating-cta p {
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .floating-cta {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
  }
}
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    margin-bottom: 0;
  }

  .lead {
    font-size: 16px;
  }

  .navbar[class*="navbar-expand-"] .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
  }

  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }

}

/* --- Studio polish: focus, selection, footer strip --- */
:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.85);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: rgba(249, 115, 22, 0.35);
  color: var(--white-color);
}

.site-footer__strip {
  text-align: center;
  padding: 0.85rem max(1rem, env(safe-area-inset-left, 0px)) 0.85rem max(1rem, env(safe-area-inset-right, 0px));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.5);
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.navbar .d-flex.align-items-center.gap-3 {
  row-gap: 0.5rem;
}

/* Uniform image frames for service / capability cards */
.capability-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1.25rem;
}

.capability-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*---------------------------------------
  MOBILE, TABLET & NOTCH-SAFE LAYOUT              
-----------------------------------------*/

@media (max-width: 1199.98px) {
  .cta-panel {
    padding: 2.5rem 1.75rem;
  }

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

@media (max-width: 1199.98px) and (min-width: 576px) {
  .hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
  }
}

@media (max-width: 991.98px) {
  .navbar {
    border-radius: 16px;
    padding: 10px 16px;
  }

  /* Legacy service pages: logo row + toggler wrap; menu uses full width below */
  .navbar[class*="navbar-expand-"] > .container.flex-wrap > .navbar-collapse {
    flex-basis: 100%;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: min(70vh, calc(100dvh - 140px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar[class*="navbar-expand-"] .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .navbar[class*="navbar-expand-"] .navbar-nav .nav-link {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.65rem 0;
    text-align: center;
  }

  .navbar .d-flex.align-items-center.gap-3 {
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .navbar .d-flex.align-items-center.gap-3 .custom-btn,
  .navbar .d-flex.align-items-center.gap-3 .btn-outline {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }

  .hero .row {
    --bs-gutter-x: 1.25rem;
  }

  .hero__content {
    padding-right: 0;
    padding-left: 0;
  }

  .hero__description,
  .hero__title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  .hero__visual {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .hero__visual-card {
    min-height: auto !important;
    padding: 1.5rem !important;
  }

  .pill-badge {
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .surface-card {
    padding: 1.5rem;
  }

  .package-card-media {
    margin: -1.5rem -1.5rem 1.25rem -1.5rem;
    width: calc(100% + 3rem);
    max-width: none;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 12px;
  }

  .header-image {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    object-fit: cover;
    margin-top: 1.5rem;
    border-radius: 20px;
  }

  .site-header.section-padding-img {
    padding-bottom: 2rem;
  }

  .front-product .row > [class*="col-"] {
    margin-bottom: 0;
  }

  .front-product img.img-fluid {
    width: 100%;
    display: block;
  }
}

@media (max-width: 767.98px) {
  .lead {
    font-size: 1.05rem;
  }

  .section-padding,
  .section-padding.pt-0 {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .container {
    padding-left: max(var(--bs-gutter-x, 0.75rem), env(safe-area-inset-left, 0px));
    padding-right: max(var(--bs-gutter-x, 0.75rem), env(safe-area-inset-right, 0px));
  }

  .news-card__title {
    font-size: 1.05rem;
  }

  .news-card img {
    height: auto;
    min-height: 180px;
    max-height: 240px;
  }

  .hero__metrics {
    gap: 1.25rem;
    justify-content: flex-start;
  }

  .hero__metrics li {
    min-width: 0;
    flex: 1 1 45%;
  }

  .custom-btn,
  .btn-outline,
  .ghost-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .floating-cta {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  }
}

/* About reviews carousel: edge-to-edge gutters on larger screens only */
.about-reviews-slider {
  margin-left: -12px;
  margin-right: -12px;
}

@media (max-width: 575.98px) {
  .about-reviews-slider {
    margin-left: 0;
    margin-right: 0;
  }

  .about-reviews-slider .slick-slide {
    padding: 0 6px;
  }
}

/* Skip link (accessibility) — used on all pages */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--primary-color);
  color: #fff !important;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0;
  text-decoration: none;
}
.skip-link:focus {
  left: max(0.5rem, env(safe-area-inset-left, 0px));
  top: max(0.5rem, env(safe-area-inset-top, 0px));
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.site-footer__strip a:hover {
  color: var(--primary-color) !important;
}

/* --- Viewport fit: stack footer columns, flex safety --- */
@media (max-width: 991.98px) {
  .site-footer .row > [class*="col-"]:not(.col-12) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.surface-card,
.cta-panel,
.news-card,
.package-card {
  min-width: 0;
}

.blog-content img,
.prose img,
article img {
  max-width: 100%;
  height: auto;
}

/* Google AdSense — home placements (shown only when slots are configured in js/adsense-slots.js) */
.site-ad-slot-section .site-ad-slot__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.65rem;
  text-align: center;
}

.site-ad-slot-section .site-ad-slot__host {
  min-height: 0;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.site-ad-slot-section:not(.d-none) .site-ad-slot__host {
  min-height: 90px;
}

