/* ============================================
   SHELMAN — Professional Design Office
   Color Palette from Logo
   Dark: #2D2D2D | Gold: #E8B84B | Light: #F5F5F7
   ============================================ */

:root {
  --dark: #2D2D2D;
  --dark2: #1a1a1a;
  --gold: #E8B84B;
  --gold2: #D4A030;
  --light: #F5F5F7;
  --light2: #ECECEE;
  --white: #FFFFFF;
  --text: #1D1D1F;
  --text2: #6E6E73;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body, 'Cairo', sans-serif);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  direction: rtl;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ===== CUSTOM CURSOR ===== */
.custom-cursor, .custom-cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s;
}
.custom-cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.custom-cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}
body:has(.custom-cursor) * { cursor: none !important; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--dark2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,14,0.82) 0%, rgba(20,18,28,0.75) 100%);
  backdrop-filter: blur(2px);
}
.loader-logo {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-logo svg { width: 80px; height: 66px; }
.loader-path { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawPath 1.5s ease forwards; }
.loader-rect { transform-origin: left; transform: scaleX(0); animation: scaleIn 0.5s ease forwards; }
.loader-rect:nth-child(2) { animation-delay: 0.3s; }
.loader-rect:nth-child(3) { animation-delay: 0.5s; }
.loader-rect:nth-child(4) { animation-delay: 0.7s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes scaleIn { to { transform: scaleX(1); } }
.loader-text {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s ease forwards;
}
.loader-tagline {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0;
  text-align: center;
  animation: fadeIn 0.8s 1.1s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.loader-bar {
  position: relative; z-index: 1;
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.navbar:not(.scrolled) .nav-logo { color: var(--white); }
.navbar:not(.scrolled) .nav-logo svg path,
.navbar:not(.scrolled) .nav-logo svg rect { }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a { color: var(--white); font-size: 1.3rem; font-weight: 600; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark2);
}
.hero-bg {
  position: absolute; inset: 0;
  background: #1a1a1a; /* fallback when no slides */
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,184,75,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,184,75,0.07) 0%, transparent 50%),
              linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(20,20,20,0.45) 50%, rgba(10,10,10,0.65) 100%);
}
.hero-grid {
  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: 80px 80px;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,184,75,0.15);
  border: 1px solid rgba(232,184,75,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .gold { color: var(--gold); }
.hero-line { display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,184,75,0.35); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-fast);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-dot {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { top: -30px; }
  100% { top: 60px; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right, .reveal-card, .reveal-step {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(50px); }
.reveal-fade { transform: translateY(10px); }
.reveal-left { transform: translateX(60px); }
.reveal-right { transform: translateX(-60px); }
.reveal-card { transform: translateY(40px) scale(0.97); }
.reveal-step { transform: translateX(30px); }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-card.visible,
.reveal-step.visible {
  opacity: 1;
  transform: none;
}

/* ===== BRAND TRANSFORM SECTION ===== */
.brand-transform {
  height: 500vh;
  position: relative;
}
.brand-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0d0d;
}

/* --- Background images --- */
.brand-bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.brand-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
}
.brand-bg-img.active {
  opacity: 1;
  transform: scale(1);
}
/* Real project images */
.brand-bg-img[data-img="0"] {
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('../images/001.jpg');
  background-size: cover;
  background-position: center;
}
.brand-bg-img[data-img="1"] {
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('../images/002.jpg');
  background-size: cover;
  background-position: center;
}
.brand-bg-img[data-img="2"] {
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('../images/003.jpg');
  background-size: cover;
  background-position: center;
}
.brand-bg-img[data-img="3"] {
  background-image:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../images/004.jpg');
  background-size: cover;
  background-position: center;
}
/* الصورة الأخيرة (مرحلة ظهور الاسم العربي) — نفس 004 بـ overlay أغمق */
.brand-bg-img[data-img="4"] {
  background-image:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('../images/004.jpg');
  background-size: cover;
  background-position: center;
}

/* Subtle image noise texture overlay */
.brand-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Dark veil that dims on final phase */
.brand-dark-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.5);
  transition: background 0.8s ease;
}
.brand-dark-veil.deep { background: rgba(0,0,0,0.72); }

