/* ===== CSS VARIABLES ===== */
:root {
  --gold: #dda74e;
  --gold-light: #f0c878;
  --gold-dark: #9b733a;
  --gold-glow: rgba(221, 167, 78, 0.15);
  --dark: #202020;
  --dark2: #2c2c2c;
  --dark3: #383838;
  --white: #ffffff;
  --off-white: #f8f4ef;
  --text-muted: #888;

  /* Theme tokens */
  --bg: #181818;
  --bg2: #242424;
  --bg3: #2e2e2e;
  --text: #f0ead8;
  --text2: #c8b99a;
  --border: rgba(221,167,78,0.18);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --card-bg: #242424;
  --nav-bg: rgba(24,24,24,0.97);
}

[data-theme="light"] {
  --bg: #f8f4ef;
  --bg2: #fff;
  --bg3: #f0ead8;
  --text: #1a1308;
  --text2: #5a4a2a;
  --border: rgba(155,115,58,0.18);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --card-bg: #ffffff;
  --nav-bg: rgba(248,244,239,0.97);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 4px 14px rgba(221,167,78,0.35);
  overflow: hidden;
  padding: 2px;
}
.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text {
  font-size: 20px; font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 11px;
  color: var(--text2);
  font-weight: 400;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--border); color: var(--gold); }
.nav-controls {
  display: flex; align-items: center; gap: 8px;
}
.btn-icon {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-icon:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn {
  padding: 6px 14px; border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg2); color: var(--text);
  cursor: pointer; font-size: 13px; font-weight: 700;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--text);
  font-size: 15px; font-weight: 600;
  padding: 12px 16px; border-radius: 8px;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--border); color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(221,167,78,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(221,167,78,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(221,167,78,0.12);
  border: 1px solid rgba(221,167,78,0.3);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; color: var(--gold);
  font-weight: 600; margin-bottom: 20px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 17px; color: var(--text2);
  line-height: 1.75; margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 30px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 6px 24px rgba(221,167,78,0.35);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(221,167,78,0.45); }
.btn-secondary {
  padding: 14px 30px; border-radius: 12px;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer;
  font-family: 'Cairo', sans-serif;
  background: transparent;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(221,167,78,0.1); }
.hero-stats {
  display: flex; gap: 24px; margin-top: 40px;
}
.stat { text-align: center; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text2); margin-top: 2px; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.logo-display {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, #202020 0%, #2c2c2c 100%);
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(221,167,78,0.15);
  position: relative;
  overflow: hidden;
}
.logo-display::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(221,167,78,0.4), transparent 60%);
  z-index: -1;
}
.hero-logo-img {
  width: 220px; height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(221,167,78,0.3));
  transition: transform 0.3s ease;
}
.hero-logo-img:hover { transform: scale(1.05); }
/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,167,78,0.15), transparent);
  animation: float 6s ease-in-out infinite;
}
.orb1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 200px; height: 200px; bottom: 50px; left: -50px; animation-delay: 3s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== SECTION BASE ===== */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: var(--text2);
  max-width: 550px; line-height: 1.8;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px; margin: 16px 0 40px;
}
[dir="rtl"] .divider { margin-right: 0; }

