:root {
  --makan-ink: #1f1b17;
  --makan-cream: #ffffff;
  --makan-sand: #808184;
  --makan-olive: #808184;
  --makan-gray: #808184;
  --makan-line: rgba(31, 27, 23, 0.12);
}

/* ========================================
   Side Menu - Smaller Page Names
   ======================================== */
.side-info-4 .offcanvas-4 .contact-item .nav-list li a {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -2px;
}

@media only screen and (max-width: 1919px) {
  .side-info-4 .offcanvas-4 .contact-item .nav-list li a {
    font-size: 42px;
    line-height: 54px;
  }
}

@media only screen and (max-width: 1399px) {
  .side-info-4 .offcanvas-4 .contact-item .nav-list li a {
    font-size: 36px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 991px) {
  .side-info-4 .offcanvas-4 .contact-item .nav-list li a {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -1px;
  }
}

/* ========================================
   Global Pattern Overlays
   ======================================== */

/* Pattern overlay mixin - add to sections */
.pattern-overlay {
  position: relative;
}

.pattern-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-1.svg');
  background-size: 250px;
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  filter: brightness(0.5);
}

.pattern-overlay > * {
  position: relative;
  z-index: 2;
}

/* Dark pattern for light/white backgrounds - MORE VISIBLE */
.pattern-overlay-dark::before {
  opacity: 0.5;
  filter: brightness(0.3);
}

/* Light pattern for dark backgrounds */
.pattern-overlay-light::before {
  filter: invert(1);
  opacity: 0.12;
}

/* Extra visible patterns for white sections */
.pattern-visible::before {
  opacity: 0.2 !important;
  mix-blend-mode: multiply !important;
}

/* Floating corner patterns - BIGGER & MORE VISIBLE */
.corner-patterns {
  position: relative;
  overflow: visible;
}

.corner-patterns::before,
.corner-patterns::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background-image: url('../imgs/Pattern/SVG/artboard-4.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  filter: brightness(0.4);
}

.corner-patterns::before {
  top: -100px;
  right: -100px;
}

.corner-patterns::after {
  bottom: -100px;
  left: -100px;
  background-image: url('../imgs/Pattern/SVG/artboard-6.svg');
}

/* Image pattern overlay */
.img-pattern-overlay {
  position: relative;
  overflow: hidden;
}

.img-pattern-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-8.svg');
  background-size: 150px;
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  filter: brightness(0.3);
}

.img-pattern-overlay:hover::after {
  opacity: 0.6;
}

/* Featured Project Cards - Pattern on hover */
.fp-card {
  position: relative;
}

.fp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-5.svg');
  background-size: 150px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
  filter: brightness(0.4);
}

.fp-card:hover::before {
  opacity: 0.5;
}

/* Different patterns for variety */
.fp-card:nth-child(2n)::before {
  background-image: url('../imgs/Pattern/SVG/artboard-7.svg');
}

.fp-card:nth-child(3n)::before {
  background-image: url('../imgs/Pattern/SVG/artboard-9.svg');
}

.fp-card:nth-child(4n)::before {
  background-image: url('../imgs/Pattern/SVG/artboard-4.svg');
}

/* Hero section - no pattern to allow gradient overlay */

/* Brand statement pattern */
.brand-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-6.svg');
  background-size: 350px;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Horizontal gallery pattern accents */
.h-gallery__slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Stats section pattern */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-8.svg');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
}

/* Works section image hover pattern */
.works-section-10__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../imgs/Pattern/SVG/artboard-9.svg');
  background-size: 120px;
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: soft-light;
}

.works-section-10__item:hover .works-section-10__thumb::after {
  opacity: 0.4;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--makan-ink);
  background-color: var(--makan-cream);
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--makan-ink);
}

* {
  font-family: 'Lato', sans-serif;
}

a {
  color: var(--makan-ink);
}

a:hover {
  color: var(--makan-olive);
}

/* ========================================
   MAKAN Header
   ======================================== */
.makan-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.makan-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.makan-header .header__logo img {
  max-height: 45px;
  transition: all 0.3s ease;
}

.makan-header .logo-dark {
  display: none;
}

.makan-header .logo-white {
  display: block;
}

.makan-header .main-menu ul li a {
  color: #fff;
}

.makan-header .rr-btn-primary {
  background: #fff;
  color: var(--makan-ink);
}

.makan-header .rr-btn-primary:hover {
  background: var(--makan-olive);
  color: #fff;
}

.makan-header .bar-icon span {
  background: #fff;
}

/* ========================================
   MAKAN Hero Slider
   ======================================== */
.makan-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.makan-hero-swiper {
  width: 100%;
  height: 100%;
}

.makan-hero .swiper-slide {
  overflow: hidden;
}

.makan-hero__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.makan-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.swiper-slide-active .makan-hero__bg {
  transform: scale(1);
}

.makan-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.makan-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 40px;
}

.makan-hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--makan-sand);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.makan-hero__title {
  margin-bottom: 40px;
}

.makan-hero__title .line {
  display: block;
  font-size: clamp(50px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -3px;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 0.8s ease forwards;
}

.makan-hero__title .line:nth-child(1) { animation-delay: 0.4s; }
.makan-hero__title .line:nth-child(2) { animation-delay: 0.5s; }
.makan-hero__title .line:nth-child(3) { animation-delay: 0.6s; }

.makan-hero__title .line.outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

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

.makan-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #fff;
  color: var(--makan-ink);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.makan-hero__btn:hover {
  background: var(--makan-olive);
  color: #fff;
}

.makan-hero__btn i {
  transition: transform 0.3s ease;
}

.makan-hero__btn:hover i {
  transform: translateX(5px);
}

/* Hero Navigation */
.makan-hero__nav {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.makan-hero__prev,
.makan-hero__next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.makan-hero__prev:hover,
.makan-hero__next:hover {
  background: #fff;
  color: var(--makan-ink);
  border-color: #fff;
}

.makan-hero__progress {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.makan-hero__progress .progress-bar {
  width: 100px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.makan-hero__progress .progress-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  width: 0;
}

/* Scroll Indicator */
.makan-hero__scroll {
  position: absolute;
  bottom: 50px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 20;
}

.makan-hero__scroll .scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  position: relative;
}

.makan-hero__scroll .scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 1px;
  background: #fff;
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: 0; }
  50% { left: 30px; }
  100% { left: 0; }
}

@media (max-width: 991px) {
  .makan-hero {
    min-height: 600px;
  }

  .makan-hero__slide {
    min-height: 600px;
  }

  .makan-hero__content {
    padding: 0 20px;
  }

  .makan-hero__nav {
    bottom: 30px;
    right: 20px;
  }

  .makan-hero__scroll {
    display: none;
  }

  .makan-hero__progress .progress-bar {
    width: 60px;
  }
}

@media (max-width: 576px) {
  .makan-hero__title .line {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .makan-hero__prev,
  .makan-hero__next {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   MAKAN Stats Section (Fixed)
   ======================================== */
.makan-stats {
  background: var(--makan-ink);
  padding: 100px 0;
  overflow: visible;
}

.makan-stats__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 991px) {
  .makan-stats__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .makan-stats__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.makan-stats__item {
  padding: 20px;
}

.makan-stats__number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.makan-stats__number .odometer {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.makan-stats__number .plus {
  font-size: 0.6em;
  color: var(--makan-sand);
}

.makan-stats__label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ========================================
   Cinematic Full-Screen Hero Slider
   ======================================== */
/* ========================================
   WebGL Hero Slider - Rayden Style
   ======================================== */
.webgl-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #0a0a0a;
  cursor: none;
}

.webgl-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.webgl-hero__canvas canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Hero Full Overlay - 40% dark layer */
.webgl-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  pointer-events: none;
}

/* Hero Gradient Overlay - Extra dark at top for logo/menu visibility */
.webgl-hero__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Custom Cursor - MAKAN Arrow */
.makan-cursor {
  position: fixed;
  width: 28px;
  height: 16px;
  pointer-events: none;
  z-index: 999999999;
  transform: rotate(-45deg);
  opacity: 0.8;
}

.makan-cursor svg {
  width: 100%;
  height: 100%;
}

.makan-cursor.hover {
  transform: rotate(-45deg) scale(1.3);
  opacity: 1;
}

/* Hide custom cursor on mobile/tablet */
@media (max-width: 1024px) {
  .makan-cursor {
    display: none !important;
  }

  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: auto !important;
  }
}

/* Hide default cursor only when custom cursor exists - Desktop only */
@media (min-width: 1025px) {
  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: none !important;
  }
}

/* Side Titles */
.webgl-hero__side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: none;
  transition: all 0.4s ease;
}

.webgl-hero__side--prev {
  left: 5%;
}

.webgl-hero__side--next {
  right: 5%;
  text-align: right;
}

.webgl-hero__side-title {
  display: block;
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  line-height: 0.9;
  text-transform: capitalize;
  letter-spacing: -3px;
  transition: all 0.5s ease;
}

.webgl-hero__side-cat {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 15px;
}

.webgl-hero__side:hover .webgl-hero__side-title {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
}

/* Center Content */
.webgl-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.webgl-hero__title {
  font-size: clamp(50px, 10vw, 140px);
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
}

.webgl-hero__cat {
  display: block;
  font-size: 16px;
  color: #808184;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 20px;
}

/* Bottom Navigation */
.webgl-hero__bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  pointer-events: auto;
}

