/* ============================================================
   FRESH One-Pager Template — Production CSS
   Design DNA matched to FRESH main site
   ============================================================ */

/* --- CSS VARIABLES (EXACT from main site) --- */
:root {
  --bg-primary: #0A0A0C;
  --bg-secondary: #111116;
  --bg-card: #16161C;
  --bg-card-hover: #1C1C24;
  --gold: #C9A84C;
  --gold-light: #E4C96A;
  --gold-dark: #A88A3A;
  --cream: #F0E6D3;
  --text-primary: #F0EBE3;
  --text-secondary: #B0A898;
  --text-muted: #7A7468;
  --knife-angle: 65deg;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- RESET & BODY --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

.fop-page {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-primary);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- GRAIN OVERLAY (EXACT from main site) --- */
.fop-page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* --- SELECTION --- */
.fop-page ::selection { background: var(--gold); color: var(--bg-primary); }

/* --- SCROLLBAR (EXACT) --- */
.fop-page ::-webkit-scrollbar { width: 6px; }
.fop-page ::-webkit-scrollbar-track { background: var(--bg-primary); }
.fop-page ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
.fop-page { scrollbar-width: thin; scrollbar-color: var(--gold-dark) var(--bg-primary); }

/* --- CONTAINER --- */
.fop-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* --- SECTION --- */
.fop-section { padding: 7rem 0; position: relative; }
.fop-section--alt { background: var(--bg-secondary); }

/* --- SECTION LABEL (EXACT — Secular One) --- */
.section-tag {
  font-family: 'Secular One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.text-center .section-tag {
  justify-content: center;
}

/* --- SECTION TITLE (EXACT) --- */
.section-title {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title .gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}
.text-center .section-title { text-align: center; }

/* --- SECTION SUBTITLE --- */
.section-subtitle {
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}
.text-center .section-subtitle { margin: 0 auto; text-align: center; }

/* --- GOLD DIVIDER --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
  border: none;
}

/* --- REVEAL ANIMATION (EXACT from main site) --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.5s; }

/* --- BUTTONS (EXACT — KNIFE-CUT, NOT pill) --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--gold-dark);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all 0.4s var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* --- TEXT CENTER HELPER --- */
.text-center { text-align: center; }


/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.7) 70%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-logo { height: 60px; margin-bottom: 0.5rem; filter: brightness(1.1); }
.hero-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-size: clamp(1.75rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
}
.hero-title .gold { color: var(--gold); }
.hero-cta {
  margin-top: 1rem;
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

/* Stats bar below CTA */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  direction: rtl;
}
.stat { text-align: center; }
.count-number {
  font-family: 'Secular One', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
}
.count-suffix { font-family: 'Secular One', sans-serif; font-size: 1.5rem; color: var(--gold); }
.stat-value { font-family: 'Secular One', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); }
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  font-weight: 300;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Marquee at very bottom */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.2rem 0;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,0.8));
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.hero-marquee img {
  height: 32px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.hero-marquee img:hover { opacity: 0.8; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ============================================================
   SECTION 2 — ABOUT
   ============================================================ */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.about-image-wrapper img,
.about-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.image-accent-corner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 14px 0 0;
  pointer-events: none;
}
.about-placeholder {
  min-height: 450px;
  height: 100%;
  background: linear-gradient(135deg, #141414 0%, #1A1A1A 50%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.about-placeholder::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 20px 0 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: all 0.4s var(--transition);
}
.about-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.about-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.about-card-icon svg { width: 22px; height: 22px; }
.about-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }


/* ============================================================
   SECTION 3 — SHOWREEL
   ============================================================ */
.showreel-section { background: var(--bg-secondary); }
.showreel-featured { margin: 3rem 0 2rem; }
.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.06);
}
.video-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.video-card:hover img { transform: scale(1.03); }
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.15); }
.play-button-large {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover .play-button-large {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.play-button {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
  transition: transform 0.3s;
}
.video-card:hover .play-button { transform: scale(1.1); }
.play-button svg, .play-button-large svg { fill: var(--bg-primary); }
.showreel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.video-title {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 14px;
}
.section-cta { text-align: center; margin-top: 3rem; }


/* ============================================================
   SECTION 4 — SERVICES
   ============================================================ */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem;
}
.tab {
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 30px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tab:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
  color: var(--text-primary);
}
.tab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 14px;
  padding: 2rem 2rem 3.2rem;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(201,168,76,0.06);
}
.service-card.hidden { display: none; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-icon svg { width: 22px; height: 22px; }
.service-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-desc { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }
.service-arrow {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* Service popup (EXACT from main site popup style) */
.service-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.service-popup.active { opacity: 1; visibility: visible; }
.service-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}
.service-popup-content {
  position: absolute;
  z-index: 1;
  background: var(--bg-secondary);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(30px) scale(0.95);
  transition: transform 0.35s var(--transition);
}
.service-popup.active .service-popup-content {
  transform: translate(-50%, -50%) translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.popup-close:hover { color: var(--gold); }
.service-popup-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.service-popup-content .popup-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }
.service-popup-content .popup-image { width: 100%; border-radius: 14px; margin-bottom: 1.5rem; display: block; }


/* ============================================================
   SECTION 5 — FORM 1
   ============================================================ */
.form-section-1 {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.form-section-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  transition: border-color 0.3s;
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form select { appearance: none; }
.lead-form .btn-primary { width: 100%; justify-content: center; }

.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}
.form-error {
  color: #e74c3c;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
}


/* ============================================================
   SECTION 6 — CLIENTS
   ============================================================ */
.clients-section { background: var(--bg-secondary); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.client-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.06);
  transition: all 0.4s var(--transition);
}
.client-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.client-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.client-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.client-card:hover .client-image img { transform: scale(1.05); }
.client-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,12,0.8) 100%);
}
.client-info { padding: 1.75rem; }
.client-logo { height: 36px; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.client-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.client-type { font-size: 0.82rem; color: var(--gold); font-weight: 500; }
.client-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-top: 0.75rem; font-weight: 300; }
.client-quote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.client-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}


