/* ============================================================
   MAMIJOJO CUISINE & RENTALS — COMPLETE DESIGN SYSTEM
   Dark luxury Nigerian hospitality brand
   ============================================================ */

/* --- CSS VARIABLES ----------------------------------------- */
:root {
  --orange:       #F4800A;
  --orange-light: #FF9B2E;
  --orange-dark:  #C2640A;
  --green:        #8DC63F;
  --green-dark:   #6BA82E;
  --gold:         #C9A84C;
  --gold-light:   #E0C068;
  --dark:         #0D0D0D;
  --dark-2:       #141414;
  --dark-3:       #1C1C1C;
  --dark-4:       #242424;
  --dark-card:    rgba(20,20,20,0.92);
  --white:        #FFFFFF;
  --off-white:    #F5F0EA;
  --gray-1:       #AAAAAA;
  --gray-2:       #666666;
  --gray-3:       #333333;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --shadow-orange: 0 0 40px rgba(244,128,10,0.25);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-heavy:  0 20px 80px rgba(0,0,0,0.8);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --radius-pill:  100px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height:   80px;
  --container:    1280px;
  --container-sm: 960px;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem);  font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--gray-1); font-size: 1rem; }
.script { font-family: var(--font-script); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }

/* --- LAYOUT ------------------------------------------------- */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.section      { padding: 100px 0; }
.section-sm   { padding: 60px 0; }
.w100         { width: 100%; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.grid-2       { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- SECTION LABELS ---------------------------------------- */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--font-head); color: var(--white);
  margin-bottom: 20px;
}
.section-title span { color: var(--orange); }
.section-title em   { font-style: italic; color: var(--green); }
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-1); max-width: 600px;
  line-height: 1.8; margin-bottom: 48px;
}

/* --- BUTTONS ----------------------------------------------- */
.btn-primary, .btn-outline, .btn-wa, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; font-family: var(--font-body);
  transition: var(--transition); cursor: pointer; white-space: nowrap;
  min-height: 50px; border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); border-color: var(--orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-2px); box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-wa:hover {
  background: #20BA5A; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-ghost {
  background: var(--glass); color: var(--white);
  border-color: var(--glass-border); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; min-height: 40px; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; min-height: 58px; }

/* --- GLASS CARD -------------------------------------------- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* --- PRELOADER --------------------------------------------- */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner  { text-align: center; }
.preloader-logo   {
  font-family: var(--font-head); font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: -0.02em;
  animation: preloaderFade 0.8s ease forwards;
}
.pre-mami { color: var(--orange); }
.pre-jojo { color: var(--green); }
.preloader-tagline {
  font-family: var(--font-script); font-size: 1.2rem;
  color: var(--gray-1); margin: 8px 0 32px;
  animation: preloaderFade 0.8s ease 0.2s both;
}
.preloader-bar-wrap {
  width: 200px; height: 2px; background: var(--dark-4);
  border-radius: var(--radius-pill); margin: 0 auto; overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: var(--radius-pill);
  animation: preloaderBar 1.8s ease forwards;
}
@keyframes preloaderFade { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes preloaderBar  { to { width: 100%; } }

/* --- CUSTOM CURSOR ----------------------------------------- */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(244,128,10,0.5);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover #cursor-dot  { width: 14px; height: 14px; background: var(--green); }
body.cursor-hover #cursor-ring { width: 50px; height: 50px; border-color: rgba(141,198,63,0.5); }

/* --- NAVIGATION -------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; }
.logo-mami { color: var(--orange); }
.logo-jojo { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-link {
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--orange); border-radius: 50%;
}
/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--dark-3); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 8px; min-width: 180px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: var(--transition); list-style: none;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 16px; font-size: 0.875rem;
  color: var(--gray-1); border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--orange); background: var(--glass); }
/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--gray-1); font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.nav-call:hover { color: var(--orange); }
.btn-nav-wa {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: rgba(37,211,102,0.15);
  color: #25D366; border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.btn-nav-wa:hover { background: #25D366; color: var(--white); }
.btn-nav-quote {
  display: flex; align-items: center;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.btn-nav-quote:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(340px, 90vw);
  height: 100vh; background: var(--dark-2); z-index: 1100;
  padding: 80px 32px 40px; transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column; gap: 32px; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 1.4rem; color: var(--gray-1); cursor: pointer;
  transition: var(--transition);
}
.mobile-close:hover { color: var(--orange); }
.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-links a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  color: var(--gray-1); border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.mobile-links a:hover { color: var(--orange); padding-left: 8px; }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1050; opacity: 0; visibility: hidden; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* --- HERO --------------------------------------------------- */
.hero-wrapper {
  position: relative; height: 600vh;
}
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 50%, #1a0f00 100%);
}
.hero-bg-phase {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-bg-phase.active { opacity: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.92) 40%, rgba(13,13,13,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
  padding: 0 24px; max-width: var(--container); margin: 0 auto;
}
.hero-phase {
  position: absolute; width: 100%;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-phase.active {
  opacity: 1; transform: translateY(0); pointer-events: auto; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid rgba(244,128,10,0.4);
  border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600;
  color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px; background: rgba(244,128,10,0.08);
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: blink 1.4s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; color: var(--white);
}
.hero-title .accent { color: var(--orange); }
.hero-title .italic { color: var(--green); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-1); max-width: 520px;
  line-height: 1.8; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px;
}
.hero-stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); border-radius: var(--radius-md);
  padding: 16px 24px; min-width: 130px;
  animation: floatUp 3s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) { animation-delay: 0.5s; }