.webgl-hero__nav-btn {
  display: flex !important;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: none;
  color: #ffffff !important;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px 20px;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.webgl-hero__nav-btn i,
.webgl-hero__nav-btn .nav-arrow {
  font-size: 16px;
  color: #ffffff !important;
  transition: transform 0.3s ease;
}

.webgl-hero__nav-btn .nav-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.webgl-hero__nav-btn:hover {
  opacity: 0.7;
}

.webgl-hero__nav--prev:hover i,
.webgl-hero__nav--prev:hover .nav-arrow {
  transform: translateX(-5px);
}

.webgl-hero__nav--next:hover i,
.webgl-hero__nav--next:hover .nav-arrow {
  transform: translateX(5px);
}

/* Dots Navigation */
.webgl-hero__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.webgl-hero__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: none;
  transition: all 0.3s ease;
}

.webgl-hero__dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.webgl-hero__dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .webgl-hero__side-title {
    font-size: clamp(40px, 8vw, 100px);
  }

  .webgl-hero__title {
    font-size: clamp(40px, 8vw, 80px);
  }
}

@media (max-width: 768px) {
  .webgl-hero {
    min-height: unset;
    height: 100svh;
    cursor: auto;
  }

  .webgl-hero__side {
    display: none;
  }

  .webgl-hero__bottom {
    padding: 0 20px;
  }

  .webgl-hero__nav-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }

  .webgl-hero__nav-btn .nav-text {
    display: inline;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .webgl-hero__nav-btn .nav-arrow {
    display: inline;
    font-size: 14px;
  }

  .webgl-cursor {
    display: none;
  }
}

/* ========================================
   Old Cine Hero (Keeping for compatibility)
   ======================================== */
.cine-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #0a0a0a;
}

/* Slides Container */
.cine-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cine-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
}

.cine-hero__slide.active {
  opacity: 1;
  visibility: visible;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cine-hero__slide.wave-in {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: waveReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cine-hero__slide.wave-out {
  animation: waveHide 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Wave Animation Keyframes - Liquid/Water Effect */
@keyframes waveReveal {
  0% {
    clip-path: polygon(
      0% 100%, 5% 100%, 10% 100%, 15% 100%, 20% 100%, 25% 100%,
      30% 100%, 35% 100%, 40% 100%, 45% 100%, 50% 100%, 55% 100%,
      60% 100%, 65% 100%, 70% 100%, 75% 100%, 80% 100%, 85% 100%,
      90% 100%, 95% 100%, 100% 100%, 100% 100%, 0% 100%
    );
  }
  20% {
    clip-path: polygon(
      0% 85%, 5% 80%, 10% 75%, 15% 70%, 20% 68%, 25% 70%,
      30% 75%, 35% 72%, 40% 68%, 45% 65%, 50% 62%, 55% 60%,
      60% 58%, 65% 55%, 70% 52%, 75% 55%, 80% 60%, 85% 65%,
      90% 70%, 95% 78%, 100% 85%, 100% 100%, 0% 100%
    );
  }
  40% {
    clip-path: polygon(
      0% 55%, 5% 48%, 10% 42%, 15% 38%, 20% 35%, 25% 38%,
      30% 42%, 35% 45%, 40% 40%, 45% 35%, 50% 30%, 55% 28%,
      60% 32%, 65% 38%, 70% 42%, 75% 45%, 80% 40%, 85% 35%,
      90% 42%, 95% 50%, 100% 55%, 100% 100%, 0% 100%
    );
  }
  60% {
    clip-path: polygon(
      0% 35%, 5% 28%, 10% 22%, 15% 18%, 20% 15%, 25% 12%,
      30% 15%, 35% 20%, 40% 18%, 45% 12%, 50% 8%, 55% 10%,
      60% 15%, 65% 18%, 70% 22%, 75% 18%, 80% 12%, 85% 15%,
      90% 22%, 95% 30%, 100% 35%, 100% 100%, 0% 100%
    );
  }
  80% {
    clip-path: polygon(
      0% 12%, 5% 8%, 10% 5%, 15% 3%, 20% 2%, 25% 4%,
      30% 6%, 35% 5%, 40% 3%, 45% 2%, 50% 1%, 55% 2%,
      60% 4%, 65% 5%, 70% 6%, 75% 4%, 80% 3%, 85% 5%,
      90% 8%, 95% 10%, 100% 12%, 100% 100%, 0% 100%
    );
  }
  100% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 100%, 0% 100%
    );
  }
}

@keyframes waveHide {
  0% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 100%, 0% 100%
    );
  }
  25% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 75%, 0% 80%
    );
  }
  50% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 50%, 0% 55%
    );
  }
  75% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 25%, 0% 30%
    );
  }
  100% {
    clip-path: polygon(
      0% 0%, 5% 0%, 10% 0%, 15% 0%, 20% 0%, 25% 0%,
      30% 0%, 35% 0%, 40% 0%, 45% 0%, 50% 0%, 55% 0%,
      60% 0%, 65% 0%, 70% 0%, 75% 0%, 80% 0%, 85% 0%,
      90% 0%, 95% 0%, 100% 0%, 100% 0%, 0% 0%
    );
  }
}

.cine-hero__img {
  position: absolute;
  inset: -60px;
  overflow: hidden;
}

.cine-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95);
}

.cine-hero__slide.active .cine-hero__img img {
  transform: scale(1);
}

/* Overlay */
.cine-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* Side Text - Previous/Next */
.cine-hero__side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cine-hero__side--prev {
  left: 3%;
  text-align: left;
}

.cine-hero__side--next {
  right: 3%;
  text-align: right;
}

.cine-hero__side-title {
  font-size: clamp(50px, 10vw, 160px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -4px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.cine-hero__side--prev .cine-hero__side-title {
  transform: rotate(180deg);
}

.cine-hero__side-cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 20px;
  transition: all 0.5s ease;
}

.cine-hero__side:hover .cine-hero__side-title {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

.cine-hero__side--prev:hover .cine-hero__side-title {
  transform: rotate(180deg) scale(1.02);
}

.cine-hero__side:hover .cine-hero__side-cat {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1400px) {
  .cine-hero__side-title {
    font-size: clamp(40px, 8vw, 120px);
  }
}

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

/* Center Content */
.cine-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 30px;
}

.cine-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--makan-sand, #808184);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.cine-hero__title {
  margin: 0;
  overflow: visible;
}

.cine-hero__title .title-line {
  display: block;
  font-size: clamp(50px, 11vw, 160px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -4px;
  line-height: 1;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(50px);
  animation: cineTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  white-space: nowrap;
}

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

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

.cine-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 30px auto;
  opacity: 0;
  transform: translateY(20px);
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@media (max-width: 768px) {
  .cine-hero__title .title-line {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .cine-hero__desc {
    font-size: 16px;
  }
}

/* Button */
.cine-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 15px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  transition: all 0.4s ease;
}

.cine-hero__btn .btn-text {
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.4s ease;
}

.cine-hero__btn .btn-arrow {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0a0a0a;
  border-radius: 50%;
  margin: 3px;
  transition: all 0.4s ease;
}

.cine-hero__btn:hover {
  background: #fff;
  border-color: #fff;
}

.cine-hero__btn:hover .btn-text {
  color: #0a0a0a;
}

.cine-hero__btn:hover .btn-arrow {
  background: #0a0a0a;
  color: #fff;
  transform: translateX(5px);
}

/* Bottom Navigation */
.cine-hero__bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 30;
}

@media (max-width: 768px) {
  .cine-hero__bottom {
    padding: 0 20px;
    bottom: 25px;
  }
}

.cine-hero__nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 0;
  transition: all 0.4s ease;
}

.cine-hero__nav-btn i {
  font-size: 11px;
  transition: transform 0.4s ease;
}

.cine-hero__nav-btn:hover {
  color: #fff;
}

.cine-hero__nav--prev:hover i {
  transform: translateX(-5px);
}

.cine-hero__nav--next:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .cine-hero__nav-btn span {
    display: none;
  }

  .cine-hero__nav-btn i {
    font-size: 16px;
  }
}

/* Progress & Counter */
.cine-hero__progress-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cine-hero__counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cairo', sans-serif;
}

.cine-hero__counter .counter-current {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cine-hero__counter .counter-sep {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.cine-hero__counter .counter-total {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.cine-hero__progress {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.cine-hero__progress .progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--makan-sand, #808184), #fff);
  border-radius: 2px;
}

@media (max-width: 576px) {
  .cine-hero__counter .counter-current {
    font-size: 28px;
  }

  .cine-hero__progress {
    width: 60px;
  }
}

/* Scroll Indicator */
.cine-hero__scroll {
  position: absolute;
  left: 60px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 30;
}

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

.cine-hero__scroll .scroll-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cine-hero__scroll .scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cine-hero__scroll .scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background: #fff;
  animation: scrollLineMove 2.5s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(70px); }
  100% { transform: translateX(-100%); }
}

/* Side Decoration */
.cine-hero__deco {
  position: absolute;
  right: 60px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 30;
}

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

.cine-hero__deco span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.cine-hero__deco .deco-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Slide Transition Animations */
.cine-hero__slide.slide-out-left .cine-hero__img img {
  transform: scale(1.05) translateX(-3%);
}

.cine-hero__slide.slide-out-right .cine-hero__img img {
  transform: scale(1.05) translateX(3%);
}

/* Content Animation States */
.cine-hero.animating .cine-hero__label,
.cine-hero.animating .cine-hero__title .title-line,
.cine-hero.animating .cine-hero__desc,
.cine-hero.animating .cine-hero__btn {
  animation: none;
  opacity: 0;
  transform: translateY(30px);
}

.cine-hero.animate-in .cine-hero__label {
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.cine-hero.animate-in .cine-hero__title .title-line {
  animation: cineTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.cine-hero.animate-in .cine-hero__desc {
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.cine-hero.animate-in .cine-hero__btn {
  animation: cineSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Mouse Parallax Class */
.cine-hero__img.parallax img {
  transition: transform 0.1s linear;
}

/* ========================================
   MAKAN Creative Hero Slider (Legacy)
   ======================================== */
.makan-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #0f0c08;
}

.makan-hero-swiper {
  width: 100%;
  height: 100%;
}

.makan-hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* Background Image with Parallax */
.makan-hero-bg {
  position: absolute;
  inset: -50px;
  z-index: 1;
}

.makan-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.1) saturate(1.05);
}

.swiper-slide-active .makan-hero-bg img {
  transform: scale(1);
}

/* Overlay with Gradient - Lighter */
.makan-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(15, 12, 8, 0.45) 0%, rgba(15, 12, 8, 0.15) 50%, rgba(15, 12, 8, 0.35) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(15, 12, 8, 0.25) 100%);
}