/* ===== FEATURES ===== */
.features { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(221,167,78,0.12);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(221,167,78,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature-title {
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products { background: var(--bg); }
.products-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg2); color: var(--text2);
  cursor: pointer; font-size: 13px; font-weight: 600;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(221,167,78,0.15);
}
.product-img {
  height: 250px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  font-size: 64px;
  position: relative; overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--card-bg));
}
.product-badge-tag {
  position: absolute; top: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; color: #fff;
}
[dir="ltr"] .product-badge-tag { right: 12px; }
[dir="rtl"] .product-badge-tag { left: 12px; }
.badge-new { background: #22c55e; }
.badge-hot { background: #ef4444; }
.badge-sale { background: var(--gold); }
.product-body { padding: 20px; }
.product-cat {
  font-size: 11px; color: var(--gold);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 6px;
}
.product-name {
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px; line-height: 1.4;
}
.product-desc {
  font-size: 13px; color: var(--text2);
  line-height: 1.65; margin-bottom: 16px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 18px; font-weight: 900; color: var(--gold);
}
.product-price .unit {
  font-size: 12px; color: var(--text2); font-weight: 400;
}
.btn-inquire {
  padding: 8px 18px; border-radius: 8px;
  background: rgba(221,167,78,0.12);
  border: 1px solid rgba(221,167,78,0.3);
  color: var(--gold); font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: 'Cairo', sans-serif;
  transition: all 0.2s; text-decoration: none;
}
.btn-inquire:hover { background: var(--gold); color: #fff; }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.about-number {
  font-size: 64px; font-weight: 900;
  color: var(--gold); opacity: 0.12;
  position: absolute; top: 16px;
  line-height: 1;
}
[dir="rtl"] .about-number { right: 24px; }
[dir="ltr"] .about-number { left: 24px; }
.about-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-mini {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  text-align: center;
}
.about-mini-num { font-size: 26px; font-weight: 900; color: var(--gold); }
.about-mini-label { font-size: 12px; color: var(--text2); margin-top: 4px; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(221,167,78,0.12);
  border: 1px solid rgba(221,167,78,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--text2); font-weight: 600; margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-value a { color: var(--gold); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.map-embed {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px;
  z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.3s;
  animation: wabounce 2s ease-in-out 3s 2;
}
[dir="rtl"] .whatsapp-float { left: 24px; }
[dir="ltr"] .whatsapp-float { right: 24px; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wabounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== HOTLINE BANNER ===== */
.hotline-banner {
  background: linear-gradient(135deg, #1a1000 0%, #2a1800 100%);
  border: 1px solid rgba(221,167,78,0.25);
  border-radius: 18px; padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 40px;
}
[data-theme="light"] .hotline-banner {
  background: linear-gradient(135deg, #fff8ee 0%, #fef0d4 100%);
}
.hotline-icon {
  font-size: 36px;
}
.hotline-num {
  font-size: 32px; font-weight: 900; color: var(--gold);
  letter-spacing: 2px;
}
.hotline-sub { font-size: 13px; color: var(--text2); margin-top: 2px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(221,167,78,0.12);
  padding: 48px 24px 28px;
}
[data-theme="light"] footer { background: #1a1308; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 36px;
}
.footer-brand-name {
  font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #888; text-decoration: none; font-size: 16px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-title { font-size: 14px; font-weight: 700; color: #ccc; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #888; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: #555; }
.footer-copy span { color: var(--gold); }

/* ===== INQUIRY FORM ===== */
.inquiry-section {
  background: linear-gradient(135deg, rgba(221,167,78,0.08), rgba(221,167,78,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 36px;
}
.inquiry-section .footer-title {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.inquiry-form input,
.inquiry-form textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  transition: all 0.2s;
  outline: none;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(221,167,78,0.1);
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--text-muted);
}
.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}
.inquiry-form .btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(221,167,78,0.3);
}
.inquiry-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221,167,78,0.4);
}
.inquiry-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 16px;
  color: #22c55e;
  text-align: center;
  font-weight: 600;
}
.inquiry-success.show { display: block; }

/* ===== VIDEOS SECTION ===== */
#videos {
  background: var(--bg2);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
#videos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.videos-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.videos-header {
  text-align: center;
  margin-bottom: 60px;
}
.videos-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,167,78,0.12);
  border: 1px solid rgba(221,167,78,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.videos-badge i {
  font-size: 16px;
}
.videos-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.videos-title .gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.videos-subtitle {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Video Filter */
.vid-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.vid-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  transition: all 0.3s;
}
.vid-filter-btn:hover,
.vid-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(221,167,78,0.3);
  transform: translateY(-2px);
}

/* Video Grid */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.vid-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(221,167,78,0.15), 0 0 0 1px rgba(221,167,78,0.1);
}
.vid-card.hidden {
  display: none;
}

/* Video Thumbnail */
.vid-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vid-card:hover .vid-thumb img {
  transform: scale(1.08);
}
.vid-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  transition: opacity 0.3s;
}
.vid-card:hover .vid-thumb::after {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}

