/*
Theme Name: FRESH
Theme URI: https://fresh.agency
Author: FRESH Digital Agency
Author URI: https://fresh.agency
Description: Premium dark theme for FRESH — the digital marketing agency for restaurants. Fully compatible with Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fresh
Tags: dark, rtl, one-column, custom-menu, custom-logo, featured-images, theme-options
*/

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ========== GRAIN OVERLAY ========== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

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

.section-label {
  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;
  justify-content: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

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

.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);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  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);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all 0.4s var(--transition);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes goldPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes knifeSweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.4s var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1rem 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 52px;
  transition: transform 0.3s var(--transition);
}

.nav-logo:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 1.8rem !important;
  font-size: 0.95rem !important;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 0.5rem;
}
.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary, #999);
  transition: color 0.3s ease;
}
.nav-social-icon svg {
  width: 20px;
  height: 20px;
}
.nav-social-icon:hover {
  color: var(--gold);
}

.mobile-only { display: none; }

/* ========== MEGA MENU ========== */
.nav-links > li { position: relative; }
.nav-links > li.has-mega > a { position: relative; }
.nav-links > li.has-mega > a::before {
  content: '▾';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7em;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links > li.has-mega:hover > a::before { opacity: 1; }

/* Mega menu styles moved to assets/css/mega-menu.css */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  z-index: 1;
}

/* Diagonal knife-cut lines */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: repeating-linear-gradient(
    var(--knife-angle),
    transparent,
    transparent 120px,
    rgba(201, 168, 76, 0.015) 120px,
    rgba(201, 168, 76, 0.015) 121px
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.85) 50%, var(--bg-primary) 100%);
}

.hero-bg-video video, .hero-bg-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideRight 1s var(--transition) 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: goldPulse 2s infinite;
}

.hero h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .gold-line {
  color: var(--gold);
  position: relative;
}

.hero h1 .gold-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: knifeSweep 1s var(--transition) 1.2s both;
  transform-origin: right;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  animation: slideLeft 1s var(--transition) 0.6s both;
  position: relative;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

.hero-stat:nth-child(1) { clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%); }
.hero-stat:nth-child(2) { clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%); }
.hero-stat:nth-child(3) { clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }
.hero-stat:nth-child(4) { clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%); }

.hero-stat:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.hero-stat .number {
  font-family: 'Secular One', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== LOGO BAR ========== */
.logo-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  position: relative;
}

.logo-bar::before, .logo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-bar::before { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.logo-bar::after { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
  gap: 4rem;
  align-items: center;
}
.logo-track .client-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-track .client-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.4;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}

.logo-track .client-logo:hover { opacity: 0.8; }

/* ========== ABOUT SECTION ========== */
/* ========== WHAT WE DO SECTION ========== */
.what-we-do {
  padding: 7rem 0;
  position: relative;
  text-align: center;
}
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.whatwedo-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.whatwedo-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.whatwedo-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.whatwedo-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.whatwedo-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Keep legacy .about styles for About page */
.about {
  padding: 7rem 0;
  position: relative;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-frame {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  clip-path: polygon(0 0, 100% 2%, 98% 100%, 3% 98%);
  overflow: hidden;
  position: relative;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
  z-index: 1;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(201,168,76,0.1) 0%, transparent 50%), var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
  opacity: 0.3;
}
.about-content .section-subtitle { margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature .icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}
.about-feature p { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; }
.about-feature p strong { color: var(--text-primary); font-weight: 500; }