/* Content Container */
.makan-hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.makan-hero-text {
  max-width: 900px;
  padding-left: 60px;
}

@media (max-width: 991px) {
  .makan-hero-text {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }
}

/* Label */
.makan-hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--makan-sand);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
  position: relative;
  padding-left: 50px;
}

.makan-hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 1px;
  background: var(--makan-sand);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.5s;
}

.swiper-slide-active .makan-hero-label {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .makan-hero-label::before {
  transform: translateY(-50%) scaleX(1);
}

@media (max-width: 991px) {
  .makan-hero-label {
    padding-left: 0;
  }
  .makan-hero-label::before {
    display: none;
  }
}

/* Title with Split Lines */
.makan-hero-title {
  margin-bottom: 35px;
  overflow: hidden;
}

.makan-hero-title .line {
  display: block;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -4px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.makan-hero-title .line:nth-child(1) { transition-delay: 0.4s; }
.makan-hero-title .line:nth-child(2) { transition-delay: 0.55s; }
.makan-hero-title .line:nth-child(3) { transition-delay: 0.7s; }

.swiper-slide-active .makan-hero-title .line {
  opacity: 1;
  transform: translateY(0);
}

.makan-hero-title .line.outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.7);
  font-style: italic;
}

@media (max-width: 768px) {
  .makan-hero-title .line {
    font-size: 48px;
    letter-spacing: -2px;
  }
}

/* Description */
.makan-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.8s;
}

.swiper-slide-active .makan-hero-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .makan-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .makan-hero-desc {
    font-size: 16px;
  }
}

/* Button */
.makan-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.95s;
}

.swiper-slide-active .makan-hero-btn {
  opacity: 1;
  transform: translateY(0);
}

.makan-hero-btn .btn-text {
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.makan-hero-btn .btn-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--makan-ink);
  border-radius: 50%;
  margin: 3px;
  transition: all 0.4s ease;
}

.makan-hero-btn:hover {
  background: #fff;
  border-color: #fff;
}

.makan-hero-btn:hover .btn-text {
  color: var(--makan-ink);
}

.makan-hero-btn:hover .btn-icon {
  background: var(--makan-ink);
  color: #fff;
  transform: translateX(5px);
}

/* Progress Bar */
.makan-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
}

.makan-hero-progress .progress-bar {
  height: 100%;
  position: relative;
}

.makan-hero-progress .progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--makan-sand), #fff);
}

/* Navigation */
.makan-hero-nav {
  position: absolute;
  right: 60px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 20;
}

@media (max-width: 768px) {
  .makan-hero-nav {
    right: 20px;
    bottom: 30px;
    gap: 20px;
  }
}

.makan-hero-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
}

.makan-hero-counter .current {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.makan-hero-counter .separator {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
}

.makan-hero-counter .total {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .makan-hero-counter .current {
    font-size: 32px;
  }
}

.makan-hero-arrows {
  display: flex;
  gap: 12px;
}

.makan-hero-prev,
.makan-hero-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.makan-hero-prev:hover,
.makan-hero-next:hover {
  background: #fff;
  border-color: #fff;
  color: var(--makan-ink);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .makan-hero-prev,
  .makan-hero-next {
    width: 50px;
    height: 50px;
  }
}

/* Scroll Indicator */
.makan-hero-scroll {
  position: absolute;
  left: 60px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

@media (max-width: 991px) {
  .makan-hero-scroll {
    display: none;
  }
}

.makan-hero-scroll .scroll-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.makan-hero-scroll .scroll-line {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.makan-hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: #fff;
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100px); }
  100% { transform: translateX(-100%); }
}

/* Side Text */
.makan-hero-side-text {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 20;
}

.makan-hero-side-text span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .makan-hero-side-text {
    display: none;
  }
}

/* Old hero-slider styles (kept for compatibility) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
}

.hero-slider .swiper,
.hero-slider .hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Swiper Fade Effect Fix */
.hero-slider .swiper-slide {
  opacity: 1 !important;
}

.hero-slider .swiper-slide-active .hero-slide {
  opacity: 1;
}

.hero-slider .swiper-slide:not(.swiper-slide-active) .hero-slide {
  opacity: 0;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.hero-slide__content .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
  color: #fff;
}

.hero-slide__content .title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #fff;
}

.hero-slide__content .rr-btn-primary {
  background: #fff;
  color: var(--makan-ink);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.hero-slide__content .rr-btn-primary:hover {
  background: var(--makan-olive);
  color: #fff;
}

.hero-slider__nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.hero-slider__prev,
.hero-slider__next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: #fff;
  color: var(--makan-ink);
  border-color: #fff;
}

.hero-slider__pagination {
  display: flex;
  gap: 8px;
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }

  .hero-slider__nav {
    bottom: 20px;
    gap: 15px;
  }

  .hero-slider__prev,
  .hero-slider__next {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   MAKAN Hero Section - Index 10 Style
   ======================================== */
.hero-section-10 {
  background: var(--makan-cream);
}

.hero-section-10__banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-section-10__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 27, 23, 0.3) 0%, rgba(31, 27, 23, 0.5) 100%);
  z-index: 1;
}

.hero-section-10__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0;
}

.hero-section-10__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 40px;
}

.hero-section-10__desc span {
  color: #fff;
  font-weight: 600;
}

.hero-section-10__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-section-10__title {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0;
}

.hero-section-10__title .big-text {
  font-size: 1.2em;
  color: var(--makan-sand);
}

.hero-section-10__item .xterior {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  letter-spacing: -2px;
}

@media (max-width: 768px) {
  .hero-section-10__banner {
    background-attachment: scroll;
    min-height: 80vh;
  }

  .hero-section-10__content {
    padding: 80px 0;
  }

  .hero-section-10__item {
    flex-direction: column;
  }
}

/* ========================================
   MAKAN Works Section - Index 10 Style
   ======================================== */
.works-section-10 {
  background: var(--makan-cream);
  padding: 60px 0 100px;
}

.works-section-10__wrapper {
  position: relative;
}

.works-section-10__subtext {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.works-section-10 .section-title__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.works-section-10 .section-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.works-section-10 .section-title span {
  color: var(--makan-olive);
}

.works-section-10 .number-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--makan-gray);
  margin: 0;
}

.works-section-10__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 991px) {
  .works-section-10__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .works-section-10__wrap {
    grid-template-columns: 1fr;
  }
}

.works-section-10__item {
  position: relative;
}

.works-section-10__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.works-section-10__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.works-section-10__item:hover .works-section-10__thumb img {
  transform: scale(1.05);
}

.works-section-10__thumb canvas {
  border-radius: 8px;
  aspect-ratio: 4/3 !important;
}

.works-section-10__thumb .rr--hover-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.works-section-10__thumb .rr--hover-img img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.works-section-10__content .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.works-section-10__content .title a {
  color: var(--makan-ink);
  transition: color 0.3s;
}

.works-section-10__content .title a:hover {
  color: var(--makan-olive);
}

.works-section-10__content .meta {
  display: flex;
  gap: 15px;
}

.works-section-10__content .tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--makan-olive);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.works-section-10__content .date {
  font-size: 13px;
  color: var(--makan-gray);
}

.header-area-19 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: transparent;
  transition: background 0.4s ease;
}

.header-area-19 .header-main {
  border-bottom: none !important;
}

/* Default header - white text/icons (always white since bg goes dark) */
.header-area-19 .main-menu > ul > li > a,
.header-area-19 .main-menu li a,
.header-area-19 .header-right .rr-underline .text,
.header-area-19 .header-right .rr-underline,
.header-area-19 .header-meta .date {
  color: #fff !important;
  transition: color 0.3s ease;
}

.header-area-19 .side-toggle .bar-icon span,
.header-area-19 .bar-icon span {
  background: #fff !important;
  transition: background 0.3s ease;
}

.header-area-19 .rr-underline i {
  color: #fff !important;
}

.header-area-19 .rr-underline::before {
  display: none !important;
}

/* Scrolled header - gradually darkening background */
.header-area-19.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Keep text white since background is getting darker */
.header-area-19.scrolled .main-menu > ul > li > a,
.header-area-19.scrolled .main-menu li a,
.header-area-19.scrolled .header-right .rr-underline .text,
.header-area-19.scrolled .header-right .rr-underline,
.header-area-19.scrolled .header-meta .date {
  color: #fff !important;
}

.header-area-19.scrolled .side-toggle .bar-icon span,
.header-area-19.scrolled .bar-icon span {
  background: #fff !important;
}

.header-area-19.scrolled .rr-underline i {
  color: #fff !important;
}

.header-area-19.scrolled .rr-underline::before {
  display: none !important;
}

