/* ===================================================
   ABARSAZAN — ابرسازان
   Global Design System — style.css
   RTL Persian luxury brand stylesheet
   =================================================== */

/* ── Local Fonts (static/fonts) ───────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:       #0d0d0d;
  --bg-secondary:     #1a1a1a;
  --bg-card:          #161616;
  --bg-card-hover:    #1e1e1e;

  --gold:             #c9a227;
  --gold-light:       #d4af37;
  --gold-dim:         rgba(201,162,39,0.15);
  --gold-border:      rgba(201,162,39,0.25);
  --gold-glow:        0 0 20px rgba(201,162,39,0.35);

  --text-primary:     #e5e5e5;
  --text-muted:       #b3b3b3;
  --text-dark:        #888888;

  --border-subtle:    rgba(255,255,255,0.06);
  --border-gold:      rgba(201,162,39,0.25);

  /* Typography */
  --font-fa:          'Vazirmatn', Tahoma, sans-serif;

  /* Spacing */
  --section-pad:      90px 0;
  --container-max:    1260px;
  --card-radius:      14px;
  --btn-radius:       10px;

  /* Transitions */
  --trans-fast:       0.2s ease;
  --trans-med:        0.35s ease;
  --trans-slow:       0.5s ease;

  /* Header */
  --header-h:         80px;
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-fa);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-fa);
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font-fa);
  outline: none;
}

/* ── Container ────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Padding ──────────────────────────────── */
.section-pad { padding: var(--section-pad); }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  color: var(--text-primary);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

.gold-text { color: var(--gold-light); }
.muted-text { color: var(--text-muted); }

/* ── Gold Divider ─────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--btn-radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-fa);
  transition: all var(--trans-med);
  cursor: pointer;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  border: none;
  box-shadow: 0 4px 18px rgba(201,162,39,0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201,162,39,0.5);
  transform: translateY(-2px);
  color: #0d0d0d;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--trans-med);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 16px 40px rgba(0,0,0,0.4);
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

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

.card-body {
  padding: 22px;
}

/* ── Gold Badge ───────────────────────────────────── */
.gold-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Category Pill ────────────────────────────────── */
.cat-pill {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
}

.site-header > .container {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 1.2rem;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: var(--gold-dim);
}

.nav-link.active {
  border-bottom: 2px solid var(--gold);
}

.nav-link .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform var(--trans-fast);
}

.nav-item:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(22,22,22,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--trans-med);
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--trans-fast);
}

.dropdown-menu a:hover {
  color: var(--gold-light);
  background: var(--gold-dim);
  padding-right: 24px;
}

/* Header end — cart, phone, CTA, hamburger */
.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-inline-start: auto;
}

/* Header Right (actions) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: ltr;
}

.header-phone i {
  color: var(--gold);
}

.header-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  transition: all var(--trans-fast);
  text-decoration: none;
}

.header-icon-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--trans-med);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px 30px;
  border-bottom: 1px solid var(--border-gold);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--trans-med);
  pointer-events: none;
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-light);
}

.mobile-nav .sub-links {
  padding-right: 16px;
}

.mobile-nav .sub-links a {
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  margin-top: 0;
}

.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-border);
  display: inline-block;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--trans-fast);
  line-height: 2.2;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer-links a {
  display: block;
}

.footer-links a::before {
  content: '← ';
  color: var(--gold);
  font-size: 0.75rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo-small {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-logo-small .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
  border-radius: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (shared across inner pages)
   ═══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--trans-fast);
}

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

.breadcrumb .sep {
  color: var(--gold-border);
  font-size: 0.7rem;
}

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

/* ═══════════════════════════════════════════════════
   HERO SLIDER (index.html)
   ═══════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  max-height: 820px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.6) 60%, rgba(13,13,13,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
  animation: fadeSlideUp 0.6s ease 0.35s both;
}

.hero-title .white-text { color: var(--text-primary); }
.hero-title .gold-hl { color: var(--gold-light); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s ease 0.5s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease 0.65s both;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--trans-med);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.15);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  z-index: 10;
  transition: all var(--trans-fast);
}

.slider-arrow:hover {
  background: var(--gold);
  color: #0d0d0d;
}

.slider-arrow.prev { right: 20px; }
.slider-arrow.next { left: 20px; }

/* ═══════════════════════════════════════════════════
   SERVICE CARDS (index)
   ═══════════════════════════════════════════════════ */
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card-big {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-med);
  min-height: 480px;
}