/* ========== STATS SECTION ========== */
.stats {
  padding: 5rem 0;
  position: relative;
  background: var(--bg-secondary);
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.stats .container {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Secular One', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.stat-divider {
  width: 30px;
  height: 2px;
  background: var(--gold-dark);
  margin: 0.7rem auto 0;
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 7rem 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-label { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
  mask-image: linear-gradient(to left, transparent, black 2rem, black calc(100% - 2rem), transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, black 2rem, black calc(100% - 2rem), transparent);
}
.services-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 30px;
  color: var(--text-secondary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  color: var(--text-primary);
}
.tab-btn.active {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 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;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.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 {
  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:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.service-icon svg,
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-icon svg { color: var(--gold); }
.service-icon .service-icon { background: none; border: none; clip-path: none; margin-bottom: 0; }
.service-icon.icon-sm { width: 24px; height: 24px; }
.service-icon.icon-xs { width: 20px; height: 20px; }

/* Hide raw-text fallback when icon slug renders as text */
.fresh-icon-emoji { font-size: 0; visibility: hidden; width: 0; height: 0; }
.service-icon .fresh-icon-emoji { display: none; }

.service-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.service-card .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 var(--transition);
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card .arrow::after {
  display: none !important;
}

/* ========== VIDEO SECTION ========== */
.showreel {
  padding: 7rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.showreel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-primary), transparent);
  z-index: 1;
}

.showreel-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.showreel-header .section-label { justify-content: center; }

.video-frame {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 1%, 99% 100%, 1% 99%);
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    var(--bg-card);
  z-index: 1;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.play-btn {
  width: 90px;
  height: 90px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--transition);
  position: relative;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  animation: goldPulse 2s infinite;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  margin-right: -3px;
}

.video-frame:hover .play-btn {
  background: var(--gold);
  transform: scale(1.1);
}

.video-frame:hover .play-btn svg { fill: var(--bg-primary); }

.video-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== PORTFOLIO ========== */
.portfolio {
  padding: 7rem 0;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:first-child {
  grid-row: span 2;
}

.portfolio-image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--transition);
}

.portfolio-card:first-child .portfolio-image {
  aspect-ratio: auto;
  height: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.portfolio-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.portfolio-card:hover .portfolio-image img { transform: scale(1.05); }

.card-logo-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 0;
  z-index: 2;
}
.card-logo-badge img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.portfolio-excerpt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  opacity: 0.8;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-meta {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: 'Secular One', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.portfolio-overlay h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.portfolio-stat {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== SOCIAL GALLERY ========== */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.04);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 2;
  border-color: rgba(201, 168, 76, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.gallery-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.05em;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 7rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-label { justify-content: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author .author-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
}

.testimonial-author .author-img {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.testimonial-author strong {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== PROCESS SECTION ========== */
.process {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-label { justify-content: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  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 {
  text-align: center;
  position: relative;
}

.step-icon {
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-primary);
  border: 2px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Secular One', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* ========== WHY FRESH SECTION ========== */
.why-fresh {
  padding: 7rem 0;
  background: var(--bg-secondary);
  text-align: center;
}
.why-fresh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-fresh-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.why-fresh-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.why-fresh-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.why-fresh-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-fresh-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta {
  padding: 7rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta .container { position: relative; z-index: 2; }

.cta h2 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta .section-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 500px;
}

.cta .section-label { justify-content: center; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form {
  max-width: 500px;
  margin: 2.5rem auto 0;
  display: flex;
  gap: 0.8rem;
}

.cta-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--gold); }

/* ========== FOOTER ========== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 1.2rem;
  max-width: 300px;
}

.footer-logo {
  height: 32px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-map {
  margin: 2rem 0;
  height: 200px;
  border-radius: 10px;
  border-top: 2px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.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);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Footer Mini Contact Form (inside footer-brand, angled style) */
.footer-form-wrapper {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,168,78,0.15);
}
.footer-form-title {
  color: #c8a84e;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.footer-form-sub {
  color: #8a8578;
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 14px;
}
.footer-form-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  direction: rtl;
}
.angled-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.angled-input-wrap input {
  width: 100%;
  height: 100%;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(200,168,78,0.18);
  color: #f0ebe0;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  text-align: right;
}
.angled-input-wrap input::placeholder {
  color: #8a8578;
  text-align: right;
}
.angled-input-wrap input:focus {
  border-color: #c8a84e;
  background: rgba(200,168,78,0.06);
}
.btn-angled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 12px 28px;
  background: #c8a84e;
  color: #0a0a0a;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-angled:hover {
  background: #e0c264;
  transform: translateY(-1px);
}
.btn-angled .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.btn-angled:hover .arrow {
  transform: translateX(-3px);
}
.footer-form-status {
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-width: 400px; }
  .whatwedo-grid { grid-template-columns: repeat(2, 1fr); }
  .why-fresh-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card:first-child { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .nav-social { display: none; }
  .mobile-only { display: list-item; }
  .mobile-toggle { display: flex; }

  /* Mega menu mobile styles in assets/css/mega-menu.css */
  .nav-links > li.has-mega > a::before { left: -12px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .whatwedo-grid { grid-template-columns: 1fr; }
  .why-fresh-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-form-row { flex-direction: column; }
  .footer-form-row .btn-angled { width: 100%; }

  .cta-form { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; }
}

/* ========== PAGE SECTIONS ========== */

/* ========== KNIFE CUT DIVIDERS ========== */
.knife-divider {
  height: 60px;
  position: relative;
  overflow: hidden;
}

.knife-divider::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--bg-primary);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
}

.knife-divider.reverse::before {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}


/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* ========== PAGE HERO (all inner pages) ========== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: repeating-linear-gradient(
    var(--knife-angle),
    transparent,
    transparent 120px,
    rgba(201, 168, 76, 0.015) 120px,
    rgba(201, 168, 76, 0.015) 121px
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb — shared across all hero sections */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  color: var(--text-muted);
}

.breadcrumb span:last-child {
  color: var(--gold);
}

.page-hero h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero h1 .gold {
  color: var(--gold);
}

.page-hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  padding: 160px 0 5rem;
}
.about-hero .subtitle {
  max-width: 800px;
  font-size: 1.2rem;
}
.about-story-text {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 750px;
  margin: 1.5rem auto 0;
  text-align: center;
}
.about-features-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.about-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 30px;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.about-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.about-hero-image {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Grid */
.values-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.values-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-section .section-header .section-label {
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.value-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
}

/* Team Grid */
.team-section {
  padding: 6rem 0;
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-section .section-header .section-label {
  justify-content: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(200, 168, 78, 0.1);
  cursor: pointer;
}

.team-card:hover .team-avatar {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 20px rgba(200, 168, 78, 0.15);
}

.team-card:hover .avatar-placeholder {
  color: var(--gold);
}

.team-avatar {
  aspect-ratio: 1;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--bg-card));
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.team-info .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 300;
}

