/* ==========================================================================
   YAS Marketing - CSS Variables & Reset
   ========================================================================== */
   @font-face {
    font-family: 'Allison';
    src: url('../fonts/AllisonScript-Regular.eot');
    src: local('Allison Script Regular'), local('AllisonScript-Regular'),
      url('../fonts/AllisonScript-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/AllisonScript-Regular.woff2') format('woff2'),
      url('../fonts/AllisonScript-Regular.woff') format('woff'),
      url('../fonts/AllisonScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Vogue';
    src: url('../fonts/Vogue-Regular.eot');
    src: local('Vogue Regular'), local('Vogue-Regular'),
      url('../fonts/Vogue-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Vogue-Regular.woff2') format('woff2'),
      url('../fonts/Vogue-Regular.woff') format('woff'),
      url('../fonts/Vogue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  
  :root {
    /* Colors */
    --color-primary: #f44545;
    /* Example red accent */
    --color-dark: #000000;
    --color-light: #ffffff;
    --color-gray: #cccccc;
  
  
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-script: 'Allison', cursive;
    --font-title: 'Vogue', sans-serif;
  
    /* Transitions & Animation */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --duration-reveal: 0.85s;
    --reveal-duration: 0.95s;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-distance: 40px;
  
    --padding: 110px;
  }
  
  /* Scroll reveal (driven by script.js + .reveal-visible) */
  .reveal-item {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
    transition:
      opacity var(--reveal-duration) var(--reveal-ease),
      transform var(--reveal-duration) var(--reveal-ease);
  }
  
  .reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  
  .reveal-fade {
    opacity: 0;
    transition: opacity 1s var(--reveal-ease);
  }
  
  .reveal-fade.reveal-visible {
    opacity: 1;
  }
  
  @media (prefers-reduced-motion: reduce) {
  
    .reveal-item,
    .reveal-fade {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
  
  /* Reset */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    color: var(--color-light);
    background-color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  body.is-loading {
    overflow: hidden;
  }
  
  /* Full-page loader — same brand assets as header (.logo-img / .logo-icon) */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
  }
  
  .page-loader__brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-loader__logo--word {
    height: 48px;
    width: auto;
    margin-inline-end: 10px;
    display: block;
    animation: page-loader-word-pulse 1.8s ease-in-out infinite;
    margin: 0;
    margin-inline-end: 12px;
  }
  
  .page-loader__logo--icon {
    height: 48px;
    width: auto;
    display: block;
    transform-origin: center bottom;
    animation: logo-icon-jack-cycle 5s infinite ease-in-out;
    will-change: transform, opacity;
  }
  
  @keyframes page-loader-word-pulse {
  
    0%,
    100% {
      opacity: 0.88;
    }
  
    50% {
      opacity: 1;
    }
  }
  
  .page-loader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.5s var(--ease-out-quart),
      visibility 0s linear 0.5s;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .page-loader__logo--word {
      animation: none;
    }
  
    .page-loader__logo--icon {
      animation: none;
      will-change: auto;
    }
  
    .page-loader {
      transition: opacity 0.2s ease;
    }
  
    .page-loader--hide {
      transition: opacity 0.2s ease;
    }
  }
  
  body.page-loaded .hero,
  body.page-loaded .header {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  img {
    max-width: 100%;
    margin: auto;
  }
  
  a {
    text-decoration: none !important;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  .section-title {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 34px;
  }
  
  .section-title--center {
    text-align: center;
  }
  
  .font-script {
    font-family: var(--font-script);
    font-size: 150px;
    font-weight: 400;
    text-transform: none;
    color: var(--color-primary);
    line-height: 24px;
  }
  
  .btn {
    display: inline-block;
    padding: 24px 48px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: transform 0.35s var(--ease-out-quart), color var(--transition-normal), background var(--transition-normal), border-color var(--transition-fast);
    cursor: pointer;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    margin: 0;
  }
  
  .btn-solid {
    background-color: var(--color-primary);
    color: var(--color-dark);
  }
  
  .btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }
  
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--color-dark);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.7s var(--ease-out-expo), box-shadow 0.3s ease, opacity 0.6s var(--ease-out-quart),
      background-color 0.35s ease, border-color 0.35s ease;
    z-index: 9999;
  }
  
  body:not(.page-loaded) .header {
    opacity: 0;
    transform: translateY(-16px);
  }
  
  .header.scrolled {
    background-color: #000;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  }
  
  
  .header.scrolled .nav a::after {
    background: var(--color-primary);
  }
  
  .header.scrolled .menu-btn span {
    background: #fff;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 40px;
    margin-inline-end: 8px;
  }
  
  /* jackInTheBox (from animate.css) over 10s, then idle 20s — 30s total loop */
  @keyframes logo-icon-jack-cycle {
    0% {
      opacity: 0;
      transform: scale(0.1) rotate(30deg);
      transform-origin: center bottom;
    }
  
    16.665% {
      transform: rotate(-10deg);
    }
  
    23.331% {
      transform: rotate(3deg);
    }
  
    33.33% {
      opacity: 1;
      transform: scale(1);
    }
  
    33.34%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .logo-icon {
    height: 40px;
    width: auto;
    display: block;
    transform-origin: center bottom;
    animation: logo-icon-jack-cycle 5s infinite ease-in-out;
    will-change: transform, opacity;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .logo-icon {
      animation: none;
      will-change: auto;
    }
  }
  
  .nav {
    display: flex;
    gap: 2rem;
  }
  
  .nav a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    color: #fff;
  }
  
  .nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
  }
  
  .nav a.active,
  .nav a:hover {
    color: var(--color-primary);
  }
  
  .nav a.active:after,
  .nav a:hover::after {
    width: 100%;
  }
  
  .menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    outline: none !important;
  }
  
  .menu-btn span {
    display: block;
    width: 32px;
    height: 4px;
    background: #FFF;
    transition: var(--transition-fast);
    border-radius: 25px;
  }
  
  main {
    margin-top: 105px;
  }
  
  .main_section {
    padding: 0 !important;
    height: calc(100vh - 105px);
  }
  
  .main_section .carousel,
  .main_section .carousel-item,
  .main_section .carousel-inner {
    height: 100%;
  }
  
  .main_section .carousel img,
  .main_section .carousel-item img,
  .main_section .carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  
  /* Animate.css v4 keyframes + legacy class names used in HTML */
  .main_section .animated {
    animation-fill-mode: both;
  }
  
  .main_section .animated.zoomIn {
    animation-name: zoomIn;
  }
  
  .main_section .animated.fadeInUp {
    animation-name: fadeInUp;
  }
  
  .carousel-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    padding: 0;
    text-align: start;
    font-size: 84px;
    width: 100%;
    max-width: 740px;
    line-height: 85px;
    margin: auto;
    height: 100%;
    right: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    padding-inline-start: 54px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 80%) 50%, transparent);
    flex-direction: column;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  body:not(.page-loaded) .main_section {
    opacity: 0;
  }
  
  body.page-loaded .main_section {
    opacity: 1;
    transition: opacity 1s var(--ease-out-expo);
  }
  
  .main_section .carousel-indicators {
    right: 0;
    left: 0;
    margin: auto;
    bottom: 30px;
    padding: 0;
  }
  
  .main_section .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    opacity: 1;
    border: 0;
    background-color: #fff;
    border-radius: 0;
    -webkit-transition: 0.3s width linear;
    transition: 0.3s width linear;
  }
  
  .main_section .carousel-indicators li.active {
    width: 25px;
    background-color: #f44545;
  }
  
  .main_section .carousel-control-next,
  .main_section .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    padding: 0;
    background-color: #f44545;
    color: #fff;
    border: 0;
  }
  
  section {
    background-color: var(--color-dark);
    position: relative;
    padding: var(--padding) 0 0;
  }
  
  
  
  .partners-carousel {
    margin-top: 3rem;
    position: relative;
    padding: 0 24px;
  }
  
  .partners-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
  }
  
  .partner-item {}
  
  .partner-item:hover {
    color: var(--color-light);
    transform: scale(1.1);
  }
  
  /* Partners: per-logo entrance when section scrolls into view (see script.js) */
  #clients .partners-carousel .owl-item:not(.cloned) .item.partner-logo-item.reveal-item {
    transform: translate3d(0, 32px, 0) scale(0.93);
    transition:
      opacity 0.8s var(--reveal-ease),
      transform 0.8s var(--reveal-ease);
  }
  
  #clients .partners-carousel .owl-item:not(.cloned) .item.partner-logo-item.reveal-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
  
  .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0;
  }
  
  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    pointer-events: auto;
    /* Re-enable clicks on the buttons */
    background: transparent !important;
    color: var(--color-text-muted) !important;
    border: none !important;
    font-size: 6rem !important;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0 10px !important;
    display: block;
    color: var(--color-primary) !important;
  }
  
  .owl-nav button.owl-prev:hover,
  .owl-nav button.owl-next:hover {
    color: var(--color-primary) !important;
  }
  
  .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
  }
  
  
  .testimonials-carousel {
    margin: 0 auto;
    padding: 0 48px;
  }
  
  .testimonials-carousel .item {
    text-align: center;
    padding: 24px 16px;
  }
  
  .testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    font-style: italic;
  }
  
  .testimonial-author {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
    margin-bottom: 4px;
  }
  
  .testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
  }
  
  .testimonials-carousel .owl-nav button {
    color: var(--color-primary) !important;
  }
  
  .testimonials-carousel .owl-dots {
    margin-top: 24px;
  }
  
  .testimonials-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .testimonials-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary);
  }
  
  
  
  .container-fluid {
    max-width: 94%;
  }
  
  .about .about_head .main_title {
    font-size: 54px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .about .about_head .main_title span {
    display: block;
    line-height: 80px;
  }
  
  .about .about_head {
    margin-bottom: 64px;
  }
  
  .about .about_head .main_title span:nth-child(2) {
    text-align: center;
  }
  
  .about .about_head .main_title span:nth-child(3) {
    text-align: end;
  }
  
  .about .about_head p {
    font-size: 24px;
    max-width: 540px;
    line-height: 42px;
    transform: translateY(-40px);
  }
  
  .about .about_side h3 {
    font-size: 54px;
    font-weight: 600;
    margin: 0 0 34px;
    display: flex;
    align-items: center;
  }
  
  .about .about_side h3 img {
    width: 128px;
    margin-inline-start: 10px;
  }
  
  .about .about_side p {
    margin: 0;
    font-size: 46px;
    line-height: 48px;
    opacity: 70%;
  }
  
  .about .about_side p span {
    display: inline-block;
    margin-inline-start: 16px;
    font-size: 130px;
  }
  
  .about .about_text p {
    margin: 0 0 32px;
    font-size: 20px;
    line-height: 32px;
    opacity: 85%;
    font-weight: 400;
  }
  
  .about .about_text p:last-child {
    margin-bottom: 0;
  }
  
  
  .partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .partners .item {
    width: 25%;
    padding: 16px;
  }
  
  .partner-item {
  
    transition: var(--transition-fast);
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .partner-item:hover {
    color: var(--color-light);
    transform: scale(1.1);
  }
  
  
  .testimonials-carousel {
    margin: 0 auto;
    padding: 0 48px;
  }
  
  .testimonials-carousel .item {
    text-align: center;
    padding: 0 16px;
  }
  
  .testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    font-style: italic;
  }
  
  .testimonial-author {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
    margin-bottom: 4px;
  }
  
  .testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
  }
  
  .testimonials-carousel .owl-nav button {
    color: var(--color-primary) !important;
  }
  
  .testimonials-carousel .owl-dots {
    margin-top: 24px;
  }
  
  .testimonials-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .testimonials-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary);
  }
  
  .projects-intro {
    text-align: center;
    max-width: 940px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: #fff8;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--duration-reveal) var(--ease-out-expo);
    margin-top: 32px;
  }
  
  .project-card-img {
    position: relative;
    width: 100%;
    height: 380px;
    transition: transform 0.6s var(--ease-out-quart);
    overflow: hidden;
  }
  
  .project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    transition: 0.4s linear all;
  }
  
  .project-card h3 {
    display: block;
    margin: 0;
    background-color: #fff1;
    padding: 16px;
    font-size: 24px;
  }
  
  .project-card h3 span {
    display: block;
    font-size: 17px;
    margin-top: 4px;
  }
  
  .project-card-content {
    padding: 24px;
    transition: transform 0.5s var(--ease-out-quart);
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s linear all;
    text-align: center;
    background-color: rgba(0, 0, 0, 88%);
  }
  
  
  .project-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 45px;
  }
  
  .project-card-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 24px;
    text-align: justify;
    letter-spacing: 0.5px;
  }
  
  .project-card-content a {
    line-height: 24px;
    padding: 8px 16px;
    text-transform: uppercase;
    background-color: var(--color-primary);
    font-weight: 500;
  }
  
  .project-card-content a:hover {
    background-color: #fff;
    color: var(--color-primary)
  }
  
  .project-card:hover .project-card-img img {
    transform: scale(1.07) rotate(3deg);
  }
  
  .project-card:hover .project-card-content {
    left: 0;
  }
  
  .projects-cta {
    text-align: center;
    margin-top: 32px;
  }
  
  .map-section {
    padding: 70px;
  }
  
  .map-section img {
    width: 100%;
    transition: opacity 1s var(--ease-out-quart);
  }
  
  .deliver .section-title {
    position: sticky;
    top: 120px;
  }
  
  .deliver .font-script {
    display: block;
  }
  
  .deliver-tagline {
    font-size: 18px;
    text-transform: capitalize;
  }
  
  .services-list {
    padding: 0;
    margin: 0;
  }
  
  .services-list li {
    font-size: 32px;
    font-weight: 400;
    transition: opacity 0.4s var(--ease-out-quart), transform 0.4s var(--ease-out-quart);
    cursor: pointer;
    opacity: 50%;
    letter-spacing: 3px;
  }
  
  .services-list li:hover {
    opacity: 100%;
    transform: translateX(10px);
  }
  
  .stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  
  .stat-num {
    display: block;
    font-size: 94px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 120px;
  }
  
  .stat {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-muted);
  }
  
  .say-yas {
    padding-bottom: var(--padding);
  }
  
  .say-yas-row {
    row-gap: 3rem;
  }
  
  .say-yas-left {
    max-width: 520px;
  }
  
  .say-yas-title {
    margin: 0;
  }
  
  .say-yas-title .font-script {
    display: block;
    line-height: 144px;
    text-transform: capitalize;
  }
  
  .say-yas-title img {
    display: block;
    width: 240px;
  }
  
  .say-yas-tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 360px;
  }
  
  .say-yas-right {}
  
  .say-yas-desc {
    margin: 0 0 2rem;
    line-height: 1.6;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .contact-details {
    display: flex;
    gap: 32px;
    margin-bottom: 2.25rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .contact-item {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .contact-item span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-inline-end: 16px;
  }
  
  .contact-item a {
    text-transform: lowercase;
    font-size: 24px;
  }
  
  .contact-item h3 {
    margin: 0;
  }
  
  .contact-item i {
    font-style: normal;
    margin-inline-end: 16px;
    padding-inline-end: 16px;
    font-size: 24px;
    position: relative;
  }
  
  .contact-item i::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    inset-inline-end: 0;
  }
  
  .contact-item i:last-child {
    padding: 0;
    margin: 0;
  }
  
  .contact-item i:last-child::before {
    display: none
  }
  
  .contact-item a:hover {
    color: var(--color-primary);
  }
  
  .say-yas-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.35s var(--ease-out-quart), border-color var(--transition-fast), color var(--transition-fast);
    background: transparent;
  }
  
  .say-yas-btn:hover {
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 32px 0;
  }
  
  .footer-inner {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .footer-year {
    color: var(--color-text-muted);
    font-size: 22px;
  }
  
  .footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .footer-follow {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-right: 0.5rem;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast), transform var(--transition-fast);
  }
  
  .social-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
  }
  
  .back-top {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    transition: color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
  }
  
  .back-top:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
  }
  
  
  
  /* Service side panel (WHAT WE Deliver list) */
  .services-list__btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    margin: 0;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    transition: inherit;
    outline: none !important;
    color: #fff;
  }
  
  .service-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
  }
  
  .service-panel.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  
  .service-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out-quart);
  }
  
  .service-panel.is-open .service-panel__backdrop {
    opacity: 1;
  }
  
  .service-panel__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    max-height: 100dvh;
    background: #000;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    padding: 100px 32px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
  }
  
  .service-panel.is-open .service-panel__drawer {
    transform: translateX(0);
  }
  
  .service-panel__close {
    position: absolute;
    border-radius: 0 !important;
    outline: none !important;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast),
      background var(--transition-fast);
  }
  
  .service-panel__close:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
  
  .service-panel__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 16px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .service-panel__body {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin: 0;
  }
  
  .service-panel__body p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .service-panel__body p:last-child {
    margin-bottom: 0;
  }
  
  .service-panel__body strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .service-panel__subhead {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 1.35rem 0 0.65rem;
    line-height: 1.35;
  }
  
  .service-panel__subhead:first-child {
    margin-top: 0;
  }
  
  @media (max-width: 991px) {
    .main_section {
      height: 540px;
    }
  
    .about .about_head p {
      transform: none;
      max-width: 100%;
      margin: 24px auto 0;
    }
  
    .about_side {
      margin: 0 auto 32px;
    }
  
    .say-yas-tagline {
      max-width: 100%;
      margin: 56px 0 0;
    }
  
    .say-yas-right {
      margin: 0;
    }
  
    .projects-grid {
      grid-template-columns: 1fr;
    }
  
    .menu-btn {
      display: flex;
    }
  
    .nav {
      position: fixed;
      top: 104px;
      right: -100%;
      width: 290px;
      height: calc(100vh - 110px);
      background: var(--color-dark);
      flex-direction: column;
      padding: 24px;
      transition: var(--transition-normal);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
      z-index: 9999;
    }
  
    .nav a {
      color: #fff;
      font-size: 24px;
    }
  
    .nav.active {
      right: 0;
    }
  
    .partners .item {
      width: 33.33%;
    }
  
    .project-card h3 span {
      font-size: 14px;
    }
  
    .deliver .font-script {
      line-height: 34px;
      margin-bottom: 110px;
    }
  
    .about .about_head .main_title {
      font-size: 26px;
      letter-spacing: 0;
    }
  
    .about .about_head .main_title span {
      line-height: 50px;
    }
  }
  
  @media (max-width:767px) {
    .stats {
      flex-wrap: wrap;
    }
  
    .stats .stat {
      width: 48%;
      margin: 0 0 24px;
    }
  
    .about .about_head .main_title {
      font-size: 32px;
    }
  
    .footer-inner {
      flex-direction: column-reverse;
      gap: 16px;
    }
  }
  
  @media (max-width: 576px) {
  
    .section-title {
      font-size: 32px;
      margin-bottom: 32px;
    }
  
    .font-script {
      font-size: 100px !important;
    }
  
    .services-list li {
      font-size: 26px;
      letter-spacing: 0;
      opacity: 92%;
      margin: 16px auto 0;
    }
  
    .map-section {
      padding: 0
    }
  
    .stats .stat {
      width: 100%;
      margin: 0 0 24px;
    }
  
    footer {
      padding-top: 24px !important;
    }
  
    .footer-inner {
      flex-direction: column-reverse;
      gap: 8px;
    }
  
    .say-yas {
      padding: 35px 0;
    }
  
    .say-yas-tagline {
      margin: 0;
    }
  
    .contact-details {
      gap: 16px;
      flex-direction: column;
    }
  
    .contact-item span {
      margin-inline-end: 8px;
    }
  
    .contact-item i {
      font-size: 16px;
    }
  
    .testimonials-carousel {
      padding: 0;
    }
  
    .projects-intro {
      margin: 0
    }
  
    .partners .item {
      width: 50%;
    }
  
    .about .about_head {
      margin-bottom: 32px;
    }
  
    .about .about_head .main_title {
      font-size: 18px;
    }
  
    .about .about_head .main_title span {
      line-height: 42px;
    }
  
    .carousel-caption {
      font-size: 48px;
      line-height: 65px;
    }
  }
  
  /* ==========================================================================
       Inner pages (about, contact)
       ========================================================================== */
  
  .clients-page .row .partner-item {
    padding: 16px;
  }

  .clients-page .partner-item {
    display: block;
    margin-inline: auto;
  }

  .clients-page .partner-item.reveal-visible {
    transition: var(--transition-fast);
  }

  .clients-page .partner-item.reveal-visible:hover {
    transform: translate3d(0, -8px, 0) scale(1.06);
    filter: brightness(1.12);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(244, 69, 69, 0.12);
  }

  @media (prefers-reduced-motion: reduce) {
    .clients-page .partner-item.reveal-visible:hover {
      transform: none;
      filter: brightness(1.05);
      box-shadow: none;
    }
  }
  
  .inner-hero {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  
  .inner-hero__eyebrow {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 16px;
  }
  
  .inner-hero__title {
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  
  .inner-hero .inner-hero__title.section-title {}
  
  .inner-hero__lead {
    font-size: 18px;
    line-height: 28px;
    color: #fff8;
    margin: 0 0 1.5rem;
  }
  
  .inner-hero__cta {
    margin: 0;
  }
  
  .contact-cta-primary {
    margin-top: 0.5rem;
  }
  
  .inner-section {
    padding: var(--padding) 0;
  }
  
  .inner-section--alt {
    background: rgba(255, 255, 255, 0.02);
  }
  
  .inner-section__inner {
    max-width: 640px;
  }
  
  .inner-section__title {
    font-size: 38px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 24px;
  }
  
  .inner-section p {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    margin: 0 0 16px;
  }
  
  .inner-section p:last-child {
    margin-bottom: 0;
  }
  
  .inner-section__lead {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  .process-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .process-line__arrow {
    color: var(--color-primary);
    font-weight: 700;
  }
  
  .locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .locations-list li {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .contact-layout {
    padding: var(--padding) 0;
  }
  
  .contact-form-section .inner-section__title,
  .contact-aside .inner-section__title {
    margin-bottom: 1.5rem;
  }
  
  .contact-page-form .form-group {
    margin-bottom: 1.25rem;
  }
  
  .contact-page-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
  }
  
  .contact-page-form input,
  .contact-page-form select,
  .contact-page-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0;
    transition: border-color var(--transition-fast);
  }
  
  .contact-page-form input:focus,
  .contact-page-form select:focus,
  .contact-page-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .contact-page-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
  }
  
  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .contact-page-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-actions {
    margin-top: 0.5rem;
  }
  
  .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
  }
  
  .contact-info-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .contact-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .contact-info-list__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
  }
  
  .contact-info-list a {
    color: #fff;
    transition: color var(--transition-fast);
  }
  
  .contact-info-list a:hover {
    color: var(--color-primary);
  }
  
  .contact-info-list__text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .contact-aside__note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
  }
  
  .contact-aside__note a {
    color: var(--color-primary);
  }
  
  .contact-aside {
    padding: 0 0 0 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  @media (max-width: 991px) {
    .contact-aside {
      padding: 2rem 0 0;
      margin-top: 2rem;
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
  
    .form-row-2 {
      grid-template-columns: 1fr;
    }
  }
  
  /* Projects & Clients inner pages */
  .projects-page .projects-intro {
    margin-bottom: 2.5rem;
  }
  
  
  
  .clients-page .partners.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.75rem 2rem;
    justify-items: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .clients-page .partners.clients-grid .item {
    width: 100%;
    max-width: 240px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clients-page .partners.clients-grid .partner-item {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* About page — hero grid, flex splits, mosaic */
  .about-page-hero {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .about-page-hero__media {
    position: relative;
  }
  
  .about-page-hero__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: clamp(220px, 32vw, 420px);
  }
  
  .about-page-hero__cell {
    position: relative;
    overflow: hidden;
  }
  
  .about-page-hero__cell img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-quart);
    filter: blur(4px);
  }
  
  .about-page-hero:hover .about-page-hero__cell img {
    transform: scale(1.03);
  }
  
  .about-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 55%,
        rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
  }
  
  .about-page-hero__headline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 0 96px;
  }
  
  .about-page-hero__headline .inner-hero__title {
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }
  
  .about-page-hero__headline .inner-hero__eyebrow {
    color: var(--color-primary);
  }
  
  .about-page-hero__tagline {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
  }
  
  .about-page-hero__headline .inner-hero__cta {
    margin-top: 1.25rem;
  }
  
  .about-page-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2.5rem 3rem;
    justify-content: space-between;
  }
  
  .about-page-flex__text {
    margin: 0;
  }
  
  .about_image {
    width: 100%;
    max-width: 640px;
    height: 410px;
    overflow: hidden;
  }
  
  .about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .about-page-thumb-grid {
    flex: 1 1 280px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 520px;
  }
  
  .about-page-thumb {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
  }
  
  .about-page-thumb:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
  }
  
  .about-page-thumb img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
  }
  
  .about-page-flex--reverse {
    flex-direction: row-reverse;
  }
  
  .about-page-stack {
    flex: 1 1 300px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-page-stack__item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .about-page-stack__item img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
  }
  
  .about-page-stack__item--small img {
    max-height: 220px;
  }
  
  .about-page-different__copy {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
  }
  
  .about-page-different__copy .inner-section__title {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-page-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(180px, 1fr) minmax(180px, 1fr);
    grid-template-areas:
      'hp hp fuze'
      'alfa reit reit';
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 420px;
  }
  
  .about-page-mosaic__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
  }
  
  .about-page-mosaic__item:nth-child(1) {
    grid-area: hp;
  }
  
  .about-page-mosaic__item:nth-child(2) {
    grid-area: fuze;
  }
  
  .about-page-mosaic__item:nth-child(3) {
    grid-area: alfa;
  }
  
  .about-page-mosaic__item:nth-child(4) {
    grid-area: reit;
  }
  
  .about-page-mosaic__item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out-quart);
  }
  
  .about-page-mosaic__item:hover img {
    transform: scale(1.04);
  }
  
  .about-page-client-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 1.75rem;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }
  
  .about-page-client-strip img {
    max-height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(15%);
    transition: opacity var(--transition-fast), filter var(--transition-fast);
  }
  
  .about-page-client-strip img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  
  .about-page-where__layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .about-page-where__text {
    flex: 1 1 280px;
    max-width: 480px;
  }
  
  .about-page-where__visual {
    flex: 1 1 300px;
    max-width: 560px;
  }
  
  .about-page-where__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  
  .about-page-where__grid img:first-child {
    grid-column: span 2;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
  }
  
  .about-page-where__grid img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  @media (max-width: 991px) {
    .about-page-hero__overlay {
      display: none;
    }
  
    .about-page-hero__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      min-height: 280px;
    }
  
    .about-page-hero__headline {
      position: static;
      padding: 1.75rem 0 2rem;
      background: #000;
    }
  
    .about-page-flex--reverse {
      flex-direction: column-reverse;
    }
  
    .about-page-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: none;
      grid-template-areas:
        'hp hp'
        'fuze alfa'
        'reit reit';
      min-height: 0;
    }
  }
  
  @media (max-width: 576px) {
    .about-page-thumb-grid {
      grid-template-columns: 1fr;
      max-width: none;
    }
  
    .about-page-mosaic {
      grid-template-columns: 1fr;
      grid-template-areas:
        'hp'
        'fuze'
        'alfa'
        'reit';
    }
  
    .about-page-hero__grid {
      grid-template-columns: 1fr 1fr;
      min-height: 320px;
    }
  
    .about-page-hero__cell:nth-child(3),
    .about-page-hero__cell:nth-child(4) {
      display: none;
    }
  }
  
  /* ==========================================================================
     Project detail (case study) — e.g. project-poppi.html
     ========================================================================== */
  
  .project-detail {
    padding-top: 0;
  }
  
  .project-detail-breadcrumb {
    padding: calc(72px + 1rem) 24px 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .project-detail-breadcrumb a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast, 0.2s ease);
  }
  
  .project-detail-breadcrumb a:hover {
    color: var(--color-primary);
  }
  
  .project-detail-hero {
    position: relative;
    min-height: min(72vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  
  .project-detail-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .project-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.75) 55%,
        rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
  }
  
  .project-detail-hero__titles {
    position: relative;
    z-index: 2;
    padding: 0 3% 48px;
    margin: 0 auto;
    width: 100%;
  }
  
  .project-detail-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
  }
  
  .project-detail-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    line-height: 1.1;
  }
  
  .project-detail-hero__meta {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.72);
  }
  
  .project-detail-section-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 32px;
  }
  
  .project-detail-section-title--center {
    text-align: center;
  }
  
  .project-detail-intro {
    padding: var(--padding) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .project-detail-intro__inner {
    margin: 0 auto;
  }
  
  .project-detail-intro__inner p {
    font-size: 24px;
    line-height: 40px;
    color: #fff;
    margin: 0 0 24px;
  }
  
  .project-detail-intro__inner p:last-child {
    margin-bottom: 0;
  }
  
  .project-detail-results {
    font-size: 1.05rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .project-detail-results strong {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  .project-detail-intro__cta {
    margin-top: 1.75rem;
  }
  
  .project-detail-gallery-section {
    padding: var(--padding) 0;
  }
  
  .project-detail-gallery-hint {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin: -0.5rem 0 2rem;
  }
  
  .project-detail-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 48px;
  }
  
  .project-detail-gallery__cell {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
  }
  
  
  
  .project-detail-gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--reveal-ease, ease-out);
  }
  
  .project-detail-gallery__cell:hover img {
    transform: scale(1.04);
  }
  
  .related-projects {
    padding: var(--padding) 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }
  
  .related-projects .container-fluid {
    position: relative;
  }
  
  .related-projects-carousel {
    margin: 0 auto;
    padding: 0 40px 8px;
    position: relative;
  }
  
  .related-projects-carousel .owl-dots {
    margin-top: 1.25rem;
  }
  
  .related-projects-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .related-projects-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary);
  }
  
  .related-project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  
  .related-project-card__img {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.35);
  }
  
  .related-project-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .related-project-card:hover .related-project-card__img img {
    transform: scale(1.03);
  }
  
  .related-project-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.35;
  }
  
  .related-project-card__title span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.55);
  }
  
  /* Fancybox above fixed header */
  .fancybox__container {
    z-index: 10050;
  }
  
  @media (max-width: 992px) {
    .project-detail-gallery__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 576px) {
    .project-detail-hero {
      min-height: 56vh;
    }
  
    .project-detail-gallery__grid {
      grid-template-columns: 1fr;
    }
  
    .related-projects-carousel {
      padding-left: 28px;
      padding-right: 28px;
    }
  }