.service-card-big:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.service-card-big-img {
  height: 260px;
  overflow: hidden;
}

.service-card-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.service-card-big:hover .service-card-big-img img {
  transform: scale(1.07);
}

.service-card-big-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,162,39,0.08));
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-card-big h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-big p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex: 1;
}

/* ═══════════════════════════════════════════════════
   FEATURE STRIP
   ═══════════════════════════════════════════════════ */
.feature-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 16px;
  border-radius: var(--card-radius);
  transition: all var(--trans-med);
}

.feature-item:hover {
  background: var(--gold-dim);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--gold-border);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}

.experience-badge .num {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-list {
  margin: 20px 0;
}

.about-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.about-list li i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════ */
.newsletter-bar {
  background: linear-gradient(135deg, #161616, #1e1a0f);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--btn-radius);
  padding: 13px 18px;
  color: var(--text-primary);
  font-size: 0.93rem;
  transition: border-color var(--trans-fast);
}

.newsletter-form input::placeholder { color: var(--text-dark); }

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

/* ═══════════════════════════════════════════════════
   FILTER TABS
   ═══════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border-gold);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--trans-med);
  font-family: var(--font-fa);
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201,162,39,0.3);
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 20px 50px rgba(0,0,0,0.4);
}

.product-card .card-img-wrap img {
  height: 200px;
}

.card-img-empty,
.gallery-main-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(145deg, #1a1a1a, #121212);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.card-img-empty {
  height: 200px;
  font-size: 1.75rem;
}

.gallery-main-empty {
  height: 420px;
  border-radius: 16px;
  border-color: var(--border-gold);
  font-size: 2.5rem;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
}

.product-spec {
  font-size: 0.82rem;
  color: var(--text-dark);
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE — Zigzag
   ═══════════════════════════════════════════════════ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-row.reverse { direction: ltr; }
.service-row.reverse > * { direction: rtl; }

.service-row-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.service-row-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.service-row:hover .service-row-img img {
  transform: scale(1.04);
}

.service-row-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,162,39,0.06));
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-row-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-row-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all var(--trans-fast);
}

.learn-more-link:hover {
  border-bottom-color: var(--gold-light);
  gap: 10px;
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  position: relative;
  padding: 0 10px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-border));
  z-index: 0;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #0d0d0d;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #1a1500 0%, #0d0d0d 50%, #1a1500 100%);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════════════ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 20px 50px rgba(0,0,0,0.4);
}

.project-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.project-card:hover .project-card-img img {
  transform: scale(1.06);
}

.project-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.project-location i { color: var(--gold); }

.project-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}

.project-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 8px;
  transition: gap var(--trans-fast);
}

.project-detail-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   STATS COUNTERS
   ═══════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  transition: all var(--trans-med);
}

.stat-item:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* ═══════════════════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--trans-med);
}

.team-card:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-border);
  margin: 0 auto 16px;
  display: block;
  transition: border-color var(--trans-fast);
}

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

.team-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ═══════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-right: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-border), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-right: 30px;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--gold-border);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow), 0 16px 40px rgba(0,0,0,0.4);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dark);
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */
.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--btn-radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.93rem;
  font-family: var(--font-fa);
  transition: all var(--trans-fast);
}

.contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  cursor: pointer;
  padding-left: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-color: #161616;
}

.contact-form-group select option {
  background: #161616;
  color: #f5f5f5;
  padding: 10px;
}

.contact-form-group select option:checked,
.contact-form-group select option:hover {
  background: #c9a227;
  color: #0d0d0d;
}

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

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
  background-color: #1a1a1a;
  outline: none;
}

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

.contact-form-group.error input,
.contact-form-group.error textarea,
.contact-form-group.error select {
  border-color: #e74c3c;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

img.img-fallback {
  background: linear-gradient(135deg, #1a1a1a, #2a2a1a);
  object-fit: none;
  min-height: 120px;
}

.error-msg {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.contact-form-group.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: rgba(46,213,115,0.1);
  border: 1px solid rgba(46,213,115,0.3);
  border-radius: var(--card-radius);
  padding: 20px;
  text-align: center;
  color: #2ed573;
  font-weight: 600;
  margin-top: 16px;
}

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: all var(--trans-med);
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h5 {
  font-size: 0.87rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, var(--border-subtle) 0px, var(--border-subtle) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--border-subtle) 0px, var(--border-subtle) 1px, transparent 1px, transparent 40px);
}