/* ============================================================
   SECTION 7 — GALLERY
   ============================================================ */
/* gallery-marquee: replaced by fresh-marquee-* */
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}


/* ============================================================
   SECTION 8 — PROCESS / STEPS
   ============================================================ */
.process-section { background: var(--bg-secondary); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
  direction: rtl;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.process-step:hover { transform: translateY(-4px); }
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--bg-primary);
  border: 2px solid var(--gold-dark);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  font-family: 'Secular One', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  transition: text-shadow 0.3s;
}
.process-step:hover .step-number {
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.85rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }
.process-connector {
  width: 60px;
  min-width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  margin-top: 36px;
  opacity: 0.3;
}


/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: visible;
}
.faq-question {
  width: 100%;
  padding: 20px 16px 20px 40px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: right;
  direction: rtl;
  white-space: normal;
  overflow: visible;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-accordion {
  max-width: 100%;
  overflow: visible;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-right: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}
.faq-answer p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

.faq-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}
.faq-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-form-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; font-weight: 300; }


/* ============================================================
   SECTION 10 — FOOTER
   ============================================================ */
.footer-section {
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-logo { height: 48px; margin-bottom: 1.5rem; }
.footer-form { max-width: 600px; margin: 2.5rem auto 0; }
.footer-form-row {
  display: flex;
  gap: 0.5rem;
}
.footer-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  transition: border-color 0.3s;
}
.footer-form input:focus { outline: none; border-color: var(--gold); }
.footer-form input::placeholder { color: var(--text-muted); }
.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
}
.footer-links a { color: var(--gold); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-divider { color: rgba(255,255,255,0.15); }
.footer-social {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-copyright { margin-top: 2.5rem; font-size: 0.78rem; color: var(--text-muted); }


/* ============================================================
   PERSISTENT ELEMENTS
   ============================================================ */

/* Sticky CTA (bottom bar) */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000;
  background: none;
  border: none;
  padding: 0;
  width: auto;
  text-align: center;
  pointer-events: none;
  transition: transform 0.4s var(--transition);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta .btn-primary {
  pointer-events: all;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Lightbox (EXACT from main site video lightbox) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.lightbox-player {
  position: relative;
  z-index: 1;
  max-width: 90vw;
}
.lightbox-player iframe,
.lightbox-player video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 0 60px rgba(201,168,76,0.1);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(22,22,28,0.8);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--bg-primary);
}


/* ============================================================
   RESPONSIVE (EXACT breakpoints from main site)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-placeholder { min-height: 300px; }
  .about-image-wrapper { min-height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-steps::before { display: none; }
  .process-step { flex: 0 0 45%; margin-bottom: 2rem; }
  .process-connector { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-form-card { position: static; }
  .form-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  .fop-container { padding: 0 1.25rem; }
  .fop-section { padding: 5rem 0; }
  .section-title { font-size: 1.8rem; }
  .hero-section { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: 1.75rem; }
  .hero-stats { position: relative; bottom: auto; left: auto; transform: none; flex-wrap: wrap; justify-content: center; margin-top: 3rem; gap: 1.5rem; }
  .stat-divider { display: none; }
  .hero-cta { font-size: 0.95rem; padding: 0.95rem 2rem; }
  .about-cards { grid-template-columns: 1fr; }
  .showreel-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  /* old gallery-marquee mobile rule removed */
  .gallery-videos { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .footer-form-row { flex-direction: column; }
  .clients-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   FIXES & ENHANCEMENTS
   ============================================================ */

/* Footer button - pill shape, no knife-cut */
.footer-section .btn-primary,
.footer-form .btn-primary {
  clip-path: none;
  -webkit-clip-path: none;
  border-radius: 50px;
  transform: none;
  padding: 18px 48px;
}
.footer-section .btn-primary:hover {
  transform: translateY(-2px);
}

/* Footer social icons larger touch targets */
.footer-social a {
  width: 44px;
  height: 44px;
}
.footer-social svg {
  width: 20px;
  height: 20px;
}

/* Footer form inputs more visible */
.footer-form input {
  min-height: 54px;
  font-size: 1rem;
}

/* Section gold divider between alternating sections */
.fop-section + .fop-section {
  border-top: 1px solid rgba(201,168,76,0.06);
}

/* Gold glow behind form sections */
.form-section-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Placeholder cards for empty sections */
.placeholder-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.placeholder-card--video {
  aspect-ratio: 16/9;
  position: relative;
  cursor: default;
}
.placeholder-card--video .play-button {
  opacity: 0.3;
}
.placeholder-card--tall {
  min-height: 320px;
}

/* Hero logo fallback */
.hero-logo {
  height: 56px;
  margin-bottom: 20px;
  display: block;
}

/* Fix hero content to be centered vertically and handle stats in flow */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Marquee at bottom of hero - keep absolute */
.hero-marquee {
  margin-top: auto;
}

/* ============================================================
   HERO WORD-BY-WORD ANIMATION
   ============================================================ */
.hero-tag {
  opacity: 0;
  animation: wordFadeIn 0.6s ease forwards;
  animation-delay: 0s;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordFadeIn 0.6s ease forwards;
}

.hero-title .word.gold {
  color: var(--gold);
}

.hero-cta {
  opacity: 0;
  animation: wordFadeIn 0.8s ease forwards;
}

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

/* ============================================================
   FORM SUCCESS BOX
   ============================================================ */
.form-fading {
  animation: formFadeOut 0.3s ease forwards;
}
@keyframes formFadeOut {
  to { opacity: 0; transform: translateY(-8px); }
}

.form-success-box {
  text-align: center;
  padding: 48px 32px;
  animation: successFadeIn 0.6s ease;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-checkmark { margin-bottom: 24px; }
.success-checkmark svg { display: inline-block; }
.checkmark-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: checkDraw 0.6s ease 0.3s forwards;
}
@keyframes checkDraw { to { stroke-dashoffset: 0; } }

.success-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.4;
}
.success-desc {
  font-size: 16px;
  font-weight: 400;
  color: #B0B0B0;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}
.success-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.success-social-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.success-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.success-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  text-decoration: none;
  transition: all 0.3s ease;
}
.success-social-icon:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #C9A84C;
  transform: translateY(-2px);
}