.hero-stat-card:nth-child(3) { animation-delay: 1s; }
.hero-stat-card:nth-child(4) { animation-delay: 1.5s; }
.hero-stat-number { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.hero-stat-label  { font-size: 0.75rem; color: var(--gray-1); margin-top: 2px; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-2); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounceDown 2s ease infinite;
}
.hero-scroll-arrow { font-size: 1.2rem; }
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* --- MARQUEE ----------------------------------------------- */
.marquee-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 16px 0; overflow: hidden; position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px; padding: 0 24px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white); white-space: nowrap;
}
.marquee-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SERVICES ---------------------------------------------- */
.services-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--glass-border); background: var(--glass);
  color: var(--gray-1); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--orange); color: var(--orange);
  background: rgba(244,128,10,0.1);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark-3); border: 1px solid var(--glass-border);
  transition: var(--transition); position: relative;
  transform-style: preserve-3d; perspective: 1000px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card.hidden { display: none; }
.service-card-img {
  width: 100%; height: 220px; object-fit: cover;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--orange);
}
.service-card-body { padding: 24px; }
.service-badge {
  display: inline-block; padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.badge-catering { background: rgba(244,128,10,0.15); color: var(--orange); }
.badge-rentals  { background: rgba(141,198,63,0.15); color: var(--green); }
.badge-support  { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-organic  { background: rgba(141,198,63,0.2); color: var(--green); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.service-card p  { font-size: 0.875rem; color: var(--gray-1); line-height: 1.7; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
}
.service-card-link:hover { gap: 12px; }

/* --- SCROLL STORY ------------------------------------------ */
.scroll-story-wrapper { position: relative; height: 400vh; }
.scroll-story-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.story-left {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px 80px 80px; position: relative;
}
.story-panel {
  position: absolute; width: calc(100% - 140px);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.story-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.story-ghost-number {
  font-family: var(--font-head); font-size: 8rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  position: absolute; top: -20px; left: -10px;
  user-select: none;
}
.story-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 12px;
}
.story-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white);
  margin-bottom: 16px; line-height: 1.2;
}
.story-text { font-size: 1rem; color: var(--gray-1); line-height: 1.8; }
.story-progress {
  position: absolute; bottom: 48px; left: 80px;
  display: flex; gap: 8px;
}
.story-dot {
  width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: var(--gray-3); transition: all 0.4s ease;
}
.story-dot.active { width: 32px; background: var(--orange); }
.story-right { position: relative; overflow: hidden; }
.story-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.story-image.active { opacity: 1; }
.story-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}