.map-pin-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold);
}

.map-pin-overlay i {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

.map-pin-overlay span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-fa);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: transparent;
  border: none;
  text-align: right;
  transition: color var(--trans-fast);
  user-select: none;
}

.faq-question span {
  flex: 1;
  color: #fff;
  line-height: 1.6;
}

.faq-question:hover,
.faq-question:hover span {
  color: var(--gold-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: all var(--trans-med);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: #0d0d0d;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-slow);
}

.faq-answer-inner,
.faq-answer p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin: 0;
}

.faq-answer-inner {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL — Image Gallery
   ═══════════════════════════════════════════════════ */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: border-color var(--trans-fast);
}

.gallery-main img:hover {
  border-color: var(--gold);
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  cursor: pointer;
  transition: border-color var(--trans-fast);
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--btn-radius);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--trans-fast);
  font-family: var(--font-fa);
}

.qty-btn:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
}

.qty-input {
  width: 60px;
  height: 40px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  color: var(--text-primary);
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-fa);
}

/* Tabs */
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 28px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--trans-fast);
  font-family: var(--font-fa);
}

.tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.spec-table td {
  padding: 12px 8px;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.spec-table td:last-child {
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-med);
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.lightbox-close:hover {
  background: rgba(201,162,39,0.3);
  border-color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.2);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: #0d0d0d;
}

.lightbox-prev { right: 20px; }
.lightbox-next { left: 20px; }

/* ═══════════════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════════════ */
.comment-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}

.comment-meta {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.comment-name {
  font-weight: 700;
  color: var(--text-primary);
}

.comment-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Blockquote */
.article-blockquote {
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-dim);
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  margin: 24px 0;
  color: var(--text-primary);
  font-style: italic;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

/* Floating glow decoration */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-gold {
  background: rgba(201,162,39,0.07);
}

/* ═══════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--trans-fast);
  font-family: var(--font-fa);
}

.page-btn:hover,
.page-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  border-color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   AUTHOR BIO
   ═══════════════════════════════════════════════════ */
.author-bio {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--card-radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
}

.author-bio img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}