.team-card h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  padding: 1.2rem 1rem 0;
}

.team-card .team-role {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 300;
  padding: 0 1rem 1.2rem;
  margin: 0;
}

/* Team Member Modal */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.team-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.team-modal {
  position: relative;
  background: #111111;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  max-width: 640px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem 2.5rem;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.team-modal-overlay.open .team-modal {
  transform: translateY(0);
}
.team-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  color: #8a8578;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.team-modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.team-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  font-size: 2rem;
  color: var(--gold);
}
.team-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0ebe0;
  margin-bottom: 4px;
}
.team-modal-role {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.team-modal-divider {
  width: 60px;
  height: 2px;
  background: rgba(200,168,78,0.3);
  margin: 0 auto 1.75rem;
}
.team-modal-bio {
  font-size: 1rem;
  color: #b0a898;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  text-align: center;
  max-height: 50vh;
  overflow-y: auto;
}
.team-modal-bio p {
  margin: 0 0 0.8rem;
}
.team-modal-bio p:last-child {
  margin-bottom: 0;
}
.team-modal-dish {
  font-size: 0.9rem;
  color: #8a8578;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200,168,78,0.1);
  text-align: center;
}
.team-modal-dish strong {
  color: var(--gold);
}
@media (max-width: 768px) {
  .team-modal {
    width: 92%;
    max-width: 500px;
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .team-modal {
    width: 95%;
    max-width: none;
    padding: 2rem 1.2rem;
  }
  .team-modal-name {
    font-size: 1.3rem;
  }
  .team-modal-bio {
    font-size: 0.92rem;
  }
}

/* ========== SERVICES PAGE ========== */
.services-listing {
  padding: 6rem 0;
}

.services-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-listing-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 2rem;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.service-listing-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-listing-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.service-listing-card:hover::before {
  transform: scaleX(1);
}

.service-listing-card .listing-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.service-listing-card .listing-content {
  flex: 1;
}

.service-listing-card .listing-cat {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.service-listing-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.service-listing-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.service-listing-card .arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--transition);
  align-self: center;
}

.service-listing-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SINGLE SERVICE PAGE ========== */
.service-detail {
  padding: 4rem 0;
}

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.service-main h2 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.service-main h2:first-child {
  margin-top: 0;
}

.service-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.service-main ul,
.service-main ol {
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-main li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.service-main img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.sidebar-nav {
  list-style: none;
}

.sidebar-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sidebar-nav li:last-child {
  border-bottom: none;
}

.sidebar-nav a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: all 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav .current a {
  color: var(--gold);
  padding-right: 0.5rem;
}

.sidebar-cta {
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Results Cards */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 1.5rem;
  text-align: center;
}

.result-card .number {
  font-family: 'Secular One', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.result-card .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== ENHANCED SINGLE SERVICE PAGE ========== */
.service-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.7) 100%);
  z-index: 1;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-hero-cat {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 1rem;
}
.service-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.service-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.service-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service Page Content Layout */
.service-page-content { padding: 4rem 0; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

/* Service Blocks */
.service-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.service-block:last-child { border-bottom: none; }
.service-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Service Closing Paragraph */
.service-closing {
  text-align: center;
  border-bottom: none !important;
}
.service-closing-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.service-closing .btn-primary {
  display: inline-flex;
}

/* Service FAQ (reuses global .faq-* styles) */
.service-faq .faq-list {
  max-width: none;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-2px);
}
.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 10px;
  color: var(--gold);
}
.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke: currentColor;
}
.benefit-icon .fresh-icon {
  width: 20px;
  height: 20px;
}
.benefit-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Service Includes — Card Grid */
.includes-heading {
  text-align: center;
}
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.service-includes-card {
  background: #111111;
  border: 1px solid rgba(200,168,78,0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-includes-card:hover {
  border-color: rgba(200,168,78,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.service-includes-card .card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,78,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
  font-size: 1.2rem;
}
.service-includes-card .card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke: currentColor;
}
.service-includes-card .card-icon .fresh-icon {
  width: 22px;
  height: 22px;
}
.service-includes-card .card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0ebe0;
  margin-bottom: 6px;
}
.service-includes-card .card-desc {
  font-size: 0.8rem;
  color: #8a8578;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .service-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-includes-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Process Timeline (single-service page) */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.process-timeline .process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
  text-align: initial;
}
.process-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Secular One', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.process-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.process-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Results Cards — removed from service pages, kept for potential reuse */

/* Service Gallery (single-service page) */
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.service-gallery-grid .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.06);
  aspect-ratio: auto;
}
.service-gallery-grid .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-gallery-grid .gallery-item:hover img { transform: scale(1.05); }