/* --- STATS -------------------------------------------------- */
.stats-section { background: var(--dark-2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid var(--glass-border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass); }
.stat-number {
  font-family: var(--font-head); font-size: clamp(2.5rem,4vw,4rem);
  font-weight: 900; color: var(--orange); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-suffix { color: var(--green); }
.stat-label {
  font-size: 0.875rem; color: var(--gray-1);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}

/* --- GALLERY ----------------------------------------------- */
.gallery-preview-grid {
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.gallery-item.hidden { display: none; }
.gallery-placeholder {
  width: 100%; background: var(--dark-3); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-2); font-size: 2.5rem;
}

/* --- TESTIMONIALS ------------------------------------------ */
.testimonials-section { overflow: hidden; }
.swiper-testimonials { overflow: visible; padding-bottom: 40px; }
.testimonial-card {
  width: 380px; padding: 36px;
  background: var(--dark-3); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); height: auto;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-quote {
  font-size: 0.95rem; color: var(--gray-1); line-height: 1.8;
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testimonial-name  { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.testimonial-event { font-size: 0.8rem; color: var(--orange); }
.swiper-nav {
  display: flex; gap: 12px; justify-content: center; margin-top: 32px;
}
.swiper-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.swiper-btn:hover { background: var(--orange); border-color: var(--orange); }

/* --- WHY MAMIJOJO ------------------------------------------ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-reasons { display: flex; flex-direction: column; gap: 0; }
.why-reason {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition); cursor: default;
}
.why-reason:hover { padding-left: 12px; }
.why-reason:last-child { border-bottom: none; }
.why-number {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  color: rgba(244,128,10,0.3); flex-shrink: 0; line-height: 1;
  transition: var(--transition);
}
.why-reason:hover .why-number { color: var(--orange); }
.why-reason h4  { color: var(--white); margin-bottom: 4px; }
.why-reason p   { font-size: 0.875rem; }
.why-image-wrap { position: relative; }
.why-image {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}
.why-pill {
  position: absolute; padding: 12px 20px;
  background: rgba(13,13,13,0.9); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-card);
}
.why-pill-1 { top: 10%;  right: -20px; animation: floatPill 3s ease infinite; }
.why-pill-2 { bottom: 10%; left: -20px; animation: floatPill 3s ease 1.5s infinite; }
.why-pill-icon { font-size: 1.4rem; }
.why-pill-text strong { display: block; font-size: 0.95rem; color: var(--white); }
.why-pill-text span   { font-size: 0.75rem; color: var(--gray-1); }
@keyframes floatPill { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }

/* --- CALCULATOR -------------------------------------------- */
.calculator-section { background: var(--dark-2); }
.calculator-card {
  max-width: 700px; margin: 0 auto;
  padding: 48px; background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.calc-steps {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--glass-border); padding-bottom: 24px;
}
.calc-step {
  flex: 1; text-align: center; font-size: 0.75rem;
  color: var(--gray-2); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: var(--transition);
}
.calc-step.active { color: var(--orange); }
.calc-step.done   { color: var(--green); }
.calc-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--dark-4); border: 2px solid var(--gray-3);
  margin: 0 auto 8px; font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.calc-step.active .calc-step-num { border-color: var(--orange); color: var(--orange); }
.calc-step.done .calc-step-num   { background: var(--green); border-color: var(--green); color: var(--dark); }
.calc-panel { display: none; }
.calc-panel.active { display: block; }
.calc-question { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 24px; color: var(--white); }
.calc-options { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 12px; }
.calc-option {
  padding: 16px; border: 2px solid var(--glass-border);
  border-radius: var(--radius-md); text-align: center;
  cursor: pointer; transition: var(--transition);
  font-size: 0.875rem; font-weight: 500; color: var(--gray-1);
  background: var(--glass);
}
.calc-option:hover, .calc-option.selected {
  border-color: var(--orange); color: var(--orange);
  background: rgba(244,128,10,0.1);
}
.calc-result {
  text-align: center; padding: 24px 0;
}
.calc-result-label { font-size: 0.85rem; color: var(--gray-1); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.calc-price {
  font-family: var(--font-head); font-size: 2.5rem;
  font-weight: 900; color: var(--orange); margin-bottom: 8px;
}
.calc-price-note { font-size: 0.8rem; color: var(--gray-2); margin-bottom: 32px; }
.calc-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }

/* --- FINAL CTA ---------------------------------------------- */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--dark-2); text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(244,128,10,0.12) 0%, transparent 70%);
}
.cta-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border: 1px solid rgba(244,128,10,0.4);
  border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white);
  margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-sub { color: var(--gray-1); max-width: 500px; margin: 0 auto 40px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* --- CONTACT STRIP ----------------------------------------- */
.contact-strip { background: var(--dark-3); }
.contact-strip-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  padding: 60px 0; border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.contact-strip-item h4 { color: var(--orange); margin-bottom: 12px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-strip-item p, .contact-strip-item a { color: var(--gray-1); font-size: 0.9rem; line-height: 1.8; }
.contact-strip-item a:hover { color: var(--orange); }
.social-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
  color: var(--gray-1); transition: var(--transition);
}
.social-pill:hover { border-color: var(--orange); color: var(--orange); }
.social-pill-wa:hover { border-color: #25D366; color: #25D366; }

/* --- FOOTER ------------------------------------------------- */
.footer { background: #0A0A0A; }
.footer-gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--gold), var(--orange));
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift { to { background-position: 200% center; } }
.footer-container { max-width: var(--container); margin: 0 auto; padding: 80px 24px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 60px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  display: block; margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-script); font-size: 1.1rem;
  color: var(--orange); margin-bottom: 12px;
}
.footer-desc { font-size: 0.875rem; color: var(--gray-2); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; flex-direction: column; gap: 8px; }
.footer-heading {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--white); font-family: var(--font-body); font-weight: 700;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: var(--gray-2); transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.footer-contact-item .contact-label {
  display: block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 4px; font-weight: 600;
}
.footer-contact-item p { font-size: 0.85rem; color: var(--gray-2); }
.footer-phone, .footer-email { font-size: 0.9rem; color: var(--gray-1); transition: var(--transition); }
.footer-phone:hover, .footer-email:hover { color: var(--orange); }
.footer-wa-btn { width: 100%; justify-content: center; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-made { font-size: 0.8rem; color: var(--gray-3); }

/* --- WHATSAPP FLOAT ---------------------------------------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.wa-float-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease infinite;
}
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--dark-3); color: var(--white); border: 1px solid var(--glass-border);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; visibility: visible; }
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.6);opacity:0} }

/* --- REVEAL ANIMATIONS ------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links, .nav-call { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid var(--glass-border); }
  .scroll-story-sticky { grid-template-columns: 1fr; }
  .story-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .section { padding: 70px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid { columns: 2; }
  .contact-strip-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calculator-card { padding: 28px 20px; }
  .nav-ctas .btn-nav-wa, .nav-ctas .btn-nav-quote { display: none; }
}
@media (max-width: 480px) {
  .gallery-preview-grid { columns: 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline, .hero-ctas .btn-wa { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* -- SERVICE CARD ICON REPLACEMENTS (no emoji) -- */
.service-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.service-card-img::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244,128,10,0.15);
  border: 2px solid rgba(244,128,10,0.3);
}
[data-category="catering"]  .service-card-img { background: linear-gradient(135deg,#2d1200,#1a0800); }
[data-category="rentals"]   .service-card-img { background: linear-gradient(135deg,#0a1a00,#142800); }
[data-category="support"]   .service-card-img { background: linear-gradient(135deg,#1a1200,#2d1a00); }
[data-category="organic"]   .service-card-img { background: linear-gradient(135deg,#0a1a00,#0d2200); }

/* Category letter icon */
[data-category="catering"]  .service-card-img::before { content: 'C'; font-size:1.8rem; font-weight:900; color:var(--orange); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); background:rgba(244,128,10,0.12); border:2px solid rgba(244,128,10,0.3); width:64px; height:64px; border-radius:50%; }
[data-category="rentals"]   .service-card-img::before { content: 'R'; font-size:1.8rem; font-weight:900; color:var(--green);  display:flex; align-items:center; justify-content:center; font-family:var(--font-head); background:rgba(141,198,63,0.12);  border:2px solid rgba(141,198,63,0.3);  width:64px; height:64px; border-radius:50%; }
[data-category="support"]   .service-card-img::before { content: 'S'; font-size:1.8rem; font-weight:900; color:var(--gold);   display:flex; align-items:center; justify-content:center; font-family:var(--font-head); background:rgba(201,168,76,0.12);  border:2px solid rgba(201,168,76,0.3);  width:64px; height:64px; border-radius:50%; }
[data-category="organic"]   .service-card-img::before { content: 'O'; font-size:1.8rem; font-weight:900; color:var(--green);  display:flex; align-items:center; justify-content:center; font-family:var(--font-head); background:rgba(141,198,63,0.15);  border:2px solid rgba(141,198,63,0.4);  width:64px; height:64px; border-radius:50%; }

/* Story section placeholder icons */
.story-right .story-image { font-size: 0 !important; }
.story-right .story-image::after {
  content: '';
  display: block;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(244,128,10,0.3);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.story-right .story-image:nth-child(1)::after { border-color: rgba(244,128,10,0.4); background: rgba(244,128,10,0.08); }
.story-right .story-image:nth-child(2)::after { border-color: rgba(141,198,63,0.4); background: rgba(141,198,63,0.08); }
.story-right .story-image:nth-child(3)::after { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.story-right .story-image:nth-child(4)::after { border-color: rgba(244,128,10,0.4); background: rgba(244,128,10,0.08); }

/* Gallery placeholder */
.gallery-placeholder { font-size: 0 !important; }
.gallery-placeholder::before {
  content: 'Photo Coming Soon';
  font-size: 0.8rem;
  color: var(--gray-2);
  font-family: var(--font-body);
}

/* Why section image placeholder */
.why-image { font-size: 0 !important; }

/* Calculator options — clean text only */
.calc-option { font-size: 0.875rem !important; }

/* Pill badges in why section */
.why-pill-icon { font-size: 0; width: 28px; height: 28px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.why-pill-1 .why-pill-icon { background: rgba(244,128,10,0.2); border: 1px solid var(--orange); }
.why-pill-1 .why-pill-icon::after { content: '99'; font-size:0.6rem; font-weight:900; color:var(--orange); font-size:0; }
.why-pill-2 .why-pill-icon { background: rgba(141,198,63,0.2); border: 1px solid var(--green); }

/* -- CALCULATOR OPTIONS — clean icon dots -- */
.calc-option { position: relative; padding-left: 16px !important; text-align: left !important; }
.calc-option::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  opacity: 0.5;
  flex-shrink: 0;
  vertical-align: middle;
  transition: opacity 0.2s;
}
.calc-option.selected::before,
.calc-option:hover::before { opacity: 1; }
.calc-options { text-align: left !important; }

/* Fix question mark in heading */
.calc-question::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: middle;
}

/* ============================================================
   FILM STRIP GALLERY — 3 columns scrolling at different speeds
   ============================================================ */
.film-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
}
.film-gallery-wrap::before,
.film-gallery-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.film-gallery-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, var(--dark), transparent);
}
.film-gallery-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, var(--dark), transparent);
}

.film-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}
.film-col-1 { animation: filmScroll1 18s linear infinite; }
.film-col-2 { animation: filmScroll2 24s linear infinite; }
.film-col-3 { animation: filmScroll3 14s linear infinite; }
.film-col:hover { animation-play-state: paused; }

@keyframes filmScroll1 { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }
@keyframes filmScroll2 { 0%{transform:translateY(-50%)} 100%{transform:translateY(0)} }
@keyframes filmScroll3 { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }

.film-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.film-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.film-item:hover img { transform: scale(1.05); }
.film-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 12px;
}
.film-item:hover .film-item-overlay { opacity: 1; }
.film-item-label { font-size: 0.75rem; font-weight: 600; color: #fff; }

/* Placeholder film item */
.film-placeholder {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gray-2); font-size: 0.75rem;
  gap: 8px;
}
.film-placeholder-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(244,128,10,0.1);
  border: 1px solid rgba(244,128,10,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900;
  color: rgba(244,128,10,0.4); font-size: 1.1rem;
}

@media(max-width:768px) {
  .film-gallery-wrap { grid-template-columns: repeat(2,1fr); height: 420px; }
  .film-col-3 { display: none; }
}
@media(max-width:480px) {
  .film-gallery-wrap { grid-template-columns: 1fr 1fr; height: 360px; }
}
/* Film strip gallery - added via patch */
.film-gallery-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;height:560px;overflow:hidden;border-radius:24px;position:relative}
.film-gallery-wrap::before,.film-gallery-wrap::after{content:'';position:absolute;left:0;right:0;height:120px;z-index:2;pointer-events:none}
.film-gallery-wrap::before{top:0;background:linear-gradient(to bottom,var(--dark),transparent)}
.film-gallery-wrap::after{bottom:0;background:linear-gradient(to top,var(--dark),transparent)}
.film-col{display:flex;flex-direction:column;gap:12px;will-change:transform}
.film-col-1{animation:filmScroll1 18s linear infinite}
.film-col-2{animation:filmScroll2 24s linear infinite}
.film-col-3{animation:filmScroll3 14s linear infinite}
.film-col:hover{animation-play-state:paused}
@keyframes filmScroll1{0%{transform:translateY(0)}100%{transform:translateY(-50%)}}
@keyframes filmScroll2{0%{transform:translateY(-50%)}100%{transform:translateY(0)}}
@keyframes filmScroll3{0%{transform:translateY(0)}100%{transform:translateY(-50%)}}
.film-item{border-radius:12px;overflow:hidden;flex-shrink:0;position:relative;cursor:pointer}
.film-item img{width:100%;display:block;transition:transform 0.5s ease}
.film-item:hover img{transform:scale(1.05)}
.film-item-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,transparent 60%);opacity:0;transition:opacity 0.3s ease;display:flex;align-items:flex-end;padding:12px}
.film-item:hover .film-item-overlay{opacity:1}
.film-item-label{font-size:0.75rem;font-weight:600;color:#fff}
.film-placeholder{background:var(--dark-3);border:1px solid var(--glass-border);border-radius:12px;display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--gray-2);font-size:0.75rem;gap:8px}
.film-placeholder-icon{width:40px;height:40px;border-radius:50%;background:rgba(244,128,10,0.1);border:1px solid rgba(244,128,10,0.2);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:900;color:rgba(244,128,10,0.4);font-size:1.1rem}
@media(max-width:768px){.film-gallery-wrap{grid-template-columns:repeat(2,1fr);height:420px}.film-col-3{display:none}}