.author-bio-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.author-bio-role {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.author-bio-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   LOAD MORE
   ═══════════════════════════════════════════════════ */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Hidden cards for load more */
.hidden-card { display: none; }

/* ═══════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8       { gap: 8px; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.mb-12       { margin-bottom: 12px; }
.mb-16       { margin-bottom: 16px; }
.mb-20       { margin-bottom: 20px; }
.mb-24       { margin-bottom: 24px; }
.mb-32       { margin-bottom: 32px; }
.mb-40       { margin-bottom: 40px; }
.mb-48       { margin-bottom: 48px; }
.mt-24       { margin-top: 24px; }
.mt-32       { margin-top: 32px; }
.w-full      { width: 100%; }
.position-relative { position: relative; }
.overflow-hidden   { overflow: hidden; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards-grid {
    gap: 20px;
  }

  .about-preview {
    gap: 40px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px — mobile header: menu LEFT | logo RIGHT */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .main-nav,
  .header-phone,
  .header-actions .btn {
    display: none !important;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    direction: ltr;
    gap: 10px;
  }

  .hamburger {
    order: 1;
    display: flex !important;
    flex-shrink: 0;
  }

  .header-end .hamburger {
    display: none !important;
  }

  .header-end {
    order: 2;
    margin: 0 !important;
    flex-shrink: 0;
    display: none;
  }

  .header-actions {
    display: flex !important;
  }

  .logo {
    order: 3;
    margin-left: auto;
    direction: rtl;
    flex-shrink: 0;
  }

  .main-nav {
    display: none !important;
  }

  .logo-tagline {
    display: none;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap img { height: 340px; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-row.reverse { direction: rtl; }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step::after { display: none; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .cta-banner { padding: 40px 24px; }

  .tab-nav { overflow-x: auto; }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* 375px — mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .logo-tagline {
    display: none;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-icon-btn,
  .hamburger {
    width: 40px;
    height: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-tab {
    flex-shrink: 0;
  }

  .hero-slider {
    max-height: 680px;
  }

  .gallery-main img { height: 280px; }

  .about-img-wrap img { height: 280px; }

  .filter-btn {
    flex-shrink: 0;
  }

  .contact-card-grid {
    grid-template-columns: 1fr !important;
  }

  .experience-badge {
    bottom: -16px;
    left: -10px;
    padding: 14px 18px;
  }

  .experience-badge .num { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════
   FIXES & MOCKUP ALIGNMENT
   ═══════════════════════════════════════════════════ */

.bg-secondary { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-tagline-pill {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Hero slide inline backgrounds */
.hero-slide {
  background-size: cover;
  background-position: center;
}

.hero-overlay,
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.25) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-buttons,
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-arrow.slider-prev { right: 20px; }
.slider-arrow.slider-next { left: 20px; }

/* Service cards — index aliases */
.service-card-image,
.service-card-big-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service-card-image img,
.service-card-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.service-card-big:hover .service-card-image img,
.service-card-big:hover .service-card-big-img img {
  transform: scale(1.07);
}

.service-card-body,
.service-card-big-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon-badge,
.service-card-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex: 1;
}

/* Feature strip aliases */
.feature-strip-item,
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 16px;
  border-radius: var(--card-radius);
  transition: all var(--trans-med);
  text-align: center;
}

.feature-strip-item:hover,
.feature-item:hover {
  background: var(--gold-dim);
}

.feature-strip-icon,
.feature-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid var(--gold-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.feature-strip-text h4,
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
}

.feature-strip-text p,
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About preview aliases */
.about-preview-grid,
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-image-wrap,
.about-img-wrap {
  position: relative;
  border-radius: 20px;
}

.about-preview-image-wrap img,
.about-preview-img,
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--gold-border);
}

.experience-number,
.experience-badge .num { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }

.experience-label,
.experience-badge .label { font-size: 0.8rem; font-weight: 600; margin-top: 4px; display: block; }

.about-preview-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-preview-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.newsletter-icon {
  font-size: 2rem;
  color: var(--gold);
}

.newsletter-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Filter bar — projects/products mockup */
.filter-bar,
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 14px 18px;
}

.filter-bar-tabs,
.filter-tabs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn,
.filter-tab {
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border-gold);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--trans-med);
  font-family: var(--font-fa);
}

.filter-btn:hover,
.filter-btn.active,
.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201,162,39,0.3);
}

/* Projects grid — mockup density */
.projects-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card-image,
.project-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.project-card-image img,
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.project-card:hover .project-card-image img,
.project-card:hover .project-card-img img {
  transform: scale(1.06);
}

.project-card-title { font-size: 1.05rem; font-weight: 700; }

.project-card-more,
.project-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  transition: gap var(--trans-fast);
}

.project-card-more:hover,
.project-detail-link:hover { gap: 10px; }

.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Page hero with background image */
.page-hero.has-bg-image {
  text-align: center;
  padding: 100px 0 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.92) 100%);
}

.page-hero.has-bg-image .container {
  position: relative;
  z-index: 1;
}

.service-row[id] {
  scroll-margin-top: calc(var(--header-h, 80px) + 16px);
}

/* Contact unified card — mockup */
.contact-card-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--gold-light);
}

.contact-section-title i {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-row .info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  flex-shrink: 0;
}

.contact-info-row .info-content h5 {
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-info-row .info-content p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.contact-map-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.consultation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.consultation-card .consult-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
}

/* Product / project / blog detail layouts */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-grid.reverse { direction: ltr; }
.detail-grid.reverse > * { direction: rtl; }

.product-info-card,
.project-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.product-info-card h1,
.project-detail-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.product-price-lg {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 16px 0;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gallery-main-img,
.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.project-gallery-grid img,
.gallery-lg-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: all var(--trans-fast);
}

.project-gallery-grid img:hover,
.gallery-lg-img:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
  color: var(--gold-light);
}

.article-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 2;
}

.article-content ul {
  list-style: disc;
  padding-right: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
}

.share-row .social-icon { width: 40px; height: 40px; }