/* Success box centering fix */
.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq-form-card:has(.form-success-box),
.form-card:has(.form-success-box) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* About section - visual fills grid cell */
.about-visual {
  display: flex;
  flex-direction: column;
}
.about-visual > * {
  flex: 1;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { border-top: 1px solid rgba(255,255,255,0.05); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
  direction: rtl;
}
.contact-info .section-title { text-align: right; margin-bottom: 16px; }
.contact-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 450px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; align-items: center; gap: 16px; direction: rtl; }
.contact-detail-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #C9A84C;
}
.contact-detail-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 17px; font-weight: 600; color: #fff;
  text-decoration: none; transition: color 0.3s;
}
a.contact-detail-value:hover { color: #C9A84C; }
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px;
}
.form-note {
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4); margin-top: 12px;
}

/* ============================================================
   MINI FOOTER
   ============================================================ */
.mini-footer { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.mini-footer-content { text-align: center; }
.mini-footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; }
.mini-footer-social .social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s;
}
.mini-footer-social .social-icon:hover {
  border-color: #C9A84C; color: #C9A84C; background: rgba(201,168,76,0.1);
}
.mini-footer-copyright { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed; bottom: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp {
  left: 24px; background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.float-call {
  right: 24px; background: #C9A84C; color: #0A0A0A;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  display: none;
}

/* Hide old whatsapp-float if still in DOM */
.whatsapp-float { display: none !important; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .float-call { display: flex; }
}

/* ============================================================
   CONTACT METHODS (phone/wa/email cards)
   ============================================================ */
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; direction: rtl;
  padding: 14px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}
.contact-method:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}
.contact-method-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; color: #C9A84C;
}
.contact-method-icon.whatsapp-icon {
  background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); color: #25D366;
}
.contact-method-label {
  display: block; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 2px;
}
.contact-method-value { font-size: 16px; font-weight: 600; color: #fff; }
.contact-method:hover .contact-method-value { color: #C9A84C; }

/* ============================================================
   CONTACT BULLETS (gold checkmarks)
   ============================================================ */
.contact-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-bullet { display: flex; align-items: center; gap: 12px; direction: rtl; }
.bullet-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
}
.bullet-text { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Lead form textarea */
.lead-form textarea {
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #141414;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  direction: rtl;
  width: 100%;
  min-height: 80px;
  resize: vertical;
}
.lead-form textarea:focus {
  outline: none;
  border-color: #C9A84C;
}
.lead-form textarea::placeholder { color: #707070; }

/* Contact social icons */
.contact-social { margin-top: 32px; direction: rtl; }
.contact-social-label {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.contact-social-icons { display: flex; gap: 10px; }
.contact-social-icons .social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s;
}
.contact-social-icons .social-icon:hover {
  border-color: #C9A84C; color: #C9A84C; background: rgba(201,168,76,0.1);
}

/* Form section 1 - ensure vertical centering */
.form-section-1 .form-card {
  align-self: center;
}
.form-section-1 .form-content {
  align-self: center;
}

/* old will-change removed */


/* ============================================================
   FRESH MARQUEE - INFINITE SCROLL (JS-powered)
   ============================================================ */
.fresh-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 48px 0;
  position: relative;
}
.fresh-marquee-wrapper::before,
.fresh-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.fresh-marquee-wrapper::before {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary, #0A0A0A), transparent);
}
.fresh-marquee-wrapper::after {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary, #0A0A0A), transparent);
}
.fresh-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.fresh-marquee-slide {
  flex-shrink: 0;
}
.fresh-marquee-slide img {
  height: 300px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .fresh-marquee-slide img { height: 200px; }
}