/* -- FILM STRIP — VARIED HEIGHTS -- */
.film-gallery-wrap { height: 620px !important; }

/* Column 1 — portrait heavy */
.film-col-1 .film-item:nth-child(1)  { height: 320px !important; }
.film-col-1 .film-item:nth-child(2)  { height: 200px !important; }
.film-col-1 .film-item:nth-child(3)  { height: 260px !important; }
.film-col-1 .film-item:nth-child(4)  { height: 180px !important; }
.film-col-1 .film-item:nth-child(5)  { height: 320px !important; }
.film-col-1 .film-item:nth-child(6)  { height: 200px !important; }
.film-col-1 .film-item:nth-child(7)  { height: 260px !important; }
.film-col-1 .film-item:nth-child(8)  { height: 180px !important; }

/* Column 2 — landscape heavy */
.film-col-2 .film-item:nth-child(1)  { height: 200px !important; }
.film-col-2 .film-item:nth-child(2)  { height: 300px !important; }
.film-col-2 .film-item:nth-child(3)  { height: 220px !important; }
.film-col-2 .film-item:nth-child(4)  { height: 280px !important; }
.film-col-2 .film-item:nth-child(5)  { height: 200px !important; }
.film-col-2 .film-item:nth-child(6)  { height: 300px !important; }
.film-col-2 .film-item:nth-child(7)  { height: 220px !important; }
.film-col-2 .film-item:nth-child(8)  { height: 280px !important; }