/* Dark header for pages with light backgrounds (default state) */
.header-area-19.header-dark {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Logo switching */
/* Default/homepage (dark bg): show logo-white (makan-logo-new.png) */
.header-area-19 .logo-dark {
  display: none;
}

.header-area-19 .logo-white {
  display: block;
}

/* Inner pages with header-dark (light bg): show logo-dark (makan-logo-white.png) */
.header-area-19.header-dark .logo-dark {
  display: block;
}

.header-area-19.header-dark .logo-white {
  display: none;
}

/* About page (white bg): show logo-dark (makan-logo-white.png) */
.header-area-19.header-white-bg .logo-dark {
  display: block;
}

.header-area-19.header-white-bg .logo-white {
  display: none;
}

/* Dark header: text starts dark (visible on light bg) */
.header-area-19.header-dark .main-menu > ul > li > a,
.header-area-19.header-dark .main-menu li a,
.header-area-19.header-dark .header-right .rr-underline .text,
.header-area-19.header-dark .header-right .rr-underline,
.header-area-19.header-dark .header-meta .date {
  color: var(--makan-ink) !important;
  transition: color 0.4s ease;
}

.header-area-19.header-dark .side-toggle .bar-icon span,
.header-area-19.header-dark .bar-icon span {
  background: var(--makan-ink) !important;
  transition: background 0.4s ease;
}

.header-area-19.header-dark .rr-underline i {
  color: var(--makan-ink) !important;
  transition: color 0.4s ease;
}

.header-area-19.header-dark .rr-underline::before {
  display: none !important;
}

/* White background header (for about page) */
.header-area-19.header-white-bg {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* When white-bg header is scrolled (dark bg): show logo-white (makan-logo-new.png) */
.header-area-19.header-white-bg.scrolled .logo-dark {
  display: none;
}
.header-area-19.header-white-bg.scrolled .logo-white {
  display: block;
}

/* Scrolled state - glass effect that gradually darkens */
.header-area-19.header-dark.scrolled {
  box-shadow: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Scrolled inner pages (dark bg): show logo-white (makan-logo-new.png) */
.header-area-19.header-dark.scrolled .logo-dark {
  display: none;
}

.header-area-19.header-dark.scrolled .logo-white {
  display: block;
}

.header-area-19.header-dark.scrolled .main-menu > ul > li > a,
.header-area-19.header-dark.scrolled .main-menu li a,
.header-area-19.header-dark.scrolled .header-right .rr-underline .text,
.header-area-19.header-dark.scrolled .header-right .rr-underline,
.header-area-19.header-dark.scrolled .header-meta .date {
  color: #fff !important;
}

.header-area-19.header-dark.scrolled .side-toggle .bar-icon span,
.header-area-19.header-dark.scrolled .bar-icon span {
  background: #fff !important;
}

.header-area-19.header-dark.scrolled .rr-underline i {
  color: #fff !important;
}

/* Header height */
.header-area-19 {
  padding: 0;
}

.header-area-19 .header-main {
  padding: 0;
}

.header-area-19 .header-area-5__inner {
  padding: 0 !important;
  height: 80px;
}

/* Logo sizing - both logos occupy identical box for smooth swap */
.header-area-19 .normal-logo {
  height: 55px !important;
  width: 120px !important;
  object-fit: contain;
  object-position: left center;
}

/* ========================================
   MAKAN Hero Slider - Full Width with Liquid Effect
   ======================================== */
.makan-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #1f1b17;
}

.makan-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.makan-hero-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

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

/* Hero Navigation */
.makan-hero-nav {
  position: absolute;
  bottom: 50px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 20;
}

@media (max-width: 768px) {
  .makan-hero-nav {
    bottom: 30px;
    right: 20px;
    gap: 20px;
  }
}

.makan-hero-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.makan-hero-counter .current {
  font-size: 36px;
  font-weight: 700;
}

.makan-hero-counter .separator {
  opacity: 0.5;
}

.makan-hero-counter .total {
  opacity: 0.7;
}

.makan-hero-arrows {
  display: flex;
  gap: 10px;
}

.makan-hero-prev,
.makan-hero-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.makan-hero-prev:hover,
.makan-hero-next:hover {
  background: #fff;
  color: var(--makan-ink);
  border-color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .makan-hero-prev,
  .makan-hero-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* Scroll Indicator */
.makan-hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
}

@media (max-width: 768px) {
  .makan-hero-scroll {
    display: none;
  }
}

.makan-hero-scroll .text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.makan-hero-scroll .line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.makan-hero-scroll .line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

.header-area-19 .main-menu > ul > li > a,
.header-area-19 .header-right .rr-underline,
.header-area-19 .header-meta .date {
  color: var(--makan-ink);
  font-weight: 600;
}

.makan-logo {
  max-height: 52px;
  width: auto;
}

.progress-wrap svg path {
  stroke: var(--makan-olive);
}


.makan-hero__badge {
  position: absolute;
  right: -6px;
  bottom: -14px;
  background: var(--makan-ink);
  color: var(--makan-cream);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-width: 240px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .makan-hero__badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }
}

.about-section-10,
.works-section-10,
.mission-section-10,
.cta-section-10,
.footer-10 {
  background: var(--makan-cream);
}

.rr-bg-light-gray {
  background: var(--makan-cream) !important;
}

.about-section-10__desc,
.about-section-10__list li,
.mission-section-10__content p,
.works-section-10__content .tag,
.footer-10 .footer-location p {
  color: var(--makan-gray);
}

.about-section-10 {
  padding: 100px 0;
  background: var(--makan-cream);
}

.about-section-10__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

@media (max-width: 991px) {
  .about-section-10__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-section-10__item {
  text-align: left;
  opacity: 1;
  transform: translateY(0);
}

.about-section-10__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.about-section-10__desc {
  font-size: 20px;
  line-height: 1.6;
  color: var(--makan-gray);
}

@media (max-width: 768px) {
  .about-section-10__desc {
    font-size: 17px;
  }
}

.about-section-10__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section-10__list li {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -0.3px;
  color: rgba(31, 27, 23, 0.25);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .about-section-10__list li {
    font-size: 18px;
  }
}

.about-section-10__list li.active {
  color: var(--makan-ink);
}

.mission-section-10__content {
  text-align: left;
}

.about-section-10__list li::marker {
  color: var(--makan-olive);
}

.works-section-10__subtext {
  color: var(--makan-olive);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.works-section-10__content .title a {
  color: var(--makan-ink);
}

.mission-section-10__title {
  color: var(--makan-ink);
}

.cta-section-10 {
  border-top: none;
  border-bottom: none;
}

.cta-section-10__contact-list a {
  color: var(--makan-ink);
  font-weight: 700;
}

.cta-section-10__contact-list a:hover {
  color: var(--makan-olive);
}

.subscribe-form input {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--makan-line);
  color: var(--makan-ink);
}

.subscribe-form button {
  background: var(--makan-ink);
  color: var(--makan-cream);
}

.footer-10 .title,
.footer-10 .footer-nav-list a,
.footer-10 .footer-location a,
.footer-10 .copyright-text {
  color: var(--makan-ink);
}

/* Simple Footer */
.footer-simple {
  background: var(--makan-cream);
  padding: 40px 0;
}

.footer-simple__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-simple__links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-simple__links a {
  font-size: 14px;
  color: var(--makan-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-simple__links a:hover {
  color: var(--makan-ink);
}

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

.footer-simple__copyright p {
  font-size: 14px;
  color: var(--makan-ink);
  margin: 0;
}

.footer-simple__contact {
  display: flex;
  gap: 25px;
}

.footer-simple__contact a {
  font-size: 14px;
  color: var(--makan-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-simple__contact a:hover {
  color: var(--makan-ink);
}

@media (max-width: 991px) {
  .footer-simple__content {
    flex-direction: column;
    text-align: center;
  }

  .footer-simple__links {
    justify-content: center;
  }

  .footer-simple__contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* MAKAN Footer */
.footer-makan {
  background: var(--makan-cream);
  padding: 80px 0 40px;
  border-top: 1px solid var(--makan-line);
}

.footer-makan__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-makan__logo img {
  margin-bottom: 20px;
}

.footer-makan__tagline {
  font-size: 14px;
  color: var(--makan-gray);
  line-height: 1.6;
}

.footer-makan__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.footer-makan__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-makan__list li {
  margin-bottom: 12px;
}

.footer-makan__list a {
  font-size: 15px;
  color: var(--makan-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-makan__list a:hover {
  color: var(--makan-ink);
}

.footer-makan__contact p {
  font-size: 14px;
  color: var(--makan-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-makan__contact a {
  display: block;
  font-size: 14px;
  color: var(--makan-gray);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-makan__contact a:hover {
  color: var(--makan-ink);
}

.footer-makan__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--makan-line);
}

.footer-makan__bottom p {
  font-size: 13px;
  color: var(--makan-gray);
  margin: 0;
}

@media (max-width: 991px) {
  .footer-makan__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-makan {
    padding: 60px 0 30px;
  }

  .footer-makan__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-makan__logo {
    display: flex;
    justify-content: center;
  }
}

/* ========================================
   Luxury Footer - Centered Layout
   ======================================== */
.footer-luxury {
  background: #0a0a0a;
  padding: 80px 0 100px;
  position: relative;
  text-align: center;
}

/* Logo */
.footer-luxury__logo-wrap {
  margin-bottom: 40px;
}

.footer-luxury__logo-wrap img {
  max-width: 160px;
  opacity: 0.95;
}

/* Navigation */
.footer-luxury__nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.footer-luxury__nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.footer-luxury__nav a:hover {
  color: #fff;
}

/* Newsletter */
.footer-luxury__newsletter {
  margin-bottom: 50px;
}

.footer-luxury__form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.footer-luxury__form input {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: all 0.3s ease;
}

.footer-luxury__form input[type="text"] {
  width: 160px;
  border-right: none;
}

.footer-luxury__form input[type="email"] {
  flex: 1;
  border-right: none;
}

.footer-luxury__form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-luxury__form input:focus {
  border-color: rgba(255,255,255,0.3);
}

.footer-luxury__form button {
  padding: 14px 22px;
  background: #fff;
  border: 1px solid #fff;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-luxury__form button:hover {
  background: transparent;
  color: #fff;
}

/* Social & Contact Row */
.footer-luxury__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-luxury__contact {
  display: flex;
  gap: 30px;
}

.footer-luxury__contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-luxury__contact a:hover {
  color: #fff;
}

.footer-luxury__social {
  display: flex;
  gap: 15px;
}

.footer-luxury__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-luxury__social a:hover {
  background: #fff;
  color: #0a0a0a;
}

/* Copyright */
.footer-luxury__copyright-wrap {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-luxury__copyright-wrap p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-luxury__row {
    flex-direction: column;
    gap: 25px;
  }

  .footer-luxury__contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .footer-luxury {
    padding: 50px 0 80px;
  }

  .footer-luxury__logo-wrap {
    margin-bottom: 30px;
  }

  .footer-luxury__nav {
    gap: 12px 20px;
    margin-bottom: 35px;
  }

  .footer-luxury__nav a {
    font-size: 11px;
  }

  .footer-luxury__newsletter {
    margin-bottom: 35px;
  }

  .footer-luxury__form {
    flex-direction: column;
    max-width: 280px;
  }

  .footer-luxury__form input[type="text"],
  .footer-luxury__form input[type="email"] {
    width: 100%;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
  }

  .footer-luxury__form input[type="text"] {
    border-bottom: none;
  }

  .footer-luxury__form button {
    width: 100%;
  }

  .footer-luxury__row {
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer-luxury__copyright-wrap {
    padding-top: 25px;
  }
}

.progress-wrap {
  background: rgba(31, 27, 23, 0.08);
}

/* RTL Support */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .header-area-5__inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header__logo {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header-right {
  flex-direction: row-reverse;
}

html[dir="rtl"] .main-menu ul {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-section-10__list {
  padding-right: 0;
  padding-left: 20px;
}

html[dir="rtl"] .footer-widget-wrapper {
  direction: ltr;
}

html[dir="rtl"] .footer-widget-box {
  text-align: left;
}

/* Hero Slider Styles */
.makan-hero-slider {
  position: relative;
  overflow: hidden;
}

.makan-hero-swiper {
  position: relative;
}

.makan-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.95);
}

.makan-hero-swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.35), rgba(15, 12, 8, 0.55));
  z-index: 1;
  pointer-events: none;
}

.makan-hero-nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.makan-hero-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 12, 8, 0.35);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.makan-hero-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.85);
}

.makan-hero-pagination {
  position: absolute;
  left: 40px;
  bottom: 46px;
  z-index: 20;
  width: auto !important;
}

.makan-hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.makan-hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .makan-hero-slider {
    min-height: 70vh;
  }

  .makan-hero-nav {
    right: 20px;
    bottom: 20px;
  }

  .makan-hero-pagination {
    left: 20px;
    bottom: 24px;
  }

  .makan-hero-nav button {
    width: 40px;
    height: 40px;
  }
}

/* Section Spacing */
.works-section-10 {
  padding: 60px 0 100px;
}

.mission-section-10 {
  padding: 80px 0;
}

/* Smooth Scroll Adjustment */
html {
  scroll-behavior: smooth;
  background: #0a0a0a;
  overscroll-behavior-y: none;
}

/* Prevent any white space below footer */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#smooth-wrapper {
  flex: 1;
}

body::after {
  content: '';
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: #0a0a0a;
  z-index: -1;
  pointer-events: none;
}

/* Project Cards Enhancement */
.works-section-10__item {
  margin-bottom: 60px;
}

.works-section-10__thumb img {
  transition: transform 0.5s ease;
}

.works-section-10__item:hover .works-section-10__thumb img {
  transform: scale(1.05);
}

/* Section Subtitles */
.works-section-10__subtext {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

/* ========================================
   MAKAN Homepage Styles
   ======================================== */

/* Hero Slider - showcase-slider-14 */
.showcase-slider-14 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.showcase-slider-14__inner {
  width: 100%;
  height: 100%;
}

.showcase-slider-14-active {
  width: 100%;
  height: 100%;
}

.showcase-slider-14__item {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-slider-14__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.showcase-slider-14__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.showcase-slider-14__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.showcase-slider-14__content .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.showcase-slider-14__content .title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #fff;
}

.showcase-slider-14__content .rr-btn-primary {
  background: #fff;
  color: var(--makan-ink);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.showcase-slider-14__content .rr-btn-primary:hover {
  background: var(--makan-ink);
  color: #fff;
}

.showcase-slider-14__nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.showcase-slider-14__prev,
.showcase-slider-14__next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-slider-14__prev:hover,
.showcase-slider-14__next:hover {
  background: #fff;
  color: var(--makan-ink);
  border-color: #fff;
}

.showcase-slider-14__pagination {
  display: flex;
  gap: 8px;
}

.showcase-slider-14__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.showcase-slider-14__pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .showcase-slider-14 {
    height: 80vh;
  }

  .showcase-slider-14__item {
    height: 80vh;
  }

  .showcase-slider-14__nav {
    bottom: 30px;
  }
}

/* About Section */
.about-section {
  background: var(--makan-cream);
}

.about-section__content .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.about-section__content .title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-section__content .desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--makan-gray);
  margin-bottom: 30px;
}

.about-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Service Section */
.service-section-2 {
  background: #f8f7f5;
  padding: 100px 0;
}

.service-section-2__inner .section-title-wrapper {
  margin-bottom: 60px;
}

.service-section-2__inner .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 15px;
}

.service-section-2__inner .section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
}

