/* Fonts imported via HTML */

:root {
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --brand-gold: #D4AF37;
  --brand-cyan: #00CED1;
  --dark-bg: #0F0F0F;
  --dark-bg-alt: #1A1A1A;
  --card-bg: #141414;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --bg-primary: #FAFAF8;
  --bg-secondary: #F5F3EF;
  --bg-card: #FFFFFF;
  --cream-bg: #FAF9F6;
  --light-cream: #F5F5DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-bg);
  color: #111;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gold-text {
  color: var(--brand-gold);
}

img {
  max-width: 100%;
  height: auto;
}

.cyan-text {
  color: var(--brand-cyan);
}

.split-text span:last-child em {
  color: var(--brand-gold);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream-bg);
  z-index: 999;
  animation: fadeOut 1.2s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==================== */
/* NAVBAR - DESKTOP     */
/* ==================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s var(--ease-strong);
}

@media (min-width: 1024px) {
  .navbar {
    position: absolute;
    top: 30px;
    right: 30px;
    left: auto;
    width: fit-content;
    max-width: 90%;
    padding: 0 30px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* Restore border */
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
}

/* .navbar.scrolled {
  top: 15px;
  width: 85%;
  height: 70px;
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
} */

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-pop);
}

.logo:hover {
  transform: scale(1.05);
}

.brand-left {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-center {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #111;
}

.brand-tagline {
  font-size: 13px;
  color: #555;
}

.brand-sub {
  font-size: 11px;
  color: #777;
}

.brand-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand-right a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-cyan);
  position: relative;
  transition: all 0.3s ease;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-right a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-cyan));
  transition: width 0.4s var(--ease-soft);
}

.brand-right a:hover::after,
.brand-right a.active::after {
  width: 100%;
}

.brand-right a:hover,
.brand-right a.active {
  color: var(--brand-gold);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.brand-logo-fixed {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1001;
  display: block;
}

.brand-logo-fixed .logo {
  height: 60px;
  /* Increased size for better visibility */
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-scroll {
  text-decoration: none;
  cursor: pointer;
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */

.hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #000;
}

@media (min-width: 1024px) {
  .hero {
    height: 90vh;
  }
}


/* 1. Background Blur Layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-layer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.4);
  transform: scale(1.15);
  /* Slightly larger start */
  opacity: 0;
  transition: opacity 1.8s var(--ease-soft), transform 8s linear;
  /* Continuous slow movement */
}

.hero-bg-layer img.active {
  opacity: 1;
  transform: scale(1.05);
  /* Slow zoom out effect while active */
}

/* 2. Main Image Layer (No Crop) */
.hero-main-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media (min-width: 1024px) {
  .hero-main-layer {
    padding: 80px 40px;
  }
}

.hero-main-layer img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* The key fix: show full image */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  /* Lift it off the background */
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.1);
  /* Start zoomed in */
  transition:
    opacity 1.5s var(--ease-soft),
    filter 1.5s ease-out,
    transform 7s ease-out;
  /* Slow continuous zoom out */
}

.hero-main-layer img.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  /* Settle to natural size */
}

/* Content sits on top */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5% 100px;
  pointer-events: none;
  /* Let clicks pass through to image if needed, but mostly for text selection */
}

.hero-text {
  max-width: 900px;
  transition: opacity 3s ease-in-out;
  opacity: 0;
  pointer-events: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Enhance readability over images */
}

.hero-text.visible {
  opacity: 1;
}

.hero-text.hidden {
  opacity: 0;
}

.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(50px, 10vw, 110px);
    line-height: 1.05;
  }
}

.hero-title span {
  display: block;
}

.gold-segment {
  color: var(--brand-gold);
}

.cyan-segment {
  color: var(--brand-cyan);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  font-weight: 400;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand-gold), transparent);
  animation: scrollLine 2s infinite;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .hero-scroll span {
    font-size: 16px;
    letter-spacing: 0.5em;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==================== */
/* SECTIONS - DESKTOP   */
/* ==================== */

.section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 100px;
  }
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.12), transparent);
  margin: 0 100px;
}