/* Column 3 — mixed */
.film-col-3 .film-item:nth-child(1)  { height: 260px !important; }
.film-col-3 .film-item:nth-child(2)  { height: 190px !important; }
.film-col-3 .film-item:nth-child(3)  { height: 340px !important; }
.film-col-3 .film-item:nth-child(4)  { height: 210px !important; }
.film-col-3 .film-item:nth-child(5)  { height: 260px !important; }
.film-col-3 .film-item:nth-child(6)  { height: 190px !important; }
.film-col-3 .film-item:nth-child(7)  { height: 340px !important; }
.film-col-3 .film-item:nth-child(8)  { height: 210px !important; }

/* All images fill their container properly */
.film-item img,
.film-item video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Placeholder fills height too */
.film-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
}

/* Padding inside each item */
.film-item {
  padding: 0 !important;
}

/* Gap between columns */
.film-gallery-wrap {
  gap: 10px !important;
  padding: 0 4px;
}
.film-col { gap: 10px !important; }

/* Mobile */
@media(max-width:768px) {
  .film-gallery-wrap { height: 480px !important; }
  .film-col-1 .film-item:nth-child(n) { height: 220px !important; }
  .film-col-2 .film-item:nth-child(n) { height: 200px !important; }
}

/* -- FILM STRIP — FORCE 3 COLUMNS ALWAYS -- */
.film-gallery-wrap {
  grid-template-columns: repeat(3, 1fr) !important;
}
.film-col-3 {
  display: flex !important;
}
@media(max-width:600px) {
  .film-gallery-wrap {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .film-col-3 { display: flex !important; }
  .film-gallery-wrap { height: 400px !important; }
  .film-col-1 .film-item:nth-child(n),
  .film-col-2 .film-item:nth-child(n),
  .film-col-3 .film-item:nth-child(n) { height: 160px !important; }
}

/* -- FILM STRIP NUCLEAR REWRITE — 3 COLS ALWAYS -- */
.film-gallery-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-template-rows: 1fr !important;
  gap: 10px !important;
  height: 600px !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  position: relative !important;
  width: 100% !important;
}
.film-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  overflow: hidden !important;
  width: 100% !important;
  min-width: 0 !important;
}
.film-col-1 {
  grid-column: 1 !important;
  animation: filmScroll1 18s linear infinite !important;
}
.film-col-2 {
  grid-column: 2 !important;
  animation: filmScroll2 24s linear infinite !important;
}
.film-col-3 {
  grid-column: 3 !important;
  display: flex !important;
  animation: filmScroll3 14s linear infinite !important;
}
.film-item {
  width: 100% !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  position: relative !important;
}
.film-item img,
.film-item video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.film-placeholder {
  width: 100% !important;
  height: 100% !important;
  background: #1C1C1C !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #555 !important;
  font-size: 0.75rem !important;
  border-radius: 12px !important;
}
/* Never hide col 3 */
@media (max-width: 9999px) {
  .film-col-3 { display: flex !important; }
}