/* Sidebar Nav Groups */
.sidebar-nav-group { margin-bottom: 1rem; }
.sidebar-nav-cat {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.sidebar-nav-group ul { list-style: none; padding: 0; }
.sidebar-nav-group li a { display: flex; align-items: center; gap: 0.5rem; }
.sidebar-nav-group li a .nav-icon { width: 1.2em; text-align: center; font-size: 0.85rem; }
.sidebar-nav-group li.current a { color: var(--gold); font-weight: 600; }

/* Post Body */
.post-body h2 { margin-top: 2rem; }
.post-body h3 { margin-top: 1.5rem; font-size: 1.15rem; }
.post-body p { line-height: 1.9; color: var(--text-secondary); }
.post-body ul { padding-right: 1.5rem; margin: 1rem 0; }
.post-body li { line-height: 1.8; color: var(--text-secondary); margin-bottom: 0.3rem; }

/* Related Posts Grid */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
  .service-layout { grid-template-columns: 1fr; gap: 2rem; }
  .service-sidebar { position: static; }
  .service-hero h1 { font-size: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .service-hero { padding: 6rem 0 3rem; }
  .service-hero h1 { font-size: 1.6rem; }
  .process-timeline::before { display: none; }
}

/* ========== CASE STUDY SINGLE ========== */
.case-study-detail {
  padding: 4rem 0;
}

.case-study-detail .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}