.golden-separator {
  width: 100%;
  height: 2px;
  background-color: var(--brand-gold);
  border: none;
  margin: 0;
}

.section h2,
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand-gold);
  line-height: 1.1;
}

.section p,
.section-intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: 18px;
  color: var(--brand-gold);
  line-height: 1.8;
}

#about {
  position: relative;
  background-color: #EFECE5;
  /* Lighter sand matching the scheme */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.section.dark {
  background: var(--dark-bg);
  color: #fff;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section.dark h2 {
  color: #fff;
}

#contact .split-text span:first-child em {
  color: var(--brand-cyan);
}

/* ==================== */
/* VIDEO SHOWCASE - NEW */
/* ==================== */

.video-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.video-section.video-showcase {
  height: 55vh;
  min-height: 350px;
}

@media (min-width: 1024px) {
  .video-section.video-showcase {
    height: 90vh;
    min-height: 550px;
    max-height: 950px;
  }
}

.video-showcase-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.showcase-video.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic Vignette */
  background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.video-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 10;
  max-width: 480px;
  padding: 56px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.video-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  opacity: 0.8;
}

.video-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  color: var(--brand-gold);
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-description {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.video-controls {
  position: absolute;
  bottom: 80px;
  right: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.video-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: none;
}

.video-nav-btn:hover {
  background: var(--brand-gold);
  color: #000;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: rotate(90deg);
}

.video-nav-btn svg {
  width: 20px;
  height: 20px;
}

.video-dots {
  display: flex;
  gap: 12px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--brand-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 0 4px;
  box-shadow: none;
}

.video-dot.active {
  background: var(--brand-gold);
  box-shadow: 0 0 10px var(--brand-gold);
  transform: scale(1.2);
  width: 8px;
}

.video-dot:hover {
  background: var(--brand-gold);
  transform: scale(1.2);
}


/* ==================== */
/* SERVICES SECTION     */
/* ==================== */

.services {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s var(--ease-pop);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.card-number {
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  pointer-events: none;
  transition: all 0.6s var(--ease-soft);
}

.service-card:hover .card-number {
  color: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brand-gold);
  padding-right: 60px;
  /* Space for number */
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
  /* Darker for better contrast on glass */
}

/* STAGGERED IMAGE GRID */
.service-images {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.service-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.5s var(--ease-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Creating the asymmetrical staggered look */
.service-images img:nth-child(even) {
  transform: translateY(20px);
}

.service-images img:nth-child(odd) {
  transform: translateY(-10px);
}

.service-images img:hover {
  transform: scale(1.1) translateY(0) !important;
  z-index: 5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ==================== */
/* REFERENCES SECTION   */
/* ==================== */

.references {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  padding: 100px 0;
}

.reference-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reference-grid {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.reference-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  background: #eee;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s var(--ease-pop);
}

.reference-item.tall {
  grid-row: span 2;
  height: 672px;
  /* 320 * 2 + 32 gap */
}

.reference-item.wide {
  grid-column: span 2;
}

.reference-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}

.reference-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease-soft);
  z-index: 2;
}

.ref-category {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.ref-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.reference-item:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.15);
}

.reference-item:hover img {
  transform: scale(1.1);
}

.reference-item:hover .reference-info {
  transform: translateY(0);
  opacity: 1;
}

/* Entrance Animation Stagger */
.reference-item.show:nth-child(2) {
  transition-delay: 0.1s;
}

.reference-item.show:nth-child(3) {
  transition-delay: 0.2s;
}

.reference-item.show:nth-child(4) {
  transition-delay: 0.3s;
}

/* ==================== */
/* CLIENTS SECTION      */
/* ==================== */

.clients {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  text-align: center;
  overflow: hidden;
  /* Hide overflow from marquee */
}