/* -- FILM WRAP REVEAL FIX -- */
.film-gallery-wrap.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.film-gallery-wrap {
  opacity: 1 !important;
}

/* -- TESTIMONIALS SWIPER — ARROWS TIGHT UNDER CARDS -- */
.testimonials-section .swiper-testimonials {
  padding-bottom: 0 !important;
  overflow: visible !important;
}
.testimonials-section .swiper-wrapper {
  align-items: center !important;
}
.swiper-nav {
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
  margin-top: 24px !important;
}
.swiper-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: var(--glass) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--white) !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition) !important;
  line-height: 1 !important;
}
.swiper-btn:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* -- NAV LOGO — black bg disappears on dark nav -- */
.nav-logo-img {
  height: 56px !important;
  width: auto !important;
  object-fit: contain !important;
  mix-blend-mode: lighten !important;
  background: transparent !important;
}
.footer-logo {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  mix-blend-mode: lighten !important;
}

/* -- NAV + FOOTER LOGO — LARGER -- */
.nav-logo-img {
  height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
  mix-blend-mode: lighten !important;
  background: transparent !important;
}
.footer-logo {
  height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  mix-blend-mode: lighten !important;
  margin-bottom: 8px !important;
}

/* Make nav taller to fit bigger logo */
.nav {
  height: 90px !important;
}
.nav-container {
  height: 90px !important;
}