.service-section-2__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .service-section-2__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-section-2__wrap {
    grid-template-columns: 1fr;
  }
}

.service-section-2__item {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-section-2__item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-section-2__item .number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.service-section-2__item .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-section-2__item .title a {
  color: var(--makan-ink);
  transition: color 0.3s;
}

.service-section-2__item .title a:hover {
  color: var(--makan-olive);
}

.service-section-2__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--makan-gray);
}

/* Projects Section */
.projects {
  background: var(--makan-cream);
}

.projects__inner .section-title-wrapper {
  margin-bottom: 60px;
}

.projects__inner .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 15px;
}

.projects__inner .section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
}

.projects__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

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

.projects__item {
  display: flex;
  flex-direction: column;
}

.projects__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects__content .text .sub-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 8px;
}

.projects__content .text .title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.projects__content .text .title a {
  color: var(--makan-ink);
  transition: color 0.3s;
}

.projects__content .text .title a:hover {
  color: var(--makan-olive);
}

.projects__info {
  display: flex;
  gap: 30px;
}

.projects__box .sub-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--makan-gray);
  margin-bottom: 4px;
}

.projects__box .title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.projects__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.projects__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects__item:hover .projects__media img {
  transform: scale(1.05);
}

/* Hover Effect for Projects */
.projects__media .rr--hover-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
}

.projects__media .rr--hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__media canvas {
  border-radius: 8px;
}

/* Experience Section */
.experience {
  background: var(--makan-ink);
  padding: 80px 0;
}

.experience__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .experience__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience__item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 10px;
}

.experience__item .title {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  background: #f8f7f5;
}

.cta-section__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__content .title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section__content p {
  font-size: 18px;
  color: var(--makan-gray);
  margin-bottom: 30px;
}

.cta-section__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-section__buttons .rr-btn-primary {
  background: var(--makan-ink);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-section__buttons .rr-btn-primary:hover {
  background: var(--makan-olive);
}

.cta-section__buttons .rr-underline {
  font-size: 18px;
  font-weight: 600;
  color: var(--makan-ink);
  text-decoration: underline;
}

/* Footer Improvements */
.footer {
  background: #f8f7f5;
  padding: 80px 0 0;
}

.footer-widget-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--makan-line);
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-widget-box .footer-logo {
  margin: 25px 0 10px;
}

.footer-widget-box .footer-desc {
  font-size: 16px;
  color: var(--makan-gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--makan-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--makan-olive);
}

.footer-widget-box .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--makan-ink);
}

.footer-10 .footer-widget-box .title {
  margin-bottom: 15px;
}

.footer-10 .footer-widget-box .copyright-text {
  margin-top: 30px;
}

.footer-10 .footer-widget-box .footer-nav-list {
  margin-top: 0;
}

.footer-10 .footer-widget-box .footer-location {
  margin-top: 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  font-size: 16px;
  color: var(--makan-gray);
  transition: color 0.3s;
}

.footer-nav-list a:hover {
  color: var(--makan-ink);
}

.footer-location p {
  font-size: 16px;
  color: var(--makan-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-location a {
  display: block;
  font-size: 16px;
  color: var(--makan-ink);
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
}

.footer-bottom .copyright-text {
  font-size: 14px;
  color: var(--makan-gray);
}

/* Section Spacing */
.section-spacing {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
}

/* Button Styles */
.rr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--makan-ink);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.rr-btn-primary:hover {
  background: var(--makan-olive);
  color: #fff;
}

/* Header Styles for Home */
.header-area-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
}

.header-area-3__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-area-3 .main-menu ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-area-3 .main-menu ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.3s;
}