.clients-subtitle {
  margin-top: 48px;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /* Add fade masks */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
  /* Animation for 2 sets (Direct Clients) - moves 50% */
  animation: scroll-half 60s linear infinite;
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .marquee-track {
    gap: 120px;
    padding: 30px 0;
  }
}

/* Indirect Clients has 3 sets, needs different scroll distance */
.clients .marquee-container:nth-of-type(2) .marquee-track {
  animation: scroll-third 60s linear infinite reverse;
  /* Reverse direction for variety */
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-half {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-third {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-item img {
  height: 60px;
  /* Slightly larger premium size */
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* No grayscale as per user request */
  opacity: 0.85;
  /* Slight opacity for elegance */
  filter: contrast(1.05);
  /* Enhance visual pop */
}

.client-item:hover img {
  transform: scale(1.15);
  opacity: 1;
}

.client-item span {
  display: none;
  /* Hide any text spans if they existed */
}

/* ==================== */
/* ABOUT STORY SECTION  */
/* ==================== */

.about-story {
  padding: 120px 0;
  background-color: #EAE6DA;
  /* Intensified sand matching services-hero */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.story-content {
  max-width: 600px;
}

.story-lead {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.story-main-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  /* Clean contrast on beige */
  margin-bottom: 24px;
}

.story-visuals {
  position: relative;
  height: 600px;
}

.parallax-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 1s var(--ease-soft);
}

.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1 {
  width: 70%;
  height: 400px;
  top: 0;
  right: 0;
  z-index: 1;
}

.img-2 {
  width: 60%;
  height: 350px;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 8px solid var(--bg-secondary);
}

/* Stats Section */
.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1400px;
  margin: 100px auto 0;
  padding: 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
}

/* Scroll Animations */
.parallax-img.show.img-1 {
  transform: translateY(-20px);
}

.parallax-img.show.img-2 {
  transform: translateY(30px);
}

#about-story {
  scroll-margin-top: 100px;
}

/* ==================== */
/* CONTACT SECTION - NEW */
/* ==================== */

#contact {
  background: var(--dark-bg);
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

#contact.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  margin-top: 48px;
  max-width: 520px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  margin-bottom: 8px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--brand-gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 24px;
  padding: 16px 40px;
  border: none;
  background: var(--brand-gold);
  color: #000;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #e5c44a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* ==================== */
/* CONTACT INFO - NEW   */
/* ==================== */

.contact-info-section {
  background-color: #EFECE5;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
  color: #111;
  padding: 100px 80px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-info-section.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-info-section .section-title {
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.contact-info-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 500px;
}

.contact-info-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-gold), #c9a227);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  color: #000;
}

.contact-card h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-card-content {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
}

.contact-card a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-card a:hover {
  color: var(--brand-gold);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-person-name {
  font-weight: 500;
  color: #555;
  min-width: 70px;
}

.contact-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-cta-text {
  font-size: 24px;
  font-weight: 600;
  color: #111;
}

.contact-cta-text span {
  color: var(--brand-gold);
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--brand-gold);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  background: #e5c44a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

/* Legacy support */
.contact-info {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-block {
  background: var(--card-bg);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.contact-block.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-block h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.contact-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.contact-block a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--brand-gold);
}

/* ==================== */
/* SERVICES PAGE        */
/* ==================== */

.services-hero {
  padding-top: 110px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
  background-color: #EAE6DA;
  /* Slightly deeper sand for stronger effect */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.services-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.services-main-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--brand-gold);
}

.services-main-title span {
  color: var(--brand-gold);
}

.services-hero-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #000;
}

.services-process {
  position: relative;
  padding: 120px 80px;
  background-color: #F7F5F0;
  /* Clean sand base */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  overflow: hidden;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 60px 40px;
  border-radius: 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s var(--ease-pop);
  display: flex;
  flex-direction: column;
}

.service-process-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
}

.service-process-card:hover .service-process-icon {
  transform: scale(1.1) rotate(-5deg);
  color: #c5a02b;
  /* Slightly deeper gold on hover */
}