/* Push main content down to match new nav height */
#main-content {
  padding-top: 0 !important;
}
.hero-wrapper {
  margin-top: 0 !important;
}

/* -- NAV — REMOVE WHATSAPP, MORE BREATHING ROOM -- */
.btn-nav-wa {
  display: none !important;
}

/* More space between nav items */
.nav-links {
  gap: 8px !important;
}
.nav-link {
  padding: 8px 16px !important;
  font-size: 0.92rem !important;
}

/* Nav container spacing */
.nav-container {
  padding: 0 40px !important;
  gap: 32px !important;
}

/* Logo breathing room */
.nav-logo {
  margin-right: 8px !important;
}

/* CTA buttons spacing */
.nav-ctas {
  gap: 12px !important;
}

/* Nav call number spacing */
.nav-call {
  padding: 0 8px !important;
  font-size: 0.88rem !important;
}

/* -- NAV COMPLETE ALIGNMENT FIX -- */

/* Force single line, vertically centered */
.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 32px !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  height: 90px !important;
}

/* Logo — fixed width */
.nav-logo {
  flex-shrink: 0 !important;
  margin-right: 16px !important;
}
.nav-logo-img {
  height: 72px !important;
}

/* Nav links — centered, no wrap, smaller font */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  flex-wrap: nowrap !important;
  flex: 1 !important;
  justify-content: center !important;
}
.nav-link {
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Fix Services dropdown arrow — inline */
.nav-dropdown > .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
}

/* Replace broken ? with proper chevron */
.nav-dropdown > .nav-link::after {
  content: ' \25BE' !important;
  font-size: 0.7rem !important;
}

/* Hide the broken ? character inside the link text */
.nav-dropdown > a.nav-link {
  font-size: 0.85rem !important;
}

/* CTAs — fixed, no shrink */
.nav-ctas {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  margin-left: 16px !important;
}
.nav-call {
  font-size: 0.82rem !important;
  white-space: nowrap !important;
}
.btn-nav-quote {
  padding: 9px 18px !important;
  font-size: 0.82rem !important;
  white-space: nowrap !important;
}

/* Theme toggle pill — smaller */
#theme-toggle {
  padding: 6px 12px 6px 6px !important;
  font-size: 0.68rem !important;
  height: 34px !important;
}
#theme-toggle .t-knob {
  width: 24px !important;
  height: 24px !important;
  font-size: 0.8rem !important;
}