.header-area-3 .main-menu ul li a:hover {
  opacity: 0.7;
}

.header-area-3 .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-area-3 .rr-btn-primary {
  background: #fff;
  color: var(--makan-ink);
}

.header-area-3 .rr-btn-primary:hover {
  background: var(--makan-olive);
  color: #fff;
}

/* ========================================
   Layout Fixes - Sections Spacing
   ======================================== */
#smooth-wrapper,
#smooth-content {
  width: 100%;
  visibility: visible !important;
}

main {
  position: relative;
  z-index: 1;
}

/* About Section Fix */
.about-section-10 {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: var(--makan-cream);
}

/* Works Section Fix */
.works-section-10 {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
  background: var(--makan-cream);
}

/* Mission Section Fix */
.mission-section-10 {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  background: var(--makan-cream);
}

.mission-section-10__wrapper {
  display: block;
}

.mission-section-10__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  overflow: hidden;
  border: none;
}

@media (max-width: 991px) {
  .mission-section-10__wrap {
    grid-template-columns: 1fr;
  }
}

.mission-section-10__item {
  display: flex;
  flex-direction: column;
  border-right: none;
  margin-right: 0;
}

.mission-section-10__thumb,
.mission-section-10__thumb-two {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 30px;
}

.mission-section-10__thumb img,
.mission-section-10__thumb-two img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* CTA Section Fix */
.cta-section-10 {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  background: var(--makan-cream);
}

.cta-section-10__wrapper {
  text-align: center;
}

.cta-section-10 .section-title__wrap {
  margin-bottom: 40px;
}

.cta-section-10__contact-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-section-10__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--makan-ink);
  transition: color 0.3s;
}

.cta-section-10__contact-list a:hover {
  color: var(--makan-olive);
}

/* Footer Fix */
.footer-10 {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
  background: var(--makan-cream);
  border-top: 1px solid var(--makan-line);
}

.footer-10__inner {
  width: 100%;
}

.footer-10 .footer-widget-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .footer-10 .footer-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-10 .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-10 .footer-widget-box {
  text-align: left;
}

.footer-10 .footer-widget-box .title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--makan-ink);
}

.footer-10 .subscribe-form {
  margin-bottom: 30px;
}

.footer-10 .subscribe-form .title {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-10 .subscribe-form .input-group {
  position: relative;
  margin-bottom: 15px;
}

.footer-10 .subscribe-form input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--makan-line);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
}

.footer-10 .subscribe-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--makan-ink);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-10 .subscribe-form button:hover {
  background: var(--makan-olive);
}

.footer-10 .footer-logo {
  margin-bottom: 15px;
}

.footer-10 .copyright-text p {
  font-size: 14px;
  color: var(--makan-gray);
  margin: 0;
}

.footer-10 .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-10 .footer-nav-list li {
  margin-bottom: 12px;
}

.footer-10 .footer-nav-list li a {
  font-size: 15px;
  color: var(--makan-gray);
  transition: color 0.3s;
}

.footer-10 .footer-nav-list li a:hover {
  color: var(--makan-ink);
}

.footer-10 .footer-location p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--makan-gray);
  margin-bottom: 15px;
}

.footer-10 .footer-location a {
  display: block;
  font-size: 15px;
  color: var(--makan-ink);
  margin-bottom: 8px;
}

/* Section Title Fixes */
.section-title__wrap.project,
.section-title__wrap.work {
  margin-bottom: 40px;
  text-align: center;
  justify-content: center;
}

.section-title.text-center {
  text-align: center;
  width: 100%;
}

.section-title.mission-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}

.section-title.mission-title cite {
  font-style: normal;
  color: var(--makan-olive);
}

/* ========================================
   Image Reveal - DISABLED (images always visible)
   ======================================== */

/* Parallax Images */
.rr-ov-hidden {
  overflow: hidden;
}

.rr-ov-hidden img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rr-ov-hidden:hover img {
  transform: scale(1.05);
}

/* ========================================
   About Page - New Design
   ======================================== */

/* About Hero Section - Full Screen Cinematic */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--makan-ink);
}

.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.1);
  transition: transform 8s ease-out, opacity 1.5s ease;
}

.about-hero.loaded .about-hero__bg img {
  transform: scale(1);
  opacity: 0.5;
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 27, 23, 0.3) 0%,
    rgba(31, 27, 23, 0.5) 50%,
    rgba(31, 27, 23, 0.8) 100%
  );
  z-index: 2;
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 25px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 25px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 25px;
}

.about-hero__title span {
  display: block;
  overflow: hidden;
}

.about-hero__title .line {
  display: block;
  transform: translateY(100%);
}

.about-hero__desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
}

.about-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 2s;
}

.about-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

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

/* Badge positioned at bottom corner */
.about-hero__badge {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 200px;
  opacity: 0;
  transform: translateY(30px);
}

.about-hero__badge h4 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1;
}

.about-hero__badge p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* About Story Section */
.about-story {
  padding: 150px 0;
  background: var(--makan-cream);
  position: relative;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.about-story__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-olive);
  margin-bottom: 30px;
}

.about-story__heading {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--makan-ink);
}

.about-story__content {
  padding-top: 20px;
}

.about-story__quote {
  font-size: 28px;
  line-height: 1.6;
  color: var(--makan-ink);
  font-weight: 400;
  margin-bottom: 50px;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--makan-olive);
}

.about-story__text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--makan-gray);
  margin-bottom: 30px;
}

.about-story__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.about-story__author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.about-story__author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__author-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--makan-ink);
  margin-bottom: 5px;
}

.about-story__author-info span {
  font-size: 14px;
  color: var(--makan-olive);
}

/* About Founder / Behind the Scenes Section */
.about-founder {
  padding: 120px 0;
  background: #f8f8f8;
}

.about-founder__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-founder__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--makan-olive);
  margin-bottom: 20px;
  display: block;
}

.about-founder__heading {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--makan-ink);
  line-height: 1.2;
  margin-bottom: 15px;
}

.about-founder__role {
  font-size: 16px;
  color: var(--makan-olive);
  font-style: italic;
  letter-spacing: 1px;
}

.about-founder__content {
  padding-top: 10px;
}

.about-founder__text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--makan-gray);
  margin-bottom: 25px;
}

.about-founder__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-founder__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-founder {
    padding: 80px 0;
  }
}

/* About Stats Section */
.about-stats {
  padding: 100px 0;
  background: var(--makan-ink);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../imgs/makan-interior/about-1.jpg') center/cover no-repeat;
  opacity: 0.1;
}

.about-stats__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-stats__item {
  opacity: 0;
  transform: translateY(40px);
}

.about-stats__number {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
}

.about-stats__number span {
  color: var(--makan-sand);
}

.about-stats__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

/* About Gallery Section */
.about-gallery {
  padding: 150px 0;
  background: var(--makan-cream);
}

.about-gallery__header {
  text-align: center;
  margin-bottom: 80px;
}

.about-gallery__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.about-gallery__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--makan-ink);
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/5;
}

.about-gallery__item:nth-child(2) {
  margin-top: 60px;
}

.about-gallery__item:nth-child(3) {
  margin-top: 120px;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-gallery__item:hover img {
  transform: scale(1.1);
}

.about-gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.about-gallery__item:hover .about-gallery__item-overlay {
  transform: translateY(0);
}

.about-gallery__item-overlay h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.about-gallery__item-overlay span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* About Values Section */
.about-values {
  padding: 150px 0;
  background: #f8f6f3;
}

.about-values__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-values__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-values__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values__content {
  padding-left: 40px;
}

.about-values__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-olive);
  margin-bottom: 30px;
}

.about-values__title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--makan-ink);
  margin-bottom: 50px;
}

.about-values__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-values__item {
  display: flex;
  gap: 25px;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.about-values__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-values__item-icon {
  width: 60px;
  height: 60px;
  background: var(--makan-ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-values__item-icon i {
  font-size: 24px;
  color: #fff;
}

.about-values__item-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--makan-ink);
  margin-bottom: 10px;
}

.about-values__item-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--makan-gray);
}

/* About CTA Section */
.about-cta {
  padding: 150px 0;
  background: var(--makan-ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 40px;
}

.about-cta__title span {
  color: var(--makan-sand);
}

.about-cta__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 50px;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  background: #fff;
  color: var(--makan-ink);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.about-cta__btn:hover {
  background: var(--makan-sand);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-cta__btn i {
  transition: transform 0.3s ease;
}

.about-cta__btn:hover i {
  transform: translateX(5px);
}

/* Responsive About Page */
@media (max-width: 1199px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-hero__content {
    padding-right: 0;
    text-align: center;
  }

  .about-hero__desc {
    margin: 0 auto;
  }

  .about-hero__badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-values__content {
    padding-left: 0;
  }
}

/* Responsive for 13-14 inch screens */
@media (max-width: 1400px) {
  .about-hero__title {
    font-size: clamp(32px, 5vw, 60px);
  }

  .about-hero__label {
    font-size: 12px;
    padding: 8px 20px;
    letter-spacing: 3px;
  }

  .about-hero__desc {
    font-size: 16px;
    max-width: 500px;
  }

  .about-hero__badge {
    bottom: 40px;
    left: 40px;
  }

  .about-hero__badge h4 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .about-hero__title {
    font-size: clamp(28px, 5vw, 48px);
  }

  .about-hero__badge {
    left: 30px;
    bottom: 30px;
    padding: 20px;
  }

  .about-hero__badge h4 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 100vh;
  }

  .about-hero__title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .about-hero__label {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 2px;
  }

  .about-hero__badge {
    left: 20px;
    bottom: 20px;
    padding: 15px;
    max-width: 160px;
  }

  .about-hero__badge h4 {
    font-size: 32px;
  }

  .about-hero__badge p {
    font-size: 12px;
  }

  .about-hero__desc {
    font-size: 15px;
    padding: 0 10px;
  }

  .about-hero__scroll {
    display: none;
  }

  .about-stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
  }

  .about-gallery__item:nth-child(2),
  .about-gallery__item:nth-child(3) {
    margin-top: 0;
  }
}