.process-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  transition: all 0.6s var(--ease-soft);
}

.service-process-card:hover .process-number {
  color: rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.service-process-icon {
  margin-bottom: 32px;
  color: var(--brand-gold);
  width: 48px;
  height: 48px;
  transition: all 0.6s var(--ease-soft);
}

.service-process-icon svg {
  width: 100%;
  height: 100%;
}

.service-process-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.service-process-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.services-section-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.services-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.services-section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brand-gold);
}

.services-section-title span {
  color: var(--brand-gold);
}

.services-section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
}

/* ==================== */
/* STRENGTHS SECTION    */
/* ==================== */

.our-strengths-section {
  padding: 140px 80px;
  background-color: #F3F0E8;
  /* Slightly varied sand for depth */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  color: #111;
}

.our-strengths-section h2 {
  text-align: center;
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 120px;
  color: var(--brand-gold);
  line-height: 1.1;
}

.strength-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 160px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.strength-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.strength-text {
  padding: 0 40px;
}

.strength-text h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
  color: #222;
}

.strength-highlight {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-top: 12px;
}

.strength-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

.strength-img {
  position: relative;
  z-index: 1;
}

.strength-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  transition: all 0.5s var(--ease-pop);
}

.strength-block:hover .strength-img img {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.2);
}

/* Overlapping decorative element */
.strength-img::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.8s var(--ease-soft);
}

.strength-block.reverse .strength-img::after {
  right: auto;
  left: -30px;
}

.strength-block:hover .strength-img::after {
  transform: translate(20px, -20px) rotate(10deg);
}

/* Scoped override for cyan text in services */
.services-page .cyan-text {
  color: #000 !important;
}

/* ==================== */
/* GALLERY PAGE         */
/* ==================== */

.gallery-body {
  background-color: #EFECE5;
  /* Updated sand to match other sections */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  min-height: 100vh;
}

.gallery-page {
  padding-top: 110px;
  position: relative;
  z-index: 1;
}

.portfolio-controls-container {
  max-width: 900px;
  margin: 40px auto 60px;

  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
  top: auto;
  z-index: 100;
}

.filter-container,
.dropdown-container {
  background-color: rgba(255, 255, 255, 0.45);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  width: fit-content;
}

.filter-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.4s var(--ease-soft);
}

.filter-btn.active {
  background: var(--brand-gold);
  color: white;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.filter-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.gallery-filters-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ==================== */
/* PREMIUM DROPDOWN     */
/* ==================== */

.gallery-company-select {
  position: relative;
  width: fit-content;
  z-index: 101;
  /* Higher than filters */
}

.selected-company {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-gold);
  padding: 16px 48px 16px 32px;
  background: rgba(255, 255, 255, 0.9);
  min-width: 300px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.selected-company:hover {
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
  transform: translateY(-2px);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s var(--ease-strong);
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}

.dropdown-options.show {
  max-height: 400px;
  /* Scrollable area */
  opacity: 1;
  visibility: visible;
  padding: 12px 0;
  overflow-y: auto;
}

/* Custom Scrollbar for dropdown */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: var(--brand-gold);
}

.dropdown-item {
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #000;
  padding-left: 36px;
  border-left-color: var(--brand-gold);
}

.dropdown-item.active {
  background: var(--brand-gold);
  color: #fff;
  border-left-color: transparent;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 8px;
  height: 8px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  transition: transform 0.4s var(--ease-pop);
  margin-top: -3px;
}

.gallery-company-select.active .select-arrow {
  transform: translateY(-50%) rotate(225deg);
  margin-top: 3px;
}

/* ==================== */
/* PROJECT OVERLAY      */
/* ==================== */

.project-overlay {
  position: fixed;
  inset: 0;
  background: #EFECE5;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-strong);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.project-overlay.active {
  transform: translateY(0);
}

.project-overlay-header {
  position: sticky;
  top: 0;
  background: rgba(239, 236, 229, 0.9);
  backdrop-filter: blur(10px);
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 10;
}