.author-bio-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  margin: 40px 0;
}

.author-bio-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
}

@media (max-width: 1024px) {
  .projects-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-grid,
  .contact-map-cta-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .product-info-card,
  .project-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-preview-grid,
  .about-preview,
  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar,
  .filter-tabs {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Blog hero search */
.page-hero-inner {
  text-align: center;
}

.blog-search {
  display: flex;
  align-items: stretch;
  max-width: 480px;
  width: 100%;
  margin: 28px auto 0;
  direction: rtl;
}

.blog-search-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gold-border);
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 13px 18px;
  color: var(--text-primary);
  font-family: var(--font-fa);
  font-size: 0.93rem;
  text-align: right;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.blog-search-input::placeholder {
  color: var(--text-dark);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.blog-search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 1px solid var(--gold);
  border-radius: 10px 0 0 10px;
  color: #0d0d0d;
  font-size: 1rem;
  cursor: pointer;
  transition: filter var(--trans-fast), transform var(--trans-fast);
}

.blog-search-btn:hover {
  filter: brightness(1.08);
}

.blog-search-btn:active {
  transform: scale(0.97);
}

@media (max-width: 480px) {
  .blog-search {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   MOCKUP POLISH — home, projects, contact
   ═══════════════════════════════════════════════════ */

/* Home: overlay service cards */
.service-overview {
  padding: 0 0 48px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.service-cards-overlay {
  gap: 20px;
}

.service-card-overlay {
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}

.service-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.service-card-overlay .service-card-image {
  height: 280px;
  position: relative;
}

.service-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card-warm .service-card-shade {
  background: linear-gradient(135deg, rgba(212,185,120,0.55) 0%, rgba(13,13,13,0.72) 100%);
}

.service-card-dark .service-card-shade {
  background: linear-gradient(135deg, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.88) 100%);
}

.service-card-overlay .service-card-icon-badge {
  top: 20px;
  right: 20px;
  bottom: auto;
  z-index: 2;
}

.service-card-overlay-body {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card-overlay .service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 20px;
  border: 1.5px solid rgba(201,162,39,0.7);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(13,13,13,0.35);
  transition: all var(--trans-fast);
}

.service-card-overlay:hover .service-card-cta {
  background: var(--gold);
  color: #0d0d0d;
  border-color: var(--gold);
}

/* Home: light feature strip */
.feature-strip {
  background: #f3efe6;
  border-top: 1px solid #e5dcc8;
  border-bottom: 1px solid #e5dcc8;
}

.feature-strip-text h4,
.feature-strip-item h4 {
  color: #1a1a1a;
}

.feature-strip-text p,
.feature-strip-item p {
  color: #666;
}

.feature-strip-icon,
.feature-item .feature-icon {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.feature-strip-item:hover {
  background: rgba(201,162,39,0.08);
}

/* Home: about section */
.about-section-dark {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #111 100%);
}

.about-eyebrow {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.experience-badge-square {
  bottom: auto;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--gold);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  min-width: 118px;
  text-align: center;
  z-index: 3;
}

.experience-badge-square .experience-number {
  color: var(--gold-light);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(201, 162, 39, 0.45);
}

.experience-badge-square .experience-label {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 10px;
  display: block;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Footer brand column */
.footer-brand-col {
  max-width: 280px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.footer-brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  justify-content: space-between;
}

/* Page hero diamond divider */
.page-hero-divider-diamond {
  width: 120px;
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-divider-diamond::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,162,39,0.6);
}

.page-hero.has-bg-image p {
  line-height: 1.9;
}

.gold-text {
  color: var(--gold-light);
}

/* Projects panel */
.projects-section {
  padding-top: 0;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.projects-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.projects-panel .filter-bar {
  margin-bottom: 28px;
  background: rgba(255,255,255,0.02);
}

.projects-panel .cat-pill {
  display: none;
}

.project-card .gold-badge {
  top: auto;
  bottom: -22px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  padding: 0;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(201,162,39,0.45);
}

.project-card-img {
  margin-bottom: 30px;
}

.projects-panel .project-card-body {
  text-align: center;
  align-items: center;
}

.projects-panel .project-location {
  color: var(--gold-light);
  justify-content: center;
  font-weight: 500;
}

.projects-panel .project-detail-link {
  margin-top: 12px;
}

/* CTA row layout */
.cta-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: right;
  padding: 40px 48px;
  margin: 0;
}

.cta-banner-row .cta-icon {
  margin: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  font-size: 2rem;
}

.cta-banner-row .cta-banner-text {
  flex: 1;
}

.cta-banner-row h2 {
  margin-bottom: 8px;
}

.cta-banner-row p {
  margin-bottom: 0;
}

/* Contact page */
.contact-section {
  padding: 0 0 60px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.contact-card-wrap {
  margin-top: 0;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.contact-card-grid {
  grid-template-columns: 1.2fr 1fr;
}

.contact-section-title-muted {
  color: var(--text-primary);
}

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

.contact-info-row .info-icon {
  border-radius: 50%;
}

.map-dark {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.map-pin-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(13,13,13,0.85);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.85rem;
  z-index: 2;
}

@media (max-width: 992px) {
  .service-cards-overlay {
    grid-template-columns: 1fr;
  }

  .experience-badge-square {
    left: 16px;
    top: auto;
    bottom: -20px;
    transform: none;
    padding: 22px 20px;
    min-width: 104px;
  }

  .experience-badge-square .experience-number {
    font-size: 2.4rem;
  }

  .experience-badge-square .experience-label {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .cta-banner-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .projects-panel {
    padding: 18px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

/* Product intro cards — photo, title, description only */
.product-card-intro {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card-intro:hover .product-name {
  color: var(--gold-light);
}

.product-desc,
.product-card .product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.product-detail-desc {
  color: var(--text-muted);
  line-height: 1.9;
  margin: 16px 0 20px;
  font-size: 1rem;
}

.product-card-body .product-price,
.product-price-lg {
  display: none;
}

/* ── 404 Error Page ───────────────────────────────── */
.error-page {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.error-page-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 162, 39, 0.06), transparent 45%),
    linear-gradient(180deg, #121212 0%, var(--bg-primary) 100%);
  pointer-events: none;
}

.error-page-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}

.error-page-code {
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  animation: errorFadeUp 0.7s ease both;
}

.error-page-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  font-size: 1.4rem;
  animation: errorFadeUp 0.7s ease 0.1s both;
}

.error-page h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  animation: errorFadeUp 0.7s ease 0.15s both;
}

.error-page p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 32px;
  animation: errorFadeUp 0.7s ease 0.2s both;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: errorFadeUp 0.7s ease 0.28s both;
}

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

@media (max-width: 560px) {
  .error-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-page-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Site Dialog (themed confirm/alert) ───────────── */
body.site-dialog-open {
  overflow: hidden;
}

.site-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-dialog-overlay.is-open {
  opacity: 1;
}

.site-dialog {
  width: min(100%, 420px);
  background: linear-gradient(165deg, #161616 0%, #0f0f0f 100%);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 28px 26px 24px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--gold-glow);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
}

.site-dialog-overlay.is-open .site-dialog {
  transform: translateY(0) scale(1);
}

.site-dialog-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 1.25rem;
}

.site-dialog-icon.is-danger {
  background: rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.45);
  color: #ff8f84;
}

.site-dialog-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.site-dialog-message {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0 0 24px;
}

.site-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-dialog-actions .btn {
  min-width: 110px;
  justify-content: center;
}

/* ── Site Toasts ──────────────────────────────────── */
.site-toast-host {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100% - 32px, 360px);
  pointer-events: none;
}

.site-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(165deg, #161616 0%, #0f0f0f 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-toast.is-open {
  opacity: 1;
  transform: translateY(0);
}

.site-toast-icon {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-top: 2px;
}

.site-toast-success .site-toast-icon { color: #7dffa8; }
.site-toast-error .site-toast-icon { color: #ff8f84; }

.site-toast-success { border-color: rgba(46, 213, 115, 0.4); }
.site-toast-error { border-color: rgba(231, 76, 60, 0.45); }

.site-toast-body {
  flex: 1;
  text-align: right;
}

.site-toast-body strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.site-toast-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-toast-close {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

.site-toast-close:hover {
  color: var(--gold-light);
}

@media (max-width: 560px) {
  .site-toast-host {
    left: 16px;
    right: 16px;
    width: auto;
  }
}