/* ========================================
   About Services Section - Garage Door Effect
   ======================================== */
.about-services {
  padding: 120px 0;
  background: var(--makan-ink);
  position: relative;
  overflow: hidden;
}

.about-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(140, 122, 92, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(214, 200, 174, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.about-services__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.about-services__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-sand);
  margin-bottom: 30px;
  display: block;
  opacity: 0;
}

.about-services__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

/* Garage Door Line Animation */
.garage-line {
  display: block;
  overflow: hidden;
  position: relative;
}

.garage-text {
  display: block;
  transform: translateY(100%);
}

.about-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.about-services__list li {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}

.about-services__list li:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-services__list li:nth-child(even) {
  padding-left: 30px;
}

.about-services__list li:hover {
  color: #fff;
  padding-left: 10px;
}

.about-services__list li:nth-child(even):hover {
  padding-left: 40px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-services__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-services__list {
    grid-template-columns: 1fr;
  }

  .about-services__list li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .about-services__list li:nth-child(even) {
    padding-left: 0;
  }

  .about-services__list li:hover,
  .about-services__list li:nth-child(even):hover {
    padding-left: 20px;
  }
}

/* ========================================
   Project Details Page Styles
   ======================================== */

/* Project Hero */
.project-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.project-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.project-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 80px;
}

.project-hero__inner {
  max-width: 900px;
}

.project-hero__category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-sand);
  margin-bottom: 20px;
}

.project-hero__title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.project-hero__subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* Project Info */
.project-info {
  padding: 80px 0;
  background: var(--makan-cream);
}

.project-info__details {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.project-info__item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.project-info__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.project-info__item .label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--makan-gray);
  margin-bottom: 10px;
}

.project-info__item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--makan-ink);
  margin: 0;
}

/* Project Description */
.project-description {
  padding: 120px 0;
  background: #fff;
}

.project-description__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.project-description__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-olive);
  margin-bottom: 20px;
}

.project-description__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--makan-ink);
  line-height: 1.2;
}

.project-description__content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--makan-gray);
  margin-bottom: 25px;
}

.project-description__content blockquote {
  margin: 40px 0;
  padding: 30px 40px;
  background: var(--makan-cream);
  border-left: 4px solid var(--makan-olive);
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--makan-ink);
  border-radius: 0 12px 12px 0;
}

.project-description__content blockquote cite {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-style: normal;
  color: var(--makan-gray);
}

/* Project Gallery */
.project-gallery {
  padding: 40px 0;
  background: var(--makan-cream);
}

.project-gallery--second {
  padding-bottom: 100px;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.project-gallery__grid--alt {
  grid-template-columns: 1fr 1fr 2fr;
}

.project-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  height: 100%;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-gallery__item:hover img {
  transform: scale(1.05);
}

.project-gallery__item--large {
  grid-row: span 2;
  min-height: 620px;
}

/* 2-image gallery: side by side */
.project-gallery__grid--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.project-gallery__grid--two .project-gallery__item--large {
  grid-row: span 1;
}

/* 1-image gallery: full width */
.project-gallery__grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.project-gallery__grid--single .project-gallery__item {
  grid-row: span 1;
}

/* Project Features */
.project-features {
  padding: 120px 0;
  background: var(--makan-ink);
}

.project-features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.project-features__header {
  text-align: center;
  margin-bottom: 80px;
}

.project-features__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--makan-sand);
  margin-bottom: 20px;
}

.project-features__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
}

.project-features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-features__item {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.project-features__item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.project-features__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--makan-sand);
  line-height: 1;
  opacity: 0.5;
}

.project-features__content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.project-features__content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Project Navigation */
.project-nav {
  padding: 80px 0;
  background: var(--makan-cream);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.project-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-nav__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 50px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.project-nav__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.project-nav__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--makan-gray);
}

.project-nav__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--makan-ink);
}

.project-nav__link--next {
  text-align: right;
}

.project-nav__link--next .project-nav__label {
  justify-content: flex-end;
}

/* Responsive Project Details */
@media (max-width: 1199px) {
  .project-info__details {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-description__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-gallery__grid,
  .project-gallery__grid--alt {
    grid-template-columns: 1fr 1fr;
  }

  .project-gallery__grid--two,
  .project-gallery__grid--single {
    grid-template-columns: 1fr 1fr;
  }

  .project-gallery__grid--single {
    grid-template-columns: 1fr;
  }

  .project-gallery__item--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .project-gallery__grid--two .project-gallery__item--large {
    grid-column: span 1;
  }

  .project-features__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .project-hero {
    min-height: 600px;
  }

  .project-hero__content {
    padding-bottom: 60px;
  }

  .project-info__details {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-gallery__grid,
  .project-gallery__grid--alt,
  .project-gallery__grid--two,
  .project-gallery__grid--single {
    grid-template-columns: 1fr;
  }

  .project-gallery__item--large {
    grid-column: span 1;
  }

  .project-features__item {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .project-nav__inner {
    flex-direction: column;
    gap: 20px;
  }

  .project-nav__link {
    width: 100%;
    padding: 25px 30px;
  }

  .project-nav__link--next {
    text-align: left;
  }

  .project-nav__link--next .project-nav__label {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .project-info__details {
    grid-template-columns: 1fr;
  }

  .project-info__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px 25px;
  }

  .project-info__item .label {
    margin-bottom: 0;
  }

  .project-description__content blockquote {
    padding: 20px 25px;
    font-size: 17px;
  }
}

/* Project Gallery Images */
.project-gallery__item.rr-ov-hidden img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero__bg {
  overflow: hidden;
}

.project-hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-image-rendering: auto;
  filter: blur(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.02);
}

/* ========================================
   Brand Statement Section
   ======================================== */
.brand-statement {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 40px;
  overflow: hidden;
}

.brand-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.brand-statement__inner {
  position: relative;
  max-width: 1200px;
  text-align: center;
  z-index: 1;
}

.brand-statement__text {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0;
}

.brand-statement__text .word {
  display: inline-block;
  margin-right: 0.2em;
}

.brand-statement__text .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-statement__text .word.highlight {
  color: var(--makan-sand);
  font-weight: 600;
}

/* Scroll Indicator */
.brand-statement__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.brand-statement__scroll .scroll-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.brand-statement__scroll .scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.brand-statement__scroll .scroll-line {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--makan-sand);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .brand-statement {
    padding: 80px 20px;
    min-height: 40vh;
  }

  .brand-statement__text {
    font-size: clamp(20px, 5vw, 32px);
  }

  .brand-statement__scroll {
    bottom: 25px;
  }

  .brand-statement__scroll .scroll-text {
    font-size: 10px;
  }
}

/* ========================================
   Image Loading Skeleton
   ======================================== */
.img-skeleton {
  position: relative;
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.img-skeleton::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--makan-sand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

img.loaded + .img-skeleton,
img.loaded ~ .img-skeleton {
  display: none;
}

/* All images visible */
img[loading="lazy"] {
  opacity: 1;
}

img:not([loading="lazy"]) {
  opacity: 1;
}

/* ========================================
   Horizontal Scroll Gallery
   ======================================== */
.h-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

/* Gallery Scroll Hint */
.h-gallery__hint {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
  pointer-events: none;
  animation: hintPulse 2s ease-in-out infinite;
}

.h-gallery__hint .hint-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.h-gallery__hint .hint-arrow {
  color: var(--rr-primary);
  animation: hintArrow 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes hintArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.h-gallery__track {
  display: flex;
  gap: 30px;
  padding: 80px 40px;
  width: max-content;
}

.h-gallery__slide {
  position: relative;
  flex-shrink: 0;
  width: 60vw;
  max-width: 900px;
}

.h-gallery__img-wrap {
  position: relative;
  width: 100%;
  height: 75vh;
  max-height: 700px;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.h-gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}

.h-gallery__img-wrap img.loaded {
  opacity: 1;
}

.h-gallery__img-wrap.loaded {
  animation: none;
  background: transparent;
}

.h-gallery__slide:hover .h-gallery__img-wrap img {
  transform: scale(1.05);
}

.h-gallery__caption {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.h-gallery__slide:hover .h-gallery__caption {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile: Convert to horizontal touch scroll */
@media (max-width: 991px) {
  .h-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: auto;
    height: auto;
  }

  .h-gallery::-webkit-scrollbar {
    display: none;
  }

  .h-gallery__hint {
    display: none;
  }

  .h-gallery__track {
    padding: 60px 20px;
  }

  .h-gallery__slide {
    width: 75vw;
  }

  .h-gallery__img-wrap {
    height: 45vh;
  }
}

@media (max-width: 576px) {
  .h-gallery__track {
    padding: 40px 15px;
    gap: 15px;
  }

  .h-gallery__slide {
    width: 85vw;
  }

  .h-gallery__img-wrap {
    height: 40vh;
  }
}

/* ========================================
   Featured Projects Grid
   ======================================== */
.featured-projects {
  padding: 120px 0;
}

.featured-projects__header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-projects__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--makan-ink);
}

.featured-projects__subtitle {
  font-size: 16px;
  color: var(--makan-gray);
  max-width: 500px;
  margin: 0 auto;
}

.featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.fp-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-light 1.5s infinite;
}

@keyframes skeleton-light {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.fp-card.loaded {
  animation: none;
  background: transparent;
}

.fp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}

.fp-card img.loaded {
  opacity: 1;
}

.fp-card:hover img {
  transform: scale(1.1);
}

.fp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fp-card:hover .fp-card__overlay {
  opacity: 1;
}

.fp-card__overlay h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.fp-card__overlay span {
  color: var(--makan-sand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fp-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.fp-card--tall {
  grid-row: span 2;
}

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

@media (max-width: 1200px) {
  .featured-projects__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }

  .fp-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .featured-projects {
    padding: 80px 0;
  }

  .featured-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
  }

  .fp-card--large,
  .fp-card--tall,
  .fp-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .featured-projects__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}

/* ========================================
   Image Marquee
   ======================================== */
.img-marquee {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 60px 0;
}

.img-marquee__track {
  display: flex;
  gap: 20px;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.img-marquee__track img {
  height: 280px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.img-marquee__track img:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.img-marquee:hover .img-marquee__track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .img-marquee {
    padding: 40px 0;
  }

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

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stats-section__bg {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
}

.stats-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}

.stats-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.stats-section__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 100px 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.stat__plus {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  color: var(--makan-sand);
  vertical-align: top;
}

.stat__label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .stats-section__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .stats-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
  }
}