.project-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-back-btn:hover {
  color: var(--brand-gold);
  gap: 8px;
  /* Move text closer/icon moves */
}

.project-back-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.project-back-btn:hover svg {
  transform: translateX(-4px);
}

.project-overlay-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-gold);
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.3s var(--ease-pop);
}

.project-overlay.active .project-overlay-title {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay-content {
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.project-overlay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-pop);
}

.project-overlay.active .project-img-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.project-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--ease-soft);
}

.project-img-wrapper:hover img {
  transform: scale(1.05);
}

.project-overlay-info {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

@media (max-width: 768px) {
  .project-overlay-grid {
    grid-template-columns: 1fr;
  }

  .project-overlay-title {
    font-size: 20px;
  }
}

/* Original Gallery Select - Hide Native parts but keep container for layout if needed, 
   but we rewrote the CSS above to override. 
   Deleting or Overwriting old block below to avoid conflict */

.gallery-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  transition: all 0.6s var(--ease-soft), border-color 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .gallery-card.wide {
    grid-column: span 1;
  }
}

.gallery-card.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card.hide {
  display: none;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft), opacity 0.5s ease;
}

.gallery-card video {
  opacity: 0.85;
}

.gallery-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover img,
.gallery-card:hover video {
  transform: scale(1.05);
  opacity: 1;
}

/* Video Badge */
.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #fff;
  font-size: 12px;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-soft);
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.card-info {
  transform: translateY(20px);
  transition: transform 0.6s var(--ease-soft);
  width: 100%;
}

.gallery-card:hover .card-info {
  transform: translateY(0);
}

.card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.card-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  color: #fff;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

.view-project-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  box-shadow: none;
}

.view-project-btn:hover {
  background: var(--brand-gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ==================== */
/* PURE PROJECT MODE    */
/* ==================== */

.project-mode .card-info,
.project-mode .view-project-btn {
  display: none !important;
}

.gallery-lightbox.project-view-active .lightbox-view-project {
  display: none !important;
}

/* ==================== */
/* LIGHTBOX             */
/* ==================== */

.service-lightbox,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.service-lightbox.show,
.gallery-lightbox.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 90vw;
  max-height: 85vh;
}

.gallery-lightbox .lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-soft);
}

.gallery-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-view-project {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-soft);
  z-index: 10;
  pointer-events: none;
}

.gallery-lightbox.active .lightbox-view-project {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition-delay: 0.3s;
}