.case-study-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.meta-item {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 1.2rem;
  text-align: center;
}

.meta-item .meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 0.3rem;
  display: block;
}

.meta-item .meta-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
}

.case-study-main h2 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.case-study-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.case-study-main img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

/* Case Study Results Sidebar */
.results-sidebar {
  position: sticky;
  top: 100px;
}

.results-sidebar .sidebar-card .result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.results-sidebar .sidebar-card .result-row:last-child {
  border-bottom: none;
}

.results-sidebar .result-row .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.results-sidebar .result-row .value {
  font-family: 'Secular One', sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
}

/* Client Quote */
.client-quote {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-right: 3px solid var(--gold);
  padding: 2rem;
  margin: 2.5rem 0;
}

.client-quote .quote-mark {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.client-quote p {
  font-style: italic;
  color: var(--text-primary) !important;
  font-weight: 400 !important;
}

.client-quote .quote-author {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
}

.portfolio-invite-text {
  color: #8a8578;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 700px;
  margin: 0.75rem auto 0;
  text-align: center;
}

/* ========== PORTFOLIO PAGE ========== */
.portfolio-listing {
  padding: 6rem 0;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.portfolio-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-listing-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-listing-card .thumb {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--transition);
}

.portfolio-listing-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.portfolio-listing-card:hover .thumb img {
  transform: scale(1.05);
}

.portfolio-listing-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.portfolio-listing-card:hover .overlay {
  opacity: 1;
}

.portfolio-listing-card .tag {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: 'Secular One', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.portfolio-listing-card .name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.portfolio-listing-card .result {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 4rem 0 6rem;
}

.contact-section .container {
  max-width: 1100px;
}

/* 2-Column Contact Grid: Form RIGHT, Info LEFT (RTL) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-intro {
  color: #8a8578;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 2rem;
  text-align: right;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  padding: 3rem;
}

.contact-form-wrap > h2,
.contact-form h2 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-form .subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-primary);
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* Floating Label Fields */
.float-field {
  position: relative;
  margin-bottom: 1rem;
}
.float-field input,
.float-field textarea,
.float-field select {
  width: 100%;
  padding: 1.1rem 1rem 0.5rem;
  background: var(--bg-primary);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.float-field label {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.2s ease;
}
.float-field textarea ~ label {
  top: 1.1rem;
  transform: none;
}
.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label,
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
  top: 0.35rem;
  transform: none;
  font-size: 0.72rem;
  color: var(--gold);
}
.float-field input:focus,
.float-field textarea:focus,
.float-field select:focus {
  border-color: var(--gold);
}
.float-field select {
  appearance: none;
  cursor: pointer;
}
.float-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Contact Sidebar — Info List */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200, 168, 78, 0.08);
  transition: background 0.3s;
}
.info-card:first-child {
  padding-top: 0;
}
.info-card:last-child {
  border-bottom: none;
}
.info-card .info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.info-card .info-content {
  flex: 1;
  min-width: 0;
}
.info-card h3 {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.5;
}
.info-card a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}
.info-card a:hover {
  color: var(--gold);
}