/* Play Button Overlay */
.vid-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vid-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(221,167,78,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.vid-play-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(221,167,78,0.3);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}
.vid-play-btn i {
  font-size: 28px;
  color: #fff;
  margin-left: 4px;
}
.vid-card:hover .vid-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(221,167,78,0.5);
}
.vid-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}
[dir="rtl"] .vid-duration { right: auto; left: 12px; }

/* Video Info */
.vid-info {
  padding: 22px;
}
.vid-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
}
.vid-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.vid-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.vid-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vid-meta i {
  color: var(--gold);
  font-size: 13px;
}

/* Video Category Tag */
.vid-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(221,167,78,0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
[dir="rtl"] .vid-cat-tag { left: auto; right: 12px; }

/* ===== VIDEO LIGHTBOX MODAL ===== */
.vid-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vid-modal.active {
  display: flex;
  opacity: 1;
}
.vid-modal-inner {
  width: 100%;
  max-width: 900px;
  background: var(--bg2);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.vid-modal.active .vid-modal-inner {
  transform: scale(1);
}
.vid-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.vid-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.vid-modal-title {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.vid-modal-body {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}
.vid-modal-body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.vid-modal-error {
  display: none;
  padding: 40px;
  text-align: center;
}
.vid-modal-error.show {
  display: block;
}
.vid-modal-error-icon {
  font-size: 48px;
  color: #ef4444;
  margin-bottom: 16px;
}
.vid-modal-error p {
  color: var(--text2);
  margin-bottom: 20px;
  font-size: 15px;
}
.vid-modal-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.vid-modal-watch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221,167,78,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-desc { max-width: 100%; }
  .vid-grid { grid-template-columns: 1fr; }
  .inquiry-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 16px; }
  .hotline-banner { flex-direction: column; text-align: center; }
  .about-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .vid-filter-row { gap: 8px; }
  .vid-filter-btn { padding: 8px 16px; font-size: 12px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ===== PRODUCT PLACEHOLDER IMAGES ===== */
.prod-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
}

/* Light theme adjustments for logo */
[data-theme="light"] .logo-display {
  background: linear-gradient(135deg, #f8f4ef 0%, #ffffff 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 0 0 1px rgba(221,167,78,0.15);
}
[data-theme="light"] .hero-logo-img {
  filter: drop-shadow(0 4px 20px rgba(221,167,78,0.2));
}

/* Bootstrap Icons fallback */
.bi { display: inline-block; font-style: normal; }
.bi-play-circle-fill::before { content: "▶"; }
.bi-play-fill::before { content: "▶"; }
.bi-eye::before { content: "👁"; }
.bi-clock::before { content: "⏱"; }
.bi-x-lg::before { content: "✕"; }
.bi-youtube::before { content: "▶"; }


/* ===== LOCATIONS / BRANCHES SECTION ===== */
.locations {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(221,167,78,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.locations::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,139,200,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* Factory Illustration */
.factory-illustration {
  position: relative;
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: center;
}
.factory-svg {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* Zones Ribbon */
.zones-ribbon {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 40px auto;
  max-width: 950px;
  position: relative;
  perspective: 1000px;
}
.zone-ribbon-item {
  flex: 1;
  padding: 28px 12px;
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  margin: 0 -4px;
}
.zone-ribbon-item:hover {
  transform: translateY(-12px) scale(1.04);
  z-index: 10;
  filter: brightness(1.08);
}
.zone-ribbon-item.zone-gold {
  background: linear-gradient(180deg, #C49A3C, #D4AA4C);
}
.zone-ribbon-item.zone-gray {
  background: linear-gradient(180deg, #8B8B8B, #9B9B9B);
}
.zone-ribbon-item.zone-orange {
  background: linear-gradient(180deg, #F5A623, #FFB733);
}
.zone-ribbon-item.zone-teal {
  background: linear-gradient(180deg, #2EB5A5, #3EC5B5);
}
.zone-ribbon-item.zone-blue {
  background: linear-gradient(180deg, #1A8BC8, #2A9BD8);
}
.zone-ribbon-icon {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.9;
}
.zone-ribbon-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.zone-ribbon-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Locations Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: height 0.4s;
}
.location-card:hover::before {
  height: 100%;
  opacity: 0.04;
}
.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.location-card:nth-child(1)::before { background: #C49A3C; }
.location-card:nth-child(2)::before { background: #8B8B8B; }
.location-card:nth-child(3)::before { background: #F5A623; }
.location-card:nth-child(4)::before { background: #2EB5A5; }
.location-card:nth-child(5)::before { background: #1A8BC8; }
.location-card:nth-child(1):hover { border-color: rgba(196,154,60,0.4); }
.location-card:nth-child(2):hover { border-color: rgba(139,139,139,0.4); }
.location-card:nth-child(3):hover { border-color: rgba(245,166,35,0.4); }
.location-card:nth-child(4):hover { border-color: rgba(46,181,165,0.4); }
.location-card:nth-child(5):hover { border-color: rgba(26,139,200,0.4); }

.loc-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--text);
}
[dir="rtl"] .loc-number { left: auto; right: 12px; }

.loc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.loc-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.25;
  animation: locSpin 20s linear infinite;
}
@keyframes locSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.loc-gold { background: linear-gradient(135deg, #C49A3C, #E8C96A); }
.loc-gold::after { border-color: #C49A3C; }
.loc-gray { background: linear-gradient(135deg, #8B8B8B, #aaa); }
.loc-gray::after { border-color: #8B8B8B; }
.loc-orange { background: linear-gradient(135deg, #F5A623, #FFB84D); }
.loc-orange::after { border-color: #F5A623; }
.loc-teal { background: linear-gradient(135deg, #2EB5A5, #4DD4C5); }
.loc-teal::after { border-color: #2EB5A5; }
.loc-blue { background: linear-gradient(135deg, #1A8BC8, #4BB4E6); }
.loc-blue::after { border-color: #1A8BC8; }

.location-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.loc-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.loc-city {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.loc-city i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Connecting line between cards */
.locations-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #C49A3C, #8B8B8B, #F5A623, #2EB5A5, #1A8BC8);
  opacity: 0.15;
  z-index: -1;
}

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

/* Responsive locations */
@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .locations-grid::before {
    display: none;
  }
  .zones-ribbon {
    flex-wrap: wrap;
    gap: 8px;
  }
  .zone-ribbon-item {
    flex: 1 1 30%;
    clip-path: none;
    border-radius: 14px;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .zones-ribbon {
    flex-direction: column;
  }
  .zone-ribbon-item {
    flex: 1;
  }
  .factory-svg {
    max-width: 300px;
  }
}


/* ── Products section fix (moved from index.html) ── */
    /* ── Grid ── */
    #productsGrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
      margin-top: 32px;
    }
    @media (min-width: 1400px) {
      #productsGrid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      }
    }
    @media (max-width: 768px) {
      #productsGrid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
      }
    }
    @media (max-width: 480px) {
      #productsGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
      }
    }

    /* ── Card ── */
    .product-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      background: var(--card-bg);
      box-shadow: var(--shadow);
      aspect-ratio: 1 / 1;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
      border: 1px solid transparent;
    }
    .product-card:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 32px rgba(196,154,60,0.2);
      border-color: rgba(196,154,60,0.3);
      z-index: 2;
    }

    /* ── Image fills the card ── */
    .product-card .product-img-only {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-img-only {
      transform: scale(1.08);
    }

    /* ── Lightbox ── */
    .product-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.92);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .product-lightbox.active { display: flex; }

    .product-lightbox img {
      max-width: min(90vw, 900px);
      max-height: 85vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 8px 60px rgba(0,0,0,0.8);
    }
    .lightbox-close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: rgba(255,255,255,0.12);
      border: none;
      color: #fff;
      font-size: 28px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ── App Section CSS (moved from index.html) ── */
    /* ── App Section ── */
    .app-section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }
    .app-section-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(196,154,60,0.12) 0%, transparent 65%),
                  radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.07) 0%, transparent 50%);
      pointer-events: none;
    }
    .app-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }
    @media (max-width: 768px) {
      .app-grid { grid-template-columns: 1fr; text-align: center; }
      .app-visual { order: -1; }
      .app-stats  { justify-content: center; }
    }

    /* Content */
    .app-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      line-height: 1.25;
      margin: 10px 0 18px;
      color: var(--text, #fff);
    }
    .app-desc {
      color: var(--text2, #aaa);
      font-size: 15px;
      line-height: 1.85;
      max-width: 480px;
      margin-bottom: 32px;
    }

    /* Stats */
    .app-stats {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 36px;
    }
    .app-stat-num {
      font-size: 22px;
      font-weight: 800;
      color: #C49A3C;
    }
    .app-stat-label {
      font-size: 12px;
      color: var(--text2, #aaa);
      margin-top: 2px;
    }
    .app-stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(196,154,60,0.3);
    }

    /* Download button */
    .app-download-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: #000;
      border: 2px solid #C49A3C;
      border-radius: 16px;
      padding: 14px 28px;
      text-decoration: none;
      color: #fff;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .app-download-btn:hover {
      background: #C49A3C;
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(196,154,60,0.4);
    }
    .app-download-btn:hover .app-store-icon { fill: #000; }
    .app-store-icon {
      width: 28px;
      height: 28px;
      fill: #C49A3C;
      flex-shrink: 0;
      transition: fill 0.25s;
    }
    .app-btn-sub  { font-size: 11px; opacity: 0.75; }
    .app-btn-main { font-size: 20px; font-weight: 800; line-height: 1.1; }

    /* Phone mockup */
    .app-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .app-phone-wrap {
      position: relative;
      display: inline-block;
    }
    .app-phone {
      position: relative;
      width: 220px;
      height: 440px;
      background: #111;
      border-radius: 36px;
      border: 3px solid #C49A3C;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 0 2px #222;
      overflow: hidden;
      z-index: 2;
    }
    .app-phone-notch {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 12px;
      background: #000;
      border-radius: 8px;
      z-index: 3;
    }
    .app-phone-screen {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .app-phone-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Glow rings */
    .app-glow-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(196,154,60,0.2);
      z-index: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: ringPulse 3s ease-in-out infinite;
    }
    .ring1 { width: 300px; height: 300px; animation-delay: 0s; }
    .ring2 { width: 420px; height: 420px; animation-delay: 1s; }
    @keyframes ringPulse {
      0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1);   }
      50%      { opacity: 0.1; transform: translate(-50%,-50%) scale(1.05); }
    }

/* ── Extracted inline styles (moved from index.html) ── */
.nav-logo-img {
  border-radius: 8px;
  object-fit: contain;
}
.nav-app-link {
  color: #C49A3C;
}
.about-text-lead {
  color: var(--text2);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 20px;
}
.about-text {
  color: var(--text2);
  line-height: 1.85;
  font-size: 15px;
}
.about-card--spaced {
  margin-top: 16px;
}
.about-number--faint {
  opacity: 0.07;
}
.vision-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.vision-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.vision-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.hotline-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 12px;
}
.whatsapp-icon-lg {
  font-size: 28px;
  color: #25d366;
}
.whatsapp-icon-sm {
  font-size: 22px;
  color: #25d366;
}
.facebook-icon-sm {
  font-size: 22px;
  color: #1877f2;
}
.hotline-num--sm {
  font-size: 22px;
}
.hotline-link {
  color: var(--gold);
  text-decoration: none;
}
.mt-16 {
  margin-top: 16px;
}
.btn-block-center {
  width: 100%;
  justify-content: center;
  display: flex;
}
.icon-gold {
  color: var(--gold);
}


/* ════════════════════════════════════════════
   TRUST BAR STYLES (moved from index.html)
   ════════════════════════════════════════════ */

.trust-bar {
      padding: 24px 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s, border-color 0.3s;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .trust-badge-item {
      flex: 0 0 auto;
      max-width: 140px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    }
    .trust-badge-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(196,154,60,0.15);
      border-color: rgba(196,154,60,0.4);
    }
    .trust-badge-item img {
      width: 100%;
      height: auto;
      display: block;
    }
    .trust-badge-item--center {
      max-width: 160px;
    }
    .trust-certs {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      min-width: 220px;
    }
    .trust-certs-title {
      font-family: 'Cairo', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.5px;
    }
    .trust-certs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .cert-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text2);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      white-space: nowrap;
      transition: all 0.25s ease;
    }
    .cert-pill i {
      color: var(--gold);
      font-size: 0.85rem;
    }
    .cert-pill:hover {
      background: rgba(196,154,60,0.15);
      border-color: var(--gold);
      color: var(--text);
    }
    .trust-warranty {
      font-family: 'Cairo', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      background: var(--bg3);
      padding: 6px 16px;
      border-radius: 8px;
      border-left: 3px solid var(--gold);
      margin-top: 4px;
      transition: color 0.3s, background 0.3s, border-color 0.3s;
    }
    [dir="rtl"] .trust-warranty {
      border-left: none;
      border-right: 3px solid var(--gold);
    }
    @media (max-width: 768px) {
      .trust-bar-inner {
        gap: 20px;
      }
      .trust-badge-item {
        max-width: 110px;
      }
      .trust-badge-item--center {
        max-width: 130px;
      }
      .trust-certs {
        align-items: center;
        text-align: center;
        min-width: unset;
        width: 100%;
      }
      .trust-certs-list {
        justify-content: center;
      }
      .trust-warranty {
        border-left: none;
        border-right: none;
        border-top: 3px solid var(--gold);
      }
    }


/* ════════════════════════════════════════════
   PREVIOUS WORK / PORTFOLIO SLIDER
   ════════════════════════════════════════════ */

.works {
  background: var(--bg);
  padding: 80px 24px;
  overflow: hidden;
}

/* Slider Container */
.works-slider-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0 56px;
}
@media (max-width: 768px) {
  .works-slider-wrapper {
    padding: 0 44px;
  }
}

/* Slider Track */
.works-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 4px 20px;
}
.works-slider::-webkit-scrollbar {
  display: none;
}

/* Individual Slide - portrait for tall images */
.works-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
}
.works-slide:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(196,154,60,0.15);
  border-color: rgba(196,154,60,0.4);
  z-index: 2;
}
.works-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}
.works-slide:hover img {
  transform: scale(1.05);
}

/* Navigation Buttons */
.works-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}
.works-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.works-nav-prev {
  right: 0;
}
.works-nav-next {
  left: 0;
}
[dir="ltr"] .works-nav-prev { right: auto; left: 0; }
[dir="ltr"] .works-nav-next { left: auto; right: 0; }

@media (max-width: 768px) {
  .works-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .works-slide {
    width: 220px;
    height: 330px;
  }
}
@media (max-width: 480px) {
  .works-slide {
    width: 180px;
    height: 270px;
  }
}

/* ════════════════════════════════════════════
   UPLOADED IMAGES GALLERY
   ════════════════════════════════════════════ */

.uploaded-gallery {
  background: var(--bg2);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.uploaded-gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.uploaded-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.uploaded-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.uploaded-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(221,167,78,0.15), 0 0 0 1px rgba(221,167,78,0.1);
  border-color: rgba(221,167,78,0.3);
  z-index: 2;
}

/* Image wrap */
.uploaded-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.uploaded-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.uploaded-card:hover .uploaded-img-wrap img {
  transform: scale(1.08);
}

/* Overlay with zoom icon */
.uploaded-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.uploaded-card:hover .uploaded-overlay {
  opacity: 1;
}
.uploaded-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(221,167,78,0.4);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.uploaded-card:hover .uploaded-zoom {
  transform: translateY(0);
}

/* Info section */
.uploaded-info {
  padding: 18px 16px;
  text-align: center;
}
.uploaded-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.uploaded-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .uploaded-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .uploaded-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .uploaded-img-wrap {
    aspect-ratio: 16 / 10;
  }
}