/* --- English Letters --- */
.brand-en-letters {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 1vw, 16px);
  pointer-events: none;
  direction: ltr;
}
.bel {
  font-size: clamp(5rem, 13vw, 15rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: var(--font-body, 'Cairo', sans-serif);
  opacity: 0;
  transform: translateY(70px) skewX(-8deg);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s ease,
              text-shadow 0.4s ease;
  will-change: transform, opacity;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.bel.visible {
  opacity: 1;
  transform: translateY(0) skewX(0deg);
}
.bel.gold-glow {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(232,184,75,0.6), 0 0 120px rgba(232,184,75,0.2);
}
/* Letter exit animation */
.brand-en-letters.exit .bel {
  opacity: 0;
  transform: translateY(-50px) scale(1.1);
  transition: opacity 0.4s cubic-bezier(0.4,0,1,1),
              transform 0.4s cubic-bezier(0.4,0,1,1);
}

/* --- Arabic Final Reveal --- */
.brand-ar-final {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.brand-ar-final.visible { opacity: 1; }

.brand-ar-name {
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 80px rgba(232,184,75,0.5), 0 4px 40px rgba(0,0,0,0.9);
  transform: translateY(30px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.brand-ar-final.visible .brand-ar-name {
  transform: translateY(0);
}

.brand-ar-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.8s ease 0.5s;
}
.brand-ar-final.visible .brand-ar-line { width: min(400px, 60vw); }

.brand-ar-tagline {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}
.brand-ar-final.visible .brand-ar-tagline {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll hint */
.brand-scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  transition: opacity 0.5s ease;
}
.brand-scroll-hint.hidden { opacity: 0; }
.bsh-line { width: 1px; height: 48px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.bsh-dot {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 1.8s ease infinite;
}

.brand-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 10;
}
.brand-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  width: 0%;
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; padding: 100px 40px 60px; max-width: 800px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,184,75,0.1);
  color: var(--gold);
  border: 1px solid rgba(232,184,75,0.25);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
}
.section-header.light .section-title,
.section-header.light .section-sub { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.6); }

/* ===== SERVICES ===== */
.services { padding: 0 40px 100px; max-width: 1280px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(232,184,75,0.2), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.service-card.featured {
  background: var(--gold);
  grid-column: span 1;
}
.service-card.featured h3, .service-card.featured p { color: var(--dark); }
.service-card.featured .service-num { color: rgba(45,45,45,0.3); }
.service-card.featured .service-tags span {
  background: rgba(45,45,45,0.12);
  color: var(--dark);
}
.service-card.featured .service-link { color: var(--dark); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(232,184,75,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card.featured .service-icon {
  background: rgba(45,45,45,0.12);
}
.service-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232,184,75,0.15);
  position: absolute;
  top: 24px; left: 32px;
  line-height: 1;
  font-feature-settings: 'tnum';
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.service-tags span {
  background: rgba(232,184,75,0.12);
  color: var(--gold2);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }
.service-link svg { width: 16px; height: 16px; }

/* ===== WORKS ===== */
.works { padding: 0 40px 80px; max-width: 1280px; margin: 0 auto; }
.works-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--light);
  color: var(--text2);
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.work-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.work-item.large { grid-column: span 2; }
.work-item.hidden { display: none; }
.work-img { width: 100%; height: 100%; position: relative; }
.work-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.work-item:hover .work-placeholder { transform: scale(1.05); }
.work-icon-ph { opacity: 0.5; }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  width: fit-content;
}
.work-overlay h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.work-view {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s;
  width: fit-content;
}
.work-view:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Video Showcase */
.video-showcase { margin-top: 60px; }
.video-wrap { border-radius: 24px; overflow: hidden; }
.video-placeholder {
  min-height: 400px;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.play-btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 90px; height: 90px; filter: drop-shadow(0 8px 24px rgba(232,184,75,0.4)); }
.video-text {
  position: absolute;
  bottom: 40px; right: 40px;
  text-align: right;
  color: var(--white);
  z-index: 2;
}
.video-text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.video-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.video-bars {
  position: absolute;
  bottom: 0; left: 0;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 80px;
  padding: 0 20px;
  opacity: 0.15;
}
.vbar {
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: barPulse 1.5s ease infinite alternate;
}
@keyframes barPulse { 0% { transform: scaleY(0.3); } 100% { transform: scaleY(1); } }

/* ===== PROCESS ===== */
.process {
  position: relative;
  background: var(--dark);
  padding: 0 40px 100px;
  overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,184,75,0.08) 0%, transparent 60%);
}
.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.process-line {
  position: absolute;
  top: 30px; right: 29px;
  width: 2px;
  height: calc(100% - 60px);
  background: rgba(255,255,255,0.08);
}
.process-line-fill {
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  transition: height 0.3s linear;
}
.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.step-bubble {
  min-width: 60px; height: 60px;
  background: var(--dark2);
  border: 2px solid rgba(232,184,75,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.process-step.active .step-bubble {
  background: var(--gold);
  border-color: var(--gold);
}
.step-bubble span {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  transition: color 0.4s;
}
.process-step.active .step-bubble span { color: var(--dark); }
.step-content { padding-top: 14px; }
.step-content h3 { color: var(--white); font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.step-content p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 40px; }
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-stack { position: relative; }
.about-img {
  border-radius: 20px;
  overflow: hidden;
}
.about-img.main-img {
  aspect-ratio: 4/5;
  max-width: 380px;
}
.about-img.float-img {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 200px;
  aspect-ratio: 1;
  border: 4px solid var(--white);
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.img-placeholder.dark { background: linear-gradient(135deg, #2D2D2D, #404040); }
.img-placeholder.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); }
.about-badge {
  position: absolute;
  top: 40px; left: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.badge-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.badge-text { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.about-content { }
.about-content .section-tag { display: inline-flex; margin-bottom: 16px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.about-lead { font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.about-content > p { color: var(--text2); line-height: 1.8; margin-bottom: 32px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.af { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.af-icon {
  width: 28px; height: 28px;
  background: rgba(232,184,75,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.af-icon svg { width: 14px; height: 14px; }
.gold { color: var(--gold); }

/* ===== INSTAGRAM FEED ===== */
.ig-feed-section { padding: 80px 40px 100px; }
.ig-feed-grid {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ig-post-card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--light2);
  transition: transform 0.4s, box-shadow 0.4s;
  color: var(--text);
}
.ig-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.ig-post-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark);
}
.ig-post-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ig-post-card:hover .ig-post-img-wrap img { transform: scale(1.05); }
.ig-post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-post-card:hover .ig-post-overlay { opacity: 1; }
.ig-icon-play { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.ig-likes {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.85rem; font-weight: 700; color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.ig-post-caption {
  padding: 14px 16px 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-post-footer {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 16px 14px;
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 600;
}
.ig-feed-cta { text-align: center; }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(253,29,29,0.25);
}
.ig-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(253,29,29,0.35);
}
.ig-feed-fallback {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center;
}
.ig-fallback-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 60px 40px;
  background: var(--light);
  border-radius: 24px;
  border: 1px solid var(--light2);
  text-align: center;
  min-width: 320px;
}
.ig-fallback-inner p { font-size: 1.05rem; color: var(--text2); margin: 0; }
@media (max-width: 900px) {
  .ig-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-feed-section { padding: 60px 20px 80px; }
}
@media (max-width: 560px) {
  .ig-feed-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact { padding: 100px 40px; background: var(--light); }
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 20px; }
.contact-info .section-tag { display: inline-flex; margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
.contact-info > p { color: var(--text2); line-height: 1.8; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.cm { display: flex; align-items: center; gap: 16px; }
.cm-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cm-icon svg { width: 20px; height: 20px; }
.cm strong { display: block; font-size: 0.85rem; color: var(--text2); font-weight: 600; }
.cm span { font-size: 1rem; font-weight: 700; color: var(--dark); }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,184,75,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text2); opacity: 0.6; }
.form-group select option { direction: rtl; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); color: var(--white); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .nav-logo.large { font-size: 1.6rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }
.footer-links { display: contents; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-col h4 { color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.fl-col a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.3s; }
.fl-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 32px; left: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(232,184,75,0.4);
  transform: translateY(100px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.back-top.visible { transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }
.back-top svg { width: 20px; height: 20px; }

/* ===== PARTICLES ===== */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-links { display: contents; }
}

@media (max-width: 900px) {
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-item.large { grid-column: span 2; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar:not(.scrolled) .nav-toggle span { background: var(--white); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { }
  .works-grid { grid-template-columns: 1fr; }
  .work-item.large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .hero-content { padding: 100px 24px 80px; }
  .services, .works { padding: 0 24px 80px; }
  .contact, .about { padding: 80px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .process { padding: 0 24px 80px; }
  .section-header { padding: 80px 24px 48px; }
  .brand-letters .bl { font-size: clamp(3rem, 12vw, 8rem); }
  .hero-stats { gap: 24px; }
  .stat-divider { height: 32px; }
  .stat-num { font-size: 2rem; }
  .custom-cursor, .custom-cursor-follower { display: none; }
}

/* ============================================
   PROJECT MODAL
   ============================================ */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}
.project-modal.open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
  cursor: pointer;
}
.project-modal.open .pm-backdrop {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Panel */
.pm-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  max-height: 92vh;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -20px 80px rgba(0,0,0,0.25);
}
.project-modal.open .pm-panel {
  transform: translateY(0);
}

/* Header */
.pm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--light2);
  flex-shrink: 0;
  background: var(--white);
}
.pm-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.pm-close {
  width: 40px; height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all 0.25s ease;
}
.pm-close:hover { background: var(--dark); color: var(--white); transform: rotate(90deg); }

/* Body layout */
.pm-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* ── Gallery Column ── */
.pm-gallery-col {
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pm-main-img-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.pm-main-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
  display: block;
}
.pm-main-img-wrap img.loading { opacity: 0; }

/* Image loading spinner */
.pm-img-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.pm-img-loader.visible { opacity: 1; }
.pm-img-loader::after {
  content: '';
  width: 36px; height: 36px;
  border: 3px solid rgba(232,184,75,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Arrows */
.pm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.pm-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.pm-arrow-prev { right: 16px; }
.pm-arrow-next { left: 16px; }
.pm-arrow svg { width: 18px; height: 18px; }

/* Dots */
.pm-img-dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.pm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.pm-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* Thumbnail strip */
.pm-thumbstrip {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #111;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pm-thumbstrip::-webkit-scrollbar { display: none; }
.pm-thumb {
  flex-shrink: 0;
  width: 80px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
  opacity: 0.55;
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb.active { border-color: var(--gold); opacity: 1; transform: scale(1.04); }
.pm-thumb:hover:not(.active) { opacity: 0.85; }

/* ── Details Column ── */
.pm-details-col {
  overflow-y: auto;
  padding: 32px 36px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--light2) transparent;
}
.pm-details-col::-webkit-scrollbar { width: 4px; }
.pm-details-col::-webkit-scrollbar-track { background: transparent; }
.pm-details-col::-webkit-scrollbar-thumb { background: var(--light2); border-radius: 2px; }

.pm-tag-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(232,184,75,0.12);
  color: var(--gold2);
  border: 1px solid rgba(232,184,75,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pm-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

/* Meta grid */
.pm-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.pm-meta-card {
  background: var(--light);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.pm-meta-card:hover { transform: translateY(-2px); }
.pm-meta-card.highlight {
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
}
.pm-meta-icon {
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold2);
}
.pm-meta-icon svg { width: 16px; height: 16px; }
.pm-meta-card.highlight .pm-meta-icon { color: var(--gold); }
.pm-meta-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text2);
  font-weight: 600;
  margin-bottom: 2px;
}
.pm-meta-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}
.pm-meta-card.highlight strong { color: var(--gold2); }

/* Description */
.pm-desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light2);
}

/* Works section */
.pm-works-section { margin-bottom: 28px; }
.pm-works-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pm-works-title svg { color: var(--gold); }
.pm-works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pm-work-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  color: var(--text);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--light2);
  transition: all 0.2s;
}
.pm-work-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.pm-work-tag:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* CTA button */
.pm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  width: 100%;
  justify-content: center;
}
.pm-cta-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,184,75,0.35); }

/* Work card image style */
.work-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.work-item:hover .work-cover { transform: scale(1.06); }
.work-img { overflow: hidden; width: 100%; height: 100%; }

/* Work view button style update */
.work-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Modal Responsive ── */
@media (max-width: 860px) {
  .pm-body { grid-template-columns: 1fr; grid-template-rows: 52vh 1fr; }
  .pm-gallery-col { min-height: 0; }
  .pm-details-col { padding: 24px; }
  .pm-meta-grid { grid-template-columns: 1fr 1fr; }
  .pm-panel { max-height: 96vh; border-radius: 20px 20px 0 0; }
}
@media (max-width: 540px) {
  .pm-meta-grid { grid-template-columns: 1fr; }
  .pm-header { padding: 14px 20px; }
  .pm-details-col { padding: 20px; }
}

/* ============================================
   LOGO IMAGE (conditional — when logo.png exists)
   ============================================ */
.loader-img {
  height: 100px; width: auto;
  opacity: 0;
  transform: scale(0.7) translateY(12px);
  animation: logoEntrance 1s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
  filter: drop-shadow(0 0 50px rgba(232,184,75,0.5));
}
@keyframes logoEntrance {
  to { opacity:1; transform:scale(1) translateY(0); }
}
/* Navbar logo img */
.nav-logo-img {
  height: 40px; width: auto; display: block;
  transition: filter 0.35s ease, opacity 0.3s ease;
}
.navbar:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }
.navbar.scrolled      .nav-logo-img { filter: none; }
/* Footer logo img */
.footer-logo-img {
  height: 52px; width: auto; display: block;
  filter: brightness(0) invert(1); opacity: 0.9;
  margin-bottom: 16px;
}
/* Modal logo img */
.modal-logo-img { height: 28px; width: auto; display: block; }
/* About float logo */
.about-logo-float {
  width: 100%; height: 100%; object-fit: contain;
  padding: 24px; background: var(--white);
}

/* ============================================
   HERO IMAGE SLIDER — Ken Burns
   ============================================ */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 5s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.1); }
  to   { transform: scale(1);   }
}
/* Dots indicator */
.hero-slide-dots {
  position: absolute;
  bottom: 100px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.3s;
}
.hero-slide-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ============================================
   SERVICE CARDS WITH IMAGES
   ============================================ */