/* WhatsApp Button */
.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.contact-whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}
.contact-whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Sidebar Map */
.contact-sidebar-map {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--bg-card);
}
.contact-sidebar-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-map-section {
  padding: 5rem 0;
}
.about-map {
  margin-top: 2rem;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legacy .contact-map kept for about page map */
.contact-map {
  margin-top: 2rem;
  height: 400px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--bg-card);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== BLOG LISTING ========== */
.blog-listing {
  padding: 4rem 0 6rem;
}

.blog-featured {
  margin-bottom: 4rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

.featured-post:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.featured-post .thumb {
  aspect-ratio: 16/10;
  background: var(--bg-card-hover);
  overflow: hidden;
}

.featured-post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.featured-post:hover .thumb img {
  transform: scale(1.05);
}

.featured-post .content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post .category {
  font-size: 0.75rem;
  color: var(--gold);
  font-family: 'Secular One', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.featured-post h2 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.featured-post h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.featured-post h2 a:hover {
  color: var(--gold);
}

.featured-post .excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-post .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.blog-card .thumb {
  aspect-ratio: 16/10;
  background: var(--bg-card-hover);
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.blog-card:hover .thumb img {
  transform: scale(1.05);
}

.blog-card .content {
  padding: 1.5rem;
}

.blog-card .category {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: 'Secular One', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.blog-card h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-card .excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card .meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ========== SINGLE POST ========== */
.single-post-content {
  padding: 4rem 0 6rem;
}

.single-post-content .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.post-article .post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.post-article .post-meta .reading-time {
  color: var(--gold);
}

.post-featured-image {
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== CLIENT STORY EXTRAS ========== */
.story-hero-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.story-video {
  margin-top: 3rem;
}
.story-video h2 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.story-video .video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.story-video .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-gallery {
  margin-top: 3rem;
}
.story-gallery h2 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  cursor: pointer;
  transition: transform 0.3s;
}
.story-gallery-item:hover {
  transform: scale(1.03);
}
.story-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.story-gallery-item:hover img {
  transform: scale(1.08);
}

.post-body h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-body h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.post-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.post-body ul, .post-body ol {
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-body li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  background: var(--bg-card);
  border-right: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
}

.post-body blockquote p {
  color: var(--text-primary);
  font-weight: 400;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.post-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-tags a {
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.post-tags a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Post Share */
.post-share {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.post-share span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.post-share 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);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.post-share a svg {
  width: 16px;
  height: 16px;
}

.post-share a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-card {
  margin-bottom: 1.5rem;
}

.blog-sidebar .sidebar-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.related-posts h2 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ========== RELATED STORIES (styled) ========== */
.related-stories {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}
.related-stories h2 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.related-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
.related-story-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.related-story-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}
.related-story-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: var(--bg-primary);
}
.related-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.related-story-card:hover .related-story-image img {
  transform: scale(1.06);
}
.related-story-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-card);
}
.related-story-content {
  padding: 1.2rem;
}
.related-story-industry {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.related-story-content h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0.4rem 0 0.3rem;
}
.related-story-stat {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.pagination a, .pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* ========== 404 PAGE ========== */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-404 .big-number {
  position: absolute;
  font-family: 'Secular One', sans-serif;
  font-size: clamp(15rem, 30vw, 30rem);
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.page-404 .content {
  position: relative;
  z-index: 2;
}

.page-404 h1 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-404 p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ========== ARCHIVE PAGE ========== */
.archive-listing {
  padding: 4rem 0 6rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}


/* ==========================================================================
   ELEMENTOR COMPATIBILITY
   ========================================================================== */

/* Remove default margins for Elementor pages */
.elementor-page .page-hero,
.elementor-page .site-content {
  padding-top: 0;
}

/* Full Width template */
.page-template-elementor-full-width .site-content {
  max-width: 100%;
  padding: 0;
}

/* Elementor section styling overrides */
.elementor-section {
  direction: rtl;
}

/* Make Elementor inherit theme typography */
.elementor-widget-text-editor,
.elementor-widget-heading {
  font-family: 'Heebo', sans-serif;
}

/* Fix Elementor button styles */
.elementor-button {
  font-family: 'Heebo', sans-serif;
}

/* Ensure dark backgrounds in Elementor */
.elementor-section > .elementor-container {
  max-width: 1200px;
}


/* ==========================================================================
   INNER PAGES RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .about-features-row { gap: 0.75rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail .container { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .case-study-detail .container { grid-template-columns: 1fr; }
  .results-sidebar { position: static; }
  .case-study-meta-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .single-post-content .container { grid-template-columns: 1fr; }
  .portfolio-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .related-stories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }
  .about-hero { padding: 120px 0 3rem; }
  .about-story-text { font-size: 0.92rem; }
  .about-features-row { gap: 0.5rem; }
  .about-feature-pill { font-size: 0.8rem; padding: 0.45rem 0.9rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-listing-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .related-stories-grid { grid-template-columns: 1fr; }
  .services-listing-grid { grid-template-columns: 1fr; }
  .case-study-meta-bar { grid-template-columns: 1fr; }
  .story-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   VIDEO CAROUSEL
   ========================================================================== */
/* ========== REELS VIDEO CAROUSEL ========== */
.reels-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.reels-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.reels-section .section-label,
.reels-section .section-title,
.reels-section .section-subtitle {
  text-align: center;
  position: relative;
  z-index: 2;
}

.reels-section .section-label { justify-content: center; }

.reels-carousel {
  position: relative;
  z-index: 2;
}

.reels-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

/* Desktop: ~4.5 visible cards */
.reel-card {
  flex: 0 0 calc(22% - 0.9rem);
  min-width: 180px;
  scroll-snap-align: start;
  cursor: pointer;
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: border-color 0.4s var(--transition), box-shadow 0.4s var(--transition), transform 0.4s var(--transition);
}

.reel-card:hover .reel-thumb {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-4px);
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.05);
}

.reel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-card);
}

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.3);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.reel-card:hover .reel-play {
  opacity: 1;
}