/* ========================================
   Process Timeline
   ======================================== */
.process-timeline {
  padding: 120px 0;
  overflow: hidden;
}

.process-timeline__header {
  text-align: center;
  margin-bottom: 80px;
}

.process-timeline__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--makan-ink);
}

.process-timeline__subtitle {
  font-size: 16px;
  color: var(--makan-gray);
}

.process-timeline__track {
  position: relative;
  padding-top: 40px;
}

.process-timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--makan-line);
  overflow: hidden;
}

/* Animated fill line */
.process-timeline__progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--makan-sand), var(--makan-olive), var(--makan-sand));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glowing dot that travels along the line */
.process-timeline__progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--makan-sand);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--makan-sand), 0 0 20px rgba(128, 129, 132, 0.5);
  animation: travel-dot 4s ease-in-out infinite;
  opacity: 0;
}

.process-timeline__progress.animated::before {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes travel-dot {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}

.process-timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.timeline-step {
  position: relative;
  padding-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--makan-sand);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-step.active::before {
  background: var(--makan-sand);
  transform: scale(1.2);
}

.timeline-step__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--makan-sand);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.timeline-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--makan-ink);
  margin-bottom: 10px;
}

.timeline-step__desc {
  font-size: 14px;
  color: var(--makan-gray);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .process-timeline__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    padding: 80px 0;
  }

  .process-timeline__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-timeline__steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-timeline__progress {
    display: none;
  }

  .timeline-step::before {
    display: none;
  }

  .timeline-step {
    padding-top: 0;
    padding-left: 30px;
    border-left: 2px solid var(--makan-line);
  }
}


/* ========================================
   Limited Edition Page - Additional Styles
   ======================================== */

/* Gallery Grid Variations */
.about-gallery__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.about-gallery__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991px) {
  .about-gallery__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-gallery__grid--4,
  .about-gallery__grid--5 {
    grid-template-columns: 1fr;
  }
}

/* Alt Gallery Style */
.about-gallery--alt {
  background: #f5f5f3;
}

/* Dark Gallery Style */
.about-gallery--dark {
  background: var(--makan-ink);
}

.about-gallery--dark .about-gallery__label,
.about-gallery--dark .about-gallery__title,
.about-gallery--dark .about-gallery__desc {
  color: #fff;
}

.about-gallery--dark .about-gallery__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Sculpture Section */
.about-values__inner--sculptures {
  gap: 80px;
}

.about-values__image-caption {
  margin-top: 20px;
  text-align: center;
}

.about-values__image-caption h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--makan-ink);
  margin-bottom: 5px;
}

.about-values__image-caption span {
  font-size: 14px;
  color: var(--makan-gray);
}

.about-values__sculpture-grid {
  margin-top: 40px;
}

.about-values__sculpture-item {
  max-width: 300px;
}

.about-values__sculpture-item img {
  width: 100%;
  height: auto;
}

.about-values__sculpture-info {
  margin-top: 15px;
}

.about-values__sculpture-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--makan-ink);
  margin-bottom: 5px;
}

.about-values__sculpture-info span {
  font-size: 13px;
  color: var(--makan-gray);
}

.about-values__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--makan-gray);
  margin-bottom: 20px;
}

.about-values__dimensions {
  margin-top: 30px;
}

.about-values__dimensions span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--makan-ink);
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Reverse Layout */
.about-values--reverse .about-values__inner {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .about-values--reverse .about-values__inner {
    flex-direction: column;
  }
}

/* Art Founder Section */
.about-founder__inner--art {
  gap: 80px;
}

.about-founder__image {
  margin-top: 30px;
}

.about-founder__image img {
  width: 100%;
  height: auto;
  max-width: 600px;
}

/* Gallery Description */
.about-gallery__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--makan-gray);
  max-width: 700px;
  margin: 0 auto;
}

.about-gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

/* ========================================
   Contact Page - Quick Contact Section
   ======================================== */
.contact-quick {
  padding-top: 0;
}

.contact-quick__inner {
  text-align: center;
  padding: 80px 0;
}

.contact-quick__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--makan-gray);
  margin-bottom: 20px;
}

.contact-quick__title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.contact-quick__desc {
  font-size: 17px;
  color: var(--makan-gray);
  margin-bottom: 50px;
}

.contact-quick__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-quick__btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 50px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
  min-width: 280px;
}

.contact-quick__btn i {
  font-size: 32px;
}

.contact-quick__btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contact-quick__btn strong {
  font-size: 20px;
  font-weight: 600;
}

.contact-quick__btn small {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 3px;
}

.contact-quick__btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-quick__btn--whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-quick__btn--call {
  background: var(--makan-ink);
  color: #fff;
}

.contact-quick__btn--call:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .contact-quick__title {
    font-size: 32px;
  }

  .contact-quick__buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-quick__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 20px 30px;
  }
}

/* ========================================
   Footer Newsletter/Subscribe
   ======================================== */
.footer-luxury__newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 20px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-luxury__form button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
}

.footer-luxury__form button span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   Projects Page - Filter & Section Labels
   ======================================== */
.projects-filter {
  padding: 0 0 60px;
}

.projects-filter__inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.projects-filter__btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--makan-ink);
}

.projects-filter__btn:hover {
  background: var(--makan-ink);
  color: #fff;
  border-color: var(--makan-ink);
}

.projects-filter__btn.active {
  background: var(--makan-ink);
  color: #fff;
  border-color: var(--makan-ink);
}

.projects__section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 0;
  border-bottom: none;
}

.projects__section-label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--makan-gray);
  letter-spacing: 1px;
}

.projects__section-label h3 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  flex: 1;
}

/* Remove border-top lines from project items on the projects listing page */
[data-category] .projects__item .projects__content {
  border-top: none;
  padding-top: 0;
}

.projects__view-all {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--makan-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(31, 27, 23, 0.25);
  border-radius: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.projects__view-all:hover {
  background: var(--makan-ink);
  color: #fff;
  border-color: var(--makan-ink);
  gap: 16px;
}

.projects__view-all i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.projects__view-all:hover i {
  transform: translateX(4px);
}

@media only screen and (max-width: 767px) {
  .projects__section-label {
    flex-wrap: wrap;
    gap: 15px;
  }

  .projects__section-label h3 {
    font-size: 24px;
  }

  .projects__view-all {
    padding: 10px 24px;
    font-size: 11px;
  }

  .projects-filter__btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ========================================
   Header Sub Menu Dropdown
   ======================================== */
.main-menu > ul > li.has-dropdown {
  position: relative;
}

.main-menu > ul > li.has-dropdown > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--makan-ink);
  min-width: 220px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.main-menu > ul > li.has-dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu > ul > li.has-dropdown > .sub-menu li {
  list-style: none;
}

.main-menu > ul > li.has-dropdown > .sub-menu li a {
  display: block;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.main-menu > ul > li.has-dropdown > .sub-menu li a:hover {
  color: #fff !important;
  padding-left: 30px;
}

/* Force white text in sub-menu regardless of header state */
.header-area-19.header-dark .main-menu > ul > li.has-dropdown > .sub-menu li a,
.header-area-19.header-white-bg .main-menu > ul > li.has-dropdown > .sub-menu li a,
.header-area-19.header-dark.scrolled .main-menu > ul > li.has-dropdown > .sub-menu li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.header-area-19.header-dark .main-menu > ul > li.has-dropdown > .sub-menu li a:hover,
.header-area-19.header-white-bg .main-menu > ul > li.has-dropdown > .sub-menu li a:hover,
.header-area-19.header-dark.scrolled .main-menu > ul > li.has-dropdown > .sub-menu li a:hover {
  color: #fff !important;
}

/* ========================================
   Project Description
   ======================================== */
.projects__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--makan-sand);
  font-weight: 300;
  max-width: 500px;
}

/* ========================================
   Artist Signature
   ======================================== */
.artist-signature {
  display: block;
  max-width: 200px;
  margin-top: 20px;
  opacity: 0.85;
  filter: brightness(0);
}

.about-gallery--dark .artist-signature,
.about-hero .artist-signature {
  filter: brightness(0) invert(1);
}

/* ========================================
   Footer Lock Overlay
   ======================================== */
.footer-lock-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 99;
}

@media (max-width: 767px) {
  .footer-lock-overlay {
    display: none !important;
  }
}

