/* ── Vazirmatn Self-hosted ───────────────────────────────────────────── */
@font-face { font-family: Vazirmatn; src: url('/assets/fonts/Vazirmatn-300.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: Vazirmatn; src: url('/assets/fonts/Vazirmatn-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: Vazirmatn; src: url('/assets/fonts/Vazirmatn-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: Vazirmatn; src: url('/assets/fonts/Vazirmatn-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: Vazirmatn; src: url('/assets/fonts/Vazirmatn-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --emerald:     #006b4f;
  --emerald-dk:  #004d39;
  --emerald-lt:  #008f68;
  --gold:        #FFD700;
  --gold-lt:     #FFE66D;
  --off-white:   #0F2A52;
  --white:       #0A1F3F;
  --body:        #FFD700;
  --muted:       rgba(255,215,0,.76);
  --border:      rgba(255,215,0,.24);
  --footer-bg:   #061730;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.22);
  --shadow-md:  0 8px 28px rgba(0,0,0,.28);
  --shadow-lg:  0 16px 52px rgba(0,0,0,.36);
  --shadow-em:  0 8px 30px rgba(255,215,0,.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --transition: .25s ease;
  --font: 'Vazirmatn', Tahoma, sans-serif;

  --section-pad: clamp(60px, 8vw, 100px);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--body);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: var(--font);
  font-size: inherit;
}
svg { flex-shrink: 0; }

/* ── Typography scale ───────────────────────────────────────────────── */
.t-hero    { font-size: clamp(28px, 5vw, 52px); font-weight: 700; line-height: 1.25; }
.t-h1      { font-size: clamp(22px, 3.5vw, 36px); font-weight: 700; line-height: 1.3; }
.t-h2      { font-size: clamp(20px, 2.8vw, 30px); font-weight: 700; line-height: 1.35; }
.t-h3      { font-size: clamp(17px, 2vw, 22px); font-weight: 600; line-height: 1.4; }
.t-sub     { font-size: clamp(14px, 1.6vw, 17px); font-weight: 400; }
.t-small   { font-size: 13px; }
.t-label   { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Container ──────────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1220px; margin: 0 auto; }

/* ── Utility ────────────────────────────────────────────────────────── */
.text-emerald { color: var(--emerald); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-white   { color: var(--white); }
.fw-700       { font-weight: 700; }
.fw-600       { font-weight: 600; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mt-2  { margin-top: 16px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ── Section heading ────────────────────────────────────────────────── */
.section-title { margin-bottom: 48px; }
.section-title .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--emerald); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; margin-bottom: 12px;
}
.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold);
}
.section-title h2 { color: var(--body); }
.section-title p  { color: var(--muted); margin-top: 12px; max-width: 600px; }
.section-title.center { text-align: center; }
.section-title.center p { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald); color: var(--white);
  box-shadow: var(--shadow-em);
}
.btn-primary:hover { background: var(--emerald-lt); box-shadow: 0 10px 36px rgba(0,107,79,.28); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--emerald-dk);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,.35); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--emerald-dk); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--emerald);
  border-color: var(--emerald); padding: 9px 22px; font-size: 14px;
}
.btn-ghost:hover { background: var(--emerald); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ── ─────────────────────────────────────────────────────────────────── */
/* NAV */
/* ── ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 0 0;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(0,58,43,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700;
  font-size: 20px;
}
.nav-logo .logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--emerald-dk); font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.nav-logo .logo-img {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.85); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none; padding: 6px;
  color: var(--white); cursor: pointer;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,58,43,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 22px; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-md);
  transition: background .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-close {
  position: absolute; top: 20px; left: 20px;
  background: none; border: none; color: var(--white); cursor: pointer;
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/img/hero.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(170deg, rgba(0,40,30,.72) 0%, rgba(0,20,14,.58) 60%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; max-width: 860px;
}
.hero-content .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.18); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); padding: 6px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
  margin-bottom: 20px;
}
.hero-content .sub {
  color: rgba(255,255,255,.85); font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); font-size: 12px;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: rgba(255,255,255,.5); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS STRIP ─────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--emerald-dk); padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-left: none; }
.stat-num {
  font-size: clamp(34px, 5vw, 54px); font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 8px; display: block;
}
.stat-label { color: rgba(255,255,255,.75); font-size: 14px; }

/* ── SERVICES ────────────────────────────────────────────────────────── */
.services-section { padding: var(--section-pad) 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 20px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 22px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .svc-icon { background: var(--emerald); color: var(--gold); }
.svc-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0,107,79,.08); color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: var(--transition);
}
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--body); }
.service-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FEATURED PROPERTIES ─────────────────────────────────────────────── */
.properties-section { padding: var(--section-pad) 0; background: var(--off-white); }
.props-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.prop-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prop-img-wrap {
  position: relative; height: 230px; overflow: hidden;
}
.prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--emerald-dk);
  padding: 4px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
}
.prop-body { padding: 22px 20px 24px; }
.prop-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.prop-price { color: var(--emerald); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.prop-specs { display: flex; gap: 16px; color: var(--muted); font-size: 13px; margin-bottom: 16px; align-items: center; }
.prop-specs span { display: flex; align-items: center; gap: 4px; }

/* ── PORTFOLIO ───────────────────────────────────────────────────────── */
.portfolio-section {
  padding: var(--section-pad) 0;
  background: var(--emerald-dk);
}
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.portfolio-header h2 { color: var(--white); }
.portfolio-scroll {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  overflow-x: auto; padding-bottom: 8px;
}
.portfolio-scroll::-webkit-scrollbar { height: 4px; }
.portfolio-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.portfolio-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.port-card {
  border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0;
  border: 2px solid transparent; transition: border-color var(--transition);
  cursor: pointer;
}
.port-card:hover { border-color: var(--gold); }
.port-card img { width: 100%; height: 200px; object-fit: cover; }
.port-info { padding: 14px 16px; background: rgba(255,255,255,.06); }
.port-info h4 { color: var(--white); font-size: 14px; font-weight: 600; }
.port-info p  { color: rgba(255,255,255,.55); font-size: 12px; margin-top: 4px; }

/* ── BLOG ────────────────────────────────────────────────────────────── */
.blog-section { padding: var(--section-pad) 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img { height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-date {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,.12); color: var(--gold);
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.blog-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.blog-excerpt { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.blog-more {
  color: var(--emerald); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.blog-more:hover { gap: 10px; }

/* ── CTA BAND ────────────────────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: url('/assets/img/cta_bg.webp') center/cover no-repeat;
  position: relative;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,50,36,.78);
}
.cta-content {
  position: relative; text-align: center;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p  { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 16px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT STRIP ─────────────────────────────────────────────────────── */
.about-strip { padding: var(--section-pad) 0; background: var(--off-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-text .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--emerald); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; margin-bottom: 14px;
}
.about-text .eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--gold); }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.feat-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,107,79,.1); color: var(--emerald);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feat-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feat-text span   { font-size: 13px; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer { background: var(--footer-bg); padding: 72px 0 32px; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-mark { background: var(--gold); color: var(--emerald-dk); }
.footer-brand .logo-img { width: 40px; height: 40px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.footer-social-link:hover { background: var(--gold); color: var(--emerald-dk); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact-item svg { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom .phone-num { direction: ltr; unicode-bidi: embed; }

/* ── FORMS ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--font); font-size: 14px; color: var(--body);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
.form-control:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,107,79,.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ALERT ───────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: rgba(0,107,79,.08); border: 1px solid rgba(0,107,79,.25); color: var(--emerald); }
.alert-error   { background: rgba(200,0,0,.06); border: 1px solid rgba(200,0,0,.2); color: #b00020; }

/* ── HERO SECTION SCROLL REVEAL ──────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left  { opacity: 0; transform: translateX(28px); transition: opacity .55s ease, transform .55s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--emerald-dk) 0%, var(--emerald) 100%);
  padding: 120px 0 60px; text-align: center; color: var(--white);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── CARD GENERIC ────────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* ── ADMIN ───────────────────────────────────────────────────────────── */
.admin-wrap { min-height: 100vh; background: #f4f5f7; direction: rtl; }
.admin-sidebar {
  position: fixed; top: 0; right: 0; width: 240px; height: 100vh;
  background: var(--emerald-dk); padding: 0 0 24px; z-index: 100;
  display: flex; flex-direction: column; overflow-y: auto;
}
.admin-logo {
  padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 12px;
}
.admin-logo .logo-mark { background: var(--gold); color: var(--emerald-dk); width: 36px; height: 36px; border-radius: 8px; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; }
.admin-logo .logo-img { width: 36px; height: 36px; border-radius: 8px; display:block; flex-shrink:0; }
.admin-logo .brand { color: var(--white); font-weight: 700; font-size: 16px; }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.7); padding: 10px 14px; border-radius: 8px;
  font-size: 14px; margin-bottom: 3px; transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.12); color: var(--white); }
.admin-nav a.active { color: var(--gold); }
.admin-main { margin-right: 240px; padding: 0; }
.admin-topbar {
  background: var(--white); padding: 0 28px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h1 { font-size: 18px; font-weight: 700; color: var(--body); }
.admin-topbar .logout-btn { display:flex; align-items:center; gap:6px; color:var(--muted); font-size:14px; }
.admin-content { padding: 28px; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 22px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.stat-card-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: rgba(0,107,79,.1); color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
}
.stat-card-num { font-size: 26px; font-weight: 700; color: var(--body); line-height: 1; }
.stat-card-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.admin-table-wrap { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.admin-table-header { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.admin-table-header h3 { font-size: 15px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 18px; text-align: right; font-size: 13px; }
th { background: var(--off-white); font-weight: 600; color: var(--body); border-bottom: 1px solid var(--border); }
td { border-bottom: 1px solid rgba(0,0,0,.05); color: var(--muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,107,79,.03); }
.badge-cat {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  background: rgba(0,107,79,.1); color: var(--emerald);
}
.table-actions { display: flex; gap: 6px; }
.action-btn {
  width: 30px; height: 30px; border-radius: 6px; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.action-edit { background: rgba(0,107,79,.1); color: var(--emerald); }
.action-edit:hover { background: var(--emerald); color: var(--white); }
.action-del { background: rgba(180,0,0,.07); color: #b00020; }
.action-del:hover { background: #b00020; color: var(--white); }
.admin-form-wrap { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-section-title { font-size: 15px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.img-preview-wrap { margin-top: 10px; }
.img-preview { max-width: 180px; max-height: 140px; border-radius: var(--radius-sm); border: 1px solid var(--border); object-fit: cover; }
.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald-dk) 0%, #002b20 100%);
  direction: rtl;
}
.admin-login-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.admin-login-box .login-logo { text-align: center; margin-bottom: 28px; }
.admin-login-box .login-logo .logo-mark { width: 56px; height: 56px; border-radius: 14px; background: var(--emerald); color: var(--gold); display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:700; margin: 0 auto 12px; }
.admin-login-box h1 { font-size: 22px; text-align: center; font-weight: 700; margin-bottom: 6px; }
.admin-login-box .sub { text-align:center; color:var(--muted); font-size:14px; margin-bottom:28px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .portfolio-scroll { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-inner .about-img { order: -1; }
  .props-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid  { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-scroll { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px 0; }
  .stat-item { padding: 16px; }
  .stat-item:nth-child(2) { border-left: none; }
  .admin-sidebar { display: none; }
  .admin-main { margin-right: 0; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .props-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-scroll { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .admin-stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 390px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-scroll { grid-template-columns: 1fr; }
  :root { --section-pad: 48px; }
}

/* ── NAV CART + ACCOUNT ICONS ─────────────────────────────────────────────── */
.nav-cart, .nav-account {
  position: relative; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: background var(--transition), color var(--transition);
}
.nav-cart:hover, .nav-account:hover { background: rgba(255,255,255,.1); color: var(--white); }
.cart-badge {
  position: absolute; top: 3px; left: 3px;
  background: var(--gold); color: var(--emerald-dk);
  font-size: 11px; font-weight: 700; line-height: 1;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* ── SHOP ─────────────────────────────────────────────────────────────────── */
.shop-section { padding: var(--section-pad) 0; }
.shop-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--body); font-family: var(--font); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.filter-btn:hover { border-color: var(--emerald); color: var(--emerald); }
.filter-btn.active { background: var(--emerald); border-color: var(--emerald); color: var(--white); }
.shop-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.shop-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shop-card.hidden { display: none; }
.shop-card-img { height: 220px; overflow: hidden; position: relative; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.shop-card:hover .shop-card-img img { transform: scale(1.05); }
.shop-card-cat {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,107,79,.85); color: var(--white);
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; backdrop-filter: blur(6px);
}
.shop-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.shop-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.shop-card-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.shop-card-price { color: var(--emerald); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.shop-card-footer { display: flex; gap: 8px; }

/* ── PRODUCT DETAIL ───────────────────────────────────────────────────────── */
.product-section { padding: var(--section-pad) 0; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.product-gallery-wrap { position: sticky; top: 88px; }
.product-main-img {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
}
.product-main-img img { width: 100%; height: 380px; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb {
  width: 72px; height: 56px; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-cat {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--emerald); font-weight: 600; font-size: 13px;
  letter-spacing: .05em; margin-bottom: 12px;
}
.product-cat::before { content:''; display:block; width:24px; height:2px; background:var(--gold); }
.product-title { font-size: clamp(20px,3vw,28px); font-weight: 700; margin-bottom: 16px; }
.product-base-price { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.product-base-price strong { color: var(--emerald); font-size: 18px; }
.product-desc { color: var(--muted); line-height: 1.85; margin-bottom: 28px; font-size: 15px; }
.pkg-selector { margin-bottom: 24px; }
.pkg-selector label { display:block; font-size:14px; font-weight:700; margin-bottom:12px; }
.pkg-options { display: flex; flex-direction: column; gap: 10px; }
.pkg-option {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  cursor: pointer; transition: var(--transition);
}
.pkg-option:hover { border-color: var(--emerald); }
.pkg-option input[type=radio] { accent-color: var(--emerald); width: 18px; height: 18px; flex-shrink: 0; }
.pkg-option.selected { border-color: var(--emerald); background: rgba(0,107,79,.04); }
.pkg-option-name { font-weight: 700; font-size: 14px; flex: 1; }
.pkg-option-price { color: var(--emerald); font-weight: 700; font-size: 15px; }
.qty-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
.qty-wrap label { font-size:14px; font-weight:700; margin-left:16px; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
  width: 40px; height: 40px; border: none; background: var(--off-white);
  color: var(--body); cursor: pointer; font-size: 18px; font-family: var(--font);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--emerald); color: var(--white); }
.qty-input {
  width: 56px; height: 40px; border: none; border-right: 1.5px solid var(--border);
  border-left: 1.5px solid var(--border); text-align: center;
  font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--body);
}
.qty-input:focus { outline: none; }
.product-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.product-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.product-feat svg { color: var(--emerald); flex-shrink: 0; }

/* ── CART ─────────────────────────────────────────────────────────────────── */
.cart-section { padding: var(--section-pad) 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: flex-start; }
.cart-items-wrap { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-table-head {
  display: grid; grid-template-columns: 1fr 160px 120px 80px 48px;
  gap: 12px; padding: 14px 20px; background: var(--off-white);
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.cart-row {
  display: grid; grid-template-columns: 1fr 160px 120px 80px 48px;
  gap: 12px; padding: 16px 20px; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.cart-row:last-child { border-bottom: none; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-thumb { width: 60px; height: 50px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.cart-item-pkg { font-size: 12px; color: var(--muted); }
.cart-item-price { font-size: 14px; color: var(--emerald); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; }
.cart-item-qty input[type=number] {
  width: 56px; padding: 6px; text-align: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px;
}
.cart-item-total { font-size: 14px; font-weight: 700; }
.cart-remove-btn {
  width: 32px; height: 32px; border: none; background: rgba(180,0,0,.08); color: #b00020;
  border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-remove-btn:hover { background: #b00020; color: var(--white); }
.cart-empty { padding: 60px 20px; text-align: center; color: var(--muted); }
.cart-empty svg { color: var(--border); margin: 0 auto 16px; display: block; }
.cart-summary {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 28px; position: sticky; top: 88px;
}
.cart-summary h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cart-summary-line { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 12px; }
.cart-summary-line.total { font-size: 17px; font-weight: 700; color: var(--emerald); padding-top: 14px; border-top: 1.5px solid var(--border); margin-top: 12px; }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 18px; }
.cart-coupon { margin-top: 16px; display: flex; gap: 8px; }
.cart-coupon input { flex: 1; }

/* ── CHECKOUT ─────────────────────────────────────────────────────────────── */
.checkout-section { padding: var(--section-pad) 0; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: flex-start; }
.checkout-form-wrap { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 32px; }
.checkout-order-summary { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 24px; position: sticky; top: 88px; }
.checkout-order-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.order-item-row { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.order-item-row:last-of-type { border-bottom: none; }
.order-item-thumb { width: 50px; height: 42px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-item-meta { flex: 1; }
.order-item-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.order-item-detail { font-size: 12px; color: var(--muted); }
.order-item-price { font-size: 13px; font-weight: 700; color: var(--emerald); white-space: nowrap; }
.order-total-row { display: flex; justify-content: space-between; padding-top: 14px; margin-top: 10px; border-top: 1.5px solid var(--border); font-weight: 700; font-size: 16px; color: var(--emerald); }

/* ── ORDER CONFIRM ────────────────────────────────────────────────────────── */
.confirm-wrap { padding: 80px 0; text-align: center; }
.confirm-icon {
  width: 90px; height: 90px; border-radius: 50%; background: rgba(0,107,79,.1);
  color: var(--emerald); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.confirm-wrap h1 { margin-bottom: 14px; }
.confirm-wrap p { color: var(--muted); max-width: 500px; margin: 0 auto 28px; font-size: 15px; }
.confirm-order-id { display: inline-block; background: rgba(0,107,79,.07); color: var(--emerald); border-radius: var(--radius-pill); padding: 6px 22px; font-size: 14px; font-weight: 700; margin-bottom: 28px; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── AUTH PAGES ───────────────────────────────────────────────────────────── */
.auth-section {
  min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center;
  padding: 100px 20px 60px; background: var(--off-white);
}
.auth-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px;
  width: 100%; max-width: 460px; box-shadow: 0 16px 52px rgba(0,0,0,.1);
  border: 1px solid var(--border);
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
}
.auth-logo .logo-mark {
  width: 54px; height: 54px; border-radius: 14px; background: var(--emerald); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700;
  margin: 0 auto 10px;
}
.auth-logo .logo-img,
.admin-login-box .login-logo .logo-img {
  width: 54px; height: 54px; border-radius: 14px; display: block; margin: 0 auto 10px;
}
.admin-login-box .login-logo .logo-img { width: 56px; height: 56px; }
.auth-logo h1 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.auth-logo p { color: var(--muted); font-size: 14px; }
.auth-sep { text-align: center; color: var(--muted); font-size: 13px; margin: 18px 0; position: relative; }
.auth-sep::before, .auth-sep::after { content:''; position:absolute; top:50%; width:38%; height:1px; background:var(--border); }
.auth-sep::before { right: 0; }
.auth-sep::after  { left: 0; }
.auth-footer { text-align: center; font-size: 14px; color: var(--muted); margin-top: 22px; }
.auth-footer a { color: var(--emerald); font-weight: 600; }

/* ── ACCOUNT ──────────────────────────────────────────────────────────────── */
.account-section { padding: 100px 0 var(--section-pad); }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: flex-start; }
.account-sidebar {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 24px; position: sticky; top: 88px;
}
.account-avatar {
  text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.account-avatar .av { width: 70px; height: 70px; border-radius: 50%; background: rgba(0,107,79,.1); color: var(--emerald); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.account-avatar .av-name { font-weight: 700; font-size: 15px; }
.account-avatar .av-email { font-size: 12px; color: var(--muted); }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 8px; font-size: 14px; color: var(--muted);
  transition: var(--transition);
}
.account-nav a:hover, .account-nav a.active { background: rgba(0,107,79,.07); color: var(--emerald); font-weight: 600; }
.account-nav a svg { flex-shrink: 0; }
.account-main { }
.account-panel { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 28px; margin-bottom: 20px; }
.account-panel-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.account-panel-title svg { color: var(--emerald); }
.order-status {
  display: inline-block; padding: 3px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
}
.status-pending    { background: rgba(212,175,55,.12); color: #8a6800; }
.status-processing { background: rgba(0,107,79,.10); color: var(--emerald); }
.status-done       { background: rgba(0,150,50,.1); color: #006820; }
.status-cancelled  { background: rgba(180,0,0,.07); color: #b00020; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); }
.empty-state svg { color: var(--border); margin: 0 auto 12px; display: block; }

/* ── RESPONSIVE additions ─────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
}
@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery-wrap { position: static; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr auto; gap: 8px; }
  .cart-item-price, .cart-item-qty, .cart-item-total { display: none; }
}
@media (max-width: 540px) {
  .shop-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 28px 20px; }
  .checkout-form-wrap { padding: 20px; }
}

/* ── Luxury navy/gold theme override ─────────────────────────────────────── */
body,
.services-section,
.properties-section,
.blog-section,
.about-strip,
.shop-section,
.product-section,
.cart-section,
.checkout-section,
.account-section,
.auth-section,
.admin-wrap,
.admin-content {
  background: #0A1F3F;
  color: var(--gold);
}

.navbar.scrolled,
.mobile-menu,
.stats-strip,
.portfolio-section,
.page-hero,
.admin-sidebar,
.admin-login-wrap {
  background: #061730;
}

.hero-overlay {
  background: linear-gradient(170deg, rgba(10,31,63,.84) 0%, rgba(6,23,48,.72) 62%, rgba(3,12,27,.62) 100%);
}

.cta-band::before {
  background: rgba(10,31,63,.82);
}

body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label, small,
th, td, strong,
.section-title h2,
.service-card h3,
.prop-title,
.blog-title,
.shop-card-title,
.product-title,
.cart-item-name,
.order-item-name,
.account-panel-title,
.admin-topbar h1,
.admin-table-header h3,
.form-section-title,
.footer-brand .brand-name,
.footer-col h4,
.nav-logo,
.nav-links a,
.nav-cart,
.nav-account,
.hamburger,
.mobile-menu a,
.hero-content h1,
.hero-content .sub,
.hero-scroll,
.stat-label,
.portfolio-header h2,
.port-info h4,
.cta-content h2,
.cta-content p,
.page-hero,
.page-hero p,
.breadcrumb,
.admin-logo .brand,
.admin-nav a,
.admin-topbar .logout-btn,
.admin-login-box h1,
.admin-login-box .sub {
  color: var(--gold);
}

.text-white,
.btn-primary,
.btn-outline-white,
.nav-links a:hover,
.nav-links a.active,
.mobile-close,
.footer,
.footer-col ul li a,
.footer-contact-item,
.footer-contact-item a {
  color: var(--gold);
}

.card,
.service-card,
.prop-card,
.blog-card,
.shop-card,
.cart-items-wrap,
.cart-summary,
.checkout-form-wrap,
.checkout-order-summary,
.auth-box,
.account-sidebar,
.account-panel,
.admin-topbar,
.stat-card,
.admin-table-wrap,
.admin-form-wrap,
.admin-login-box,
.form-control,
.filter-btn,
.pkg-option,
.qty-control,
.qty-input,
.cart-item-qty input[type=number] {
  background: rgba(10,31,63,.96);
  border-color: var(--border);
  color: var(--gold);
}

.port-info,
.cart-table-head,
th,
.qty-btn {
  background: #0F2A52;
  color: var(--gold);
}

td,
tr:hover td,
.cart-row,
.order-item-row {
  color: var(--gold);
  border-color: rgba(255,215,0,.16);
}

tr:hover td {
  background: rgba(255,215,0,.06);
}

.form-control::placeholder {
  color: rgba(255,215,0,.54);
}

.form-control:focus,
.filter-btn:hover,
.pkg-option:hover,
.pkg-option.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,.14);
}

.btn-primary,
.btn-gold,
.btn-outline-gold,
.btn-ghost,
.filter-btn.active {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-em);
}

.btn-primary:hover,
.btn-gold:hover,
.btn-outline-gold:hover,
.btn-ghost:hover,
.filter-btn.active:hover {
  background: rgba(255,215,0,.12);
  color: var(--gold);
  border-color: var(--gold-lt);
}

.svc-icon,
.feat-icon,
.stat-card-icon,
.confirm-icon,
.account-avatar .av,
.badge-cat,
.confirm-order-id {
  background: rgba(255,215,0,.12);
  color: var(--gold);
}

.service-card:hover .svc-icon,
.qty-btn:hover,
.action-edit:hover {
  background: rgba(255,215,0,.16);
  color: var(--gold);
}

.prop-badge,
.cart-badge,
.shop-card-cat {
  background: var(--gold);
  color: #0A1F3F;
}

.alert-success {
  background: rgba(255,215,0,.1);
  border-color: rgba(255,215,0,.28);
  color: var(--gold);
}