.reel-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
}

.reel-title {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.6rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.reel-card:hover .reel-title {
  color: var(--gold);
}

/* ==========================================================================
   VIDEO LIGHTBOX
   ========================================================================== */
.vc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.4s, opacity 0.4s var(--transition);
}

.vc-lightbox.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.4s var(--transition);
}

.vc-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vc-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.4s var(--transition);
}

.vc-lightbox.open .vc-lightbox-content {
  transform: scale(1);
}

.vc-lightbox-close {
  position: absolute;
  top: -50px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(22, 22, 28, 0.8);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.vc-lightbox-close:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.vc-lightbox-player {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.1);
}

.vc-lightbox-player iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   POPUP CONTACT FORM
   ========================================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}
.popup-container {
  position: relative;
  background: var(--bg-secondary, #111116);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s ease;
}
.popup-overlay.open .popup-container {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary, #999);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--gold); }

.popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.popup-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.popup-header p {
  color: var(--text-secondary, #999);
  font-size: 0.9rem;
}
.popup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.popup-field-full { grid-column: 1 / -1; }
.popup-field input,
.popup-field textarea {
  width: 100%;
  direction: rtl;
  text-align: right;
  background: var(--bg-primary, #0A0A0C);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.popup-field input:focus,
.popup-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.popup-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.popup-status {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

@media (max-width: 600px) {
  .popup-container { padding: 1.5rem; }
  .popup-fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */
.fresh-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.fresh-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fresh-loader-logo {
  margin-bottom: 2rem;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.2s forwards;
}
.fresh-loader-logo img {
  height: 48px;
  width: auto;
}

.fresh-loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.5s forwards;
}

.fresh-loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(200%); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   DESIGN ENHANCEMENTS - Phase 3
   ========================================================================== */

/* --- Enhanced Card Hover Effects --- */
.service-card {
  transition: transform 0.4s var(--transition), border-color 0.4s var(--transition), box-shadow 0.4s var(--transition), background 0.4s var(--transition);
}

.portfolio-card {
  transition: transform 0.5s var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

.testimonial-card {
  transition: transform 0.4s var(--transition), border-color 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* info-card hover styles defined in Contact Info Cards section */

/* --- Gold Glow Accents --- */
.section-label {
  position: relative;
}

.section-label .dot {
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.gold {
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

/* --- Enhanced Glassmorphism --- */
.hero-stat {
  background: rgba(22, 22, 28, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.hero-stat:hover {
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(22, 22, 28, 0.8);
}

.process-step {
  position: relative;
  transition: transform 0.4s var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step:hover .step-number {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* --- Reveal Animation Enhancements --- */
.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-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Smooth Section Transitions --- */
section {
  position: relative;
}

/* --- Player Placeholder (showreel fallback) --- */
.player-placeholder {
  width: 100%;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.player-placeholder .play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.5rem;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.player-placeholder:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5);
}

/* --- CTA Section Glow --- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Gallery Item Hover --- */
.gallery-item {
  transition: transform 0.4s var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item:hover img {
  filter: brightness(1.1);
}

/* ==========================================================================
   REELS CAROUSEL RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  /* Tablet: 2-3 visible cards */
  .reel-card {
    flex: 0 0 calc(35% - 0.8rem);
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .reels-section {
    padding: 5rem 0;
  }

  /* Mobile: 1.5 visible with peek */
  .reel-card {
    flex: 0 0 calc(60% - 0.6rem);
    min-width: 150px;
  }

  .reel-play {
    opacity: 1;
    background: rgba(10, 10, 12, 0.25);
  }

  .reel-play-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .vc-lightbox-content {
    width: 95%;
    max-width: 340px;
  }

  .vc-lightbox-close {
    top: -45px;
  }

  .fresh-loader-logo img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 calc(65% - 0.6rem);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ========== FOCUS-VISIBLE STATES ========== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}

.service-card:focus-visible,
.portfolio-card:focus-visible,
.info-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.tab-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.footer-social a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.popup-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mobile-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ========== SERVICE CATEGORY PAGES ========== */
.category-hero-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.category-problem {
  padding: 5rem 0;
  position: relative;
}
.category-problem .section-label {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.category-problem-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.category-subservices {
  padding: 5rem 0;
  background: var(--bg-secondary, #111116);
}
.category-subservices .section-label {
  justify-content: center;
  margin-bottom: 2.5rem;
}
/* Force gold on all sub-service card icons */
.category-subservices .service-icon,
.category-subservices .service-card .service-icon {
  color: var(--gold);
}
.category-subservices .service-icon svg {
  color: var(--gold) !important;
  fill: none;
  stroke: currentColor;
}
.category-subservices .service-icon img {
  filter: sepia(1) saturate(2) hue-rotate(15deg) brightness(0.85);
}
.category-subservices .fresh-icon-emoji {
  display: none;
}
.category-no-services {
  text-align: center;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.category-process {
  padding: 5rem 0;
}

.category-stats {
  padding: 5rem 0;
  background: var(--bg-secondary, #111116);
}
.category-stats .section-label {
  margin-bottom: 2.5rem;
}
.category-stats .stat-label {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.3rem;
}
.stat-source {
  font-size: 0.72rem;
  color: var(--text-muted, #666);
  margin-top: 0.5rem;
  font-style: italic;
}

.category-faq {
  padding: 5rem 0;
}
.category-faq .section-label {
  margin-bottom: 1rem;
}
.faq-section {
  padding: 4rem 0 5rem;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover,
.faq-item.open {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.3s;
  font-family: inherit;
  min-height: 56px;
}
.faq-question:hover {
  color: #d4b65e;
}
.faq-toggle {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  font-weight: 300;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}
.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.faq-answer a:hover {
  color: #d4b65e;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0 4rem;
  }
  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
    min-height: 52px;
  }
  .faq-answer {
    padding: 0 1.2rem;
  }
  .faq-item.open .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }
}

/* Category pages responsive */
@media (max-width: 1024px) {
  .category-process .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .category-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .category-process .process-steps {
    grid-template-columns: 1fr !important;
  }
  .category-stats .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .category-hero-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .category-stats .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #e8e6e1;
    z-index: 99999;
    padding: 1rem 2rem;
    transition: transform 0.4s ease;
    direction: rtl;
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}
.cookie-learn {
    color: var(--gold, #C9A84C);
    text-decoration: underline;
    margin-right: 0.5rem;
}
.cookie-accept {
    background: var(--gold, #C9A84C);
    color: #0a0a0c;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-accept:hover {
    background: #d4b85a;
}
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .cookie-accept {
        width: 100%;
    }
}