.service-card {
  padding: 0;          /* override old padding */
  overflow: hidden;
}
.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-card:hover .service-img img { transform: scale(1.07); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
  display: flex; align-items: flex-end; padding: 14px 18px;
}
.service-img-overlay span {
  font-size: 2.8rem; font-weight: 900;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.service-img-overlay.dark span { color: rgba(45,45,45,0.25); }
.service-body { padding: 24px 28px 28px; }
.service-body h3 { font-size:1.3rem; font-weight:800; margin-bottom:10px; color:var(--dark); }
.service-card.featured .service-body h3 { color: var(--dark); }
.service-body p { font-size:.93rem; color:var(--text2); line-height:1.7; margin-bottom:16px; }
.service-card.featured .service-body p { color: rgba(45,45,45,0.75); }

/* ============================================
   YOUTUBE / VIDEO SECTION
   ============================================ */
.yt-thumb-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark2);
}
.yt-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.yt-thumb-wrap:hover .yt-thumb-img { transform: scale(1.04); }
.yt-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.4s;
}
.yt-thumb-wrap:hover .yt-overlay { background: rgba(0,0,0,0.3); }
.yt-play-btn {
  position: relative; z-index: 2;
  transition: transform 0.3s ease;
  background: none; border: none; cursor: pointer;
}
.yt-play-btn:hover { transform: scale(1.12); }
.yt-play-btn svg { width: 90px; height: 90px; filter: drop-shadow(0 8px 32px rgba(232,184,75,0.5)); }
.yt-text {
  position: absolute; bottom: 36px; right: 36px;
  color: var(--white); z-index: 2; text-align: right;
}
.yt-text h3 { font-size:1.4rem; font-weight:800; margin-bottom:6px; }
.yt-text p  { font-size:.9rem; color:rgba(255,255,255,0.6); }
.yt-iframe-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; border-radius: 20px;
}
.yt-iframe-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ============================================
   PROCESS — Beautiful Background
   ============================================ */
.process-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,13,13,0.82), rgba(26,18,8,0.88)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ============================================
   ABOUT — Real Images
   ============================================ */
.about-img.main-img { aspect-ratio: 4/5; max-width: 380px; }
.about-img.main-img img,
.about-img.float-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: inherit;
}
.about-img.float-img {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