.service-lightbox button,
.gallery-lightbox button:not(.view-project-btn) {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-soft);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.gallery-lightbox button:not(.view-project-btn):hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.service-lightbox .lightbox-close,
.gallery-lightbox .lightbox-close {
  top: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.service-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-prev {
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.service-lightbox .lightbox-next,
.gallery-lightbox .lightbox-next {
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media (max-width: 900px) {

  /* GLOBAL MOBILE FIXES */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* NAVBAR MOBILE */
  .navbar {
    height: auto;
    min-height: 50px;
    padding: 8px 12px;
    position: fixed;
    top: 12px;
    right: 12px;
    left: auto;
    width: auto;
    z-index: 10001;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 18px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    order: 1;
    z-index: 10002;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
  }

  /* MOBILE MENU STYLES */
  .mobile-menu {
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    display: none !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 9998;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: #ffffff;
    color: var(--brand-gold);
  }

  /* LOGO MOBILE */
  .brand-logo-fixed {
    top: 12px;
    left: 12px;
    height: 40px;
    width: auto;
    z-index: 10001;
  }

  .brand-logo-fixed .logo {
    height: 40px;
    width: auto;
  }

  /* HERO MOBILE */
  .hero {
    height: 60vh;
    min-height: 380px;
    padding-top: 0;
  }

  .hero-content {
    padding: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: -0.02em;
  }

  .hero-title span {
    display: block;
    margin-bottom: 4px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-scroll {
    bottom: 60px !important;
    gap: 8px;
    opacity: 0.6;
  }

  .scroll-line {
    height: 35px !important;
  }

  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  /* VIDEO SECTION MOBILE */
  .video-section.video-showcase {
    height: 50vh;
    min-height: 320px;
  }

  .video-content {
    bottom: 60px;
    top: auto;
    left: 16px;
    right: 16px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    z-index: 5;
  }

  .video-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--brand-gold);
  }

  .video-title {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1.2;
    font-weight: 700;
  }

  .video-description {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .video-controls {
    bottom: 20px;
    right: 16px;
    left: auto;
    gap: 10px;
    z-index: 10;
  }

  .video-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--brand-gold);
  }

  .video-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .video-dot {
    width: 6px;
    height: 6px;
    margin: 0 2px;
  }

  /* SECTIONS MOBILE */
  .section {
    padding: 40px 16px;
    text-align: left;
  }

  .section h2,
  .section-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    word-wrap: break-word;
  }

  .section p,
  .section-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
  }

  .section-divider {
    margin: 0 16px;
    height: 1px;
  }

  /* SERVICES GRID MOBILE */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .service-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }

  .service-card h3 {
    font-size: 18px;
    padding-right: 30px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .card-number {
    font-size: 32px;
    top: 16px;
    right: 16px;
  }

  .service-images {
    gap: 10px;
    margin-top: auto;
  }

  .service-images img {
    border-radius: 12px;
    aspect-ratio: 1;
  }

  .service-images img:nth-child(even),
  .service-images img:nth-child(odd) {
    transform: translateY(0) !important;
  }

  /* REFERENCE GRID MOBILE */
  .reference-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .reference-item {
    height: 200px;
    border-radius: 12px;
  }

  .reference-item.tall {
    grid-row: span 1;
    height: 200px;
  }

  .reference-item.wide {
    grid-column: span 1;
  }

  .reference-info {
    padding: 16px;
    opacity: 1;
    transform: translateY(0);
  }

  .ref-title {
    font-size: 16px;
  }

  .ref-category {
    font-size: 10px;
  }

  /* CLIENTS MARQUEE MOBILE */
  .marquee-track {
    gap: 20px;
    padding: 16px 0;
  }

  .client-item img {
    height: 40px;
    max-width: 150px;
  }

  .clients-subtitle {
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  /* ABOUT STORY MOBILE */
  .story-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .story-content {
    max-width: 100%;
  }

  .story-main-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
  }

  .story-lead {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .story-visuals {
    height: 220px;
    position: relative;
    margin-bottom: 0;
  }

  .parallax-img {
    position: absolute !important;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: none !important;
  }

  .img-1 {
    width: 70% !important;
    height: 140px !important;
    top: 0;
    right: 0;
    z-index: 1;
  }

  .img-2 {
    width: 60% !important;
    height: 120px !important;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 3px solid var(--bg-secondary) !important;
  }

  .parallax-img.show.img-1,
  .parallax-img.show.img-2 {
    transform: translateY(0) !important;
  }

  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    gap: 16px;
    padding: 0 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .stat-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: none;
    text-align: left;
  }

  .stat-number {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* CONTACT SECTION MOBILE */
  #contact {
    padding: 40px 16px;
  }

  #contact h2 {
    font-size: 24px;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 0;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .contact-form button {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }

  /* CONTACT INFO MOBILE */
  .contact-info-section {
    padding: 40px 16px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .contact-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card h4 {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .contact-card-content {
    font-size: 13px;
    line-height: 1.6;
  }

  .contact-person {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .contact-person-name {
    font-size: 12px;
  }

  .contact-cta {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .contact-cta-text {
    font-size: 16px;
  }

  .contact-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  /* GALLERY PAGE MOBILE */
  .gallery-page {
    padding-top: 70px !important;
  }

  .gallery-page .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .gallery-page .section-intro {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .portfolio-controls-container {
    flex-direction: column;
    gap: 12px;
    margin: 20px auto;
    padding: 0 16px;
  }

  .filter-container,
  .dropdown-container {
    width: 100%;
    padding: 12px 16px;
    border-radius: 24px;
  }

  .gallery-filters {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .selected-company {
    font-size: 13px;
    padding: 12px 16px;
    min-width: 100%;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    padding: 0 16px;
  }

  .gallery-card {
    height: 180px;
    border-radius: 12px;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

  .card-overlay {
    padding: 16px;
  }

  .card-info {
    transform: translateY(0);
  }

  .card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .card-category {
    font-size: 9px;
  }

  .view-project-btn {
    padding: 8px 16px;
    font-size: 10px;
  }

  /* PROJECT OVERLAY MOBILE */
  .project-overlay {
    padding-top: 60px;
  }

  .project-overlay-header {
    padding: 16px;
  }

  .project-overlay-title {
    font-size: 20px;
  }

  .project-overlay-content {
    padding: 20px 16px;
  }

  .project-overlay-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-img-wrapper {
    border-radius: 12px;
  }

  /* LIGHTBOX MOBILE */
  .service-lightbox button,
  .gallery-lightbox button {
    width: 40px;
    height: 40px;
  }

  .service-lightbox .lightbox-close,
  .gallery-lightbox .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .service-lightbox .lightbox-prev,
  .gallery-lightbox .lightbox-prev {
    left: 8px;
    width: 40px;
    height: 40px;
  }

  .service-lightbox .lightbox-next,
  .gallery-lightbox .lightbox-next {
    right: 8px;
    width: 40px;
    height: 40px;
  }

  /* SERVICES PAGE MOBILE */
  .services-hero {
    padding: 80px 16px 40px;
    text-align: left;
  }

  .services-main-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .services-hero-text {
    font-size: 13px;
    max-width: 100%;
  }

  .services-process {
    padding: 40px 16px;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-process-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .service-process-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .service-process-card p {
    font-size: 13px;
  }

  .process-number {
    font-size: 28px;
    top: 12px;
    right: 12px;
  }

  .service-process-icon {
    margin-bottom: 12px;
    width: 32px;
    height: 32px;
  }

  /* STRENGTHS MOBILE */
  .our-strengths-section {
    padding: 40px 16px;
  }

  .our-strengths-section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .strength-block,
  .strength-block.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-text h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .strength-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .strength-img img {
    height: auto;
    max-height: 300px;
    border-radius: 12px;
  }

  /* FOOTER MOBILE */
  .footer-nav {
    padding: 32px 16px;
    border-top: 2px solid var(--brand-gold);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .footer-brand .logo {
    height: 36px;
    margin-bottom: 12px;
  }

  .footer-links h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 12px;
    padding: 6px 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-cta-btn {
    padding: 10px 16px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }

  .footer-social {
    gap: 12px;
    margin-top: 12px;
  }

  .footer-social img {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 16px;
  }

  /* WHATSAPP BUTTON MOBILE */
  .whatsapp {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp img {
    width: 56px;
    height: 56px;
  }

  /* ENSURE NO HORIZONTAL SCROLL */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* TEXT READABILITY */
  body {
    font-size: 14px;
  }

  /* PREVENT DOUBLE TAP ZOOM DELAYS */
  button, a {
    touch-action: manipulation;
  }

}

/* TABLET OPTIMIZATION (601px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card h3 {
    font-size: 16px;
  }

  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2,
  .section-title {
    font-size: 32px;
  }

  .section p {
    font-size: 15px;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1400px) {
  .navbar {
    padding: 0 100px;
  }

  .section {
    padding: 120px 120px;
  }

  .hero-content {
    padding-left: 120px;
  }

  .video-content {
    left: 120px;
  }

  .video-controls {
    right: 120px;
  }

  .services-hero {
    padding-left: 120px;
    padding-right: 120px;
  }

  .services-process {
    padding: 120px 120px;
  }

  .our-strengths-section {
    padding: 120px 120px;
  }

  .contact-info-section {
    padding: 120px 120px;
  }
}