/* ============================================================
   O A S Contracting — Global Stylesheet
   Design system: Playfair Display + DM Sans, Navy + Gold
   All pages share this file. Page-specific layout classes
   are namespaced (e.g. .about-*, .maint-*, .lux-*, .contact-*)
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  --gold:       #C9A227;
  --gold-light: #e8c84a;
  --gold-pale:  #f5edd4;
  --navy:       #0d1420;
  --navy-mid:   #1a2235;
  --navy-soft:  #243049;
  --white:      #fafaf8;
  --text-muted: #8a94a6;
  --border:     #e8e4dc;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── BASE ─── */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ─── HEADER ─── */
.header {
  background: rgba(255,255,255,0.97);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1.5px solid rgba(201,162,39,0.2);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }

.logo-link { display: block; text-decoration: none; }
.logo-stack { display: flex; flex-direction: column; align-items: center; }
.logo-img { height: 52px; width: auto; }
.logo-text {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 40px; }
.nav-list { display: flex; list-style: none; gap: 28px; margin: 0; }
.nav-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
html[dir="rtl"] .nav-list a { font-family: 'Tajawal', sans-serif; font-size: 0.95rem; }
.nav-list a:hover { color: var(--gold); }
.nav-list a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
html[dir="rtl"] .nav-list a::after { left: auto; right: 0; }
.nav-list a:hover::after { width: 100%; }

.lang-selector { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid #d1ccc2;
  border-radius: 6px;
  padding: 7px 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.arrow { font-size: 0.75rem; transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(26,26,46,0.12);
  min-width: 145px;
  z-index: 1000;
  overflow: hidden;
}
.lang-option {
  display: block; width: 100%;
  padding: 10px 16px;
  text-align: left;
  background: none; border: none;
  color: var(--navy);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.lang-option:hover { background: #f5f3ee; color: var(--gold); }
.menu-toggle { display: none; font-size: 2rem; color: var(--navy); cursor: pointer; background: none; border: none; }

/* ─── SHARED SECTION ATOMS ─── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}
.section-title.light { color: #fff; }

.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ─── SHARED ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.3); }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.fade-in   { animation: fadeUp 0.8s ease both; }
.fade-in-2 { animation: fadeUp 0.8s 0.15s ease both; }

/* ─── SHARED DARK HERO BASE ─── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
.page-hero .container { position: relative; z-index: 2; }

/* generic orb used across heroes */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.orb-gold-r { /* top-right gold orb */
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -150px; right: -80px;
}
.orb-blue-l { /* bottom-left blue orb */
  width: 350px; height: 350px;
  background: radial-gradient(circle, #1a6bb5, transparent 70%);
  bottom: -80px; left: -60px;
}

/* ─── SHARED BUTTONS ─── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,162,39,0.5); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(13,20,32,0.2); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 12px;
}
.btn-gold-outline:hover { background: var(--navy); color: #fff; }

/* ─── GOLD CTA SECTION (all pages) ─── */
.cta-section { background: var(--gold); padding: 80px 0 100px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 50% -10%, rgba(255,255,255,.15), transparent 60%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.cta-section p { font-size: 1rem; color: rgba(13,20,32,.6); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--navy); color: #fff; padding: 15px 36px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* On gold CTA background, make outline button use white */
.cta-section .btn-gold-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255,255,255,0.25);
}
.cta-section .btn-gold-outline:hover { background: var(--navy); color: #fff; }

/* ─── SHARED FOOTER ─── */
.footer { background: #0a0f1a; padding: 60px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 48px; margin-bottom: 12px; }
.footer-logo p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-logo .brand-name { font-weight: 700; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.45);
  font-size: 0.88rem; text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

/* ─── SHARED CTA SECTIONS ─── */
.cta-pale {
  padding: 90px 0;
  background: var(--gold-pale);
  text-align: center;
}
.cta-pale h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--navy); margin-bottom: 14px; }
.cta-pale p  { font-size: 1rem; color: #5a6070; margin-bottom: 32px; }

.cta-dark {
  padding: 90px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,0.08) 0%, transparent 70%);
}
.cta-dark .container { position: relative; z-index: 1; }
.cta-dark h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #fff; margin-bottom: 14px; }
.cta-dark p  { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── SHARED SERVICE CARDS ─── */
.service-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  background: #fff;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
html[dir="rtl"] .service-card::after { transform-origin: right; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.09); border-color: rgba(201,162,39,0.25); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .svc-icon { width: 56px; height: 56px; background: rgba(201,162,39,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   INDEX PAGE
═══════════════════════════════════════════════════════════ */
.ai-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 28px 60px;
}
.ai-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
.ai-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; animation: orbPulse 8s ease-in-out infinite; }
.ai-hero-orb.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold), transparent 70%); top: -150px; left: -100px; }
.ai-hero-orb.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #1a6bb5, transparent 70%); bottom: -100px; right: -80px; animation-delay: 3s; }
.ai-hero-orb.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--gold), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 6s; }

.ai-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.ai-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.ai-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.ai-hero-headline .accent { color: var(--gold); display: block; }
.ai-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.8; }
.ai-hero-stats { display: flex; gap: 32px; margin-bottom: 40px; }
.ai-stat { display: flex; flex-direction: column; }
.ai-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ai-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.ai-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-glow {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.3s; box-shadow: 0 0 0 0 rgba(201,162,39,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-glow:hover { background: var(--gold-light); box-shadow: 0 0 30px rgba(201,162,39,0.5), 0 8px 24px rgba(0,0,0,0.3); transform: translateY(-2px); }
.btn-outline-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* AI Panel Card (right side of index hero) */
.ai-panel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.panel-header { margin-bottom: 28px; }
.panel-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.panel-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; font-weight: 700; line-height: 1.3; }
.panel-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* AI Form elements */
.ai-form-group { margin-bottom: 18px; }
.ai-form-group label, .ai-form-group > span {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.ai-radio-group { display: flex; gap: 10px; }
.ai-radio-group label {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 16px;
  cursor: pointer; transition: all 0.2s;
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  text-transform: none; letter-spacing: 0; font-weight: 500; margin-bottom: 0;
}
.ai-radio-group label:hover { border-color: var(--gold); color: var(--gold); }
.ai-radio-group input[type="radio"] { accent-color: var(--gold); }
.ai-dimensions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ai-dimensions div { display: flex; flex-direction: column; gap: 6px; }
.ai-dimensions span { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
input[type="number"], select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 10px 14px;
  color: #fff; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  appearance: none;
}
input[type="number"]:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
select option { background: var(--navy-mid); color: #fff; }
.ai-helper { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 4px; display: block; }
.btn-generate {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; padding: 15px;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif; cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3); margin-top: 8px;
}
.btn-generate:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.5); }
.btn-generate svg { width: 18px; height: 18px; }
.ai-status { font-size: 0.82rem; text-align: center; color: var(--gold); min-height: 20px; margin-top: 10px; }
.ai-image-wrapper { margin-top: 20px; }
.ai-image-placeholder {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(201,162,39,0.25);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px; position: relative; overflow: hidden;
}
.ai-image-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,162,39,0.05), transparent 70%);
}
.placeholder-icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ai-image-placeholder p { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-align: center; }

/* AI Feature Strip */
.ai-feature-strip { background: var(--navy-mid); border-top: 1px solid rgba(201,162,39,0.15); border-bottom: 1px solid rgba(201,162,39,0.15); padding: 28px 0; }
.ai-feature-strip .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.ai-strip-item { display: flex; align-items: center; gap: 12px; padding: 12px 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.ai-strip-item:last-child { border-right: none; }
html[dir="rtl"] .ai-strip-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }
html[dir="rtl"] .ai-strip-item:last-child { border-left: none; }
.strip-icon { width: 38px; height: 38px; background: rgba(201,162,39,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.strip-text { display: flex; flex-direction: column; }
.strip-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.strip-value { font-size: 0.9rem; font-weight: 600; color: #fff; }

/* How It Works */
.how-it-works { padding: 100px 0; background: var(--white); }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header .section-sub { margin: 0 auto; max-width: 560px; font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e8e4dc; border-radius: 20px; overflow: hidden; }
.hiw-step { background: var(--white); padding: 48px 36px; position: relative; transition: background 0.3s; }
.hiw-step:hover { background: var(--gold-pale); }
.step-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: rgba(201,162,39,0.12); line-height: 1; margin-bottom: -10px; }
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.step-arrow { position: absolute; top: 50%; right: -16px; transform: translateY(-50%); width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 14px; z-index: 2; box-shadow: 0 4px 12px rgba(201,162,39,0.4); }
.hiw-step:last-child .step-arrow { display: none; }

/* AI Showcase section */
.ai-showcase { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.ai-showcase::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,162,39,0.08), transparent 60%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,107,181,0.06), transparent 50%); }
.ai-showcase .container { position: relative; z-index: 1; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.showcase-text .section-title { color: #fff; }
.showcase-text .section-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 500px; line-height: 1.8; }
.showcase-feature-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.showcase-feature { display: flex; gap: 16px; align-items: flex-start; }
.sf-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.sf-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sf-text p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.showcase-screen { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; box-shadow: 0 60px 120px rgba(0,0,0,0.5); }
.screen-topbar { background: rgba(255,255,255,0.06); padding: 14px 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot.red { background: #ff5f57; } .screen-dot.yellow { background: #febc2e; } .screen-dot.green { background: #28c840; }
.screen-url { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-left: 8px; }
.screen-body { padding: 28px; }
.screen-prompt-area { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.2); border-radius: 12px; padding: 16px 20px; margin-bottom: 16px; }
.screen-prompt-label { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.screen-prompt-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.screen-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.screen-tag { background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2); border-radius: 100px; padding: 3px 12px; font-size: 0.72rem; color: var(--gold); }
.screen-generate-btn { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; border-radius: 10px; padding: 12px; font-weight: 700; font-size: 0.88rem; cursor: default; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.screen-img-result { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg, #243049, #1a2235, #2a3a55); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.result-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); border: 1px solid rgba(201,162,39,0.3); border-radius: 8px; padding: 6px 14px; font-size: 0.75rem; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.result-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 1s infinite; }
.floating-stat { position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.floating-stat-1 { top: -20px; right: -30px; }
.floating-stat-2 { bottom: 40px; left: -40px; }
.fstat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.fstat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }

/* Index Stats Strip */
.stats-strip { background: var(--navy-mid); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.stat-item:last-child { border-right: none; }
html[dir="rtl"] .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }
html[dir="rtl"] .stat-item:last-child { border-left: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* Index Services */
.services-section { padding: 100px 0; background: var(--white); }
.services-header { margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-icon { font-size: 2.2rem; margin-bottom: 18px; }

/* Index Why Us */
.why-us { padding: 100px 0; background: #f4f1eb; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check { width: 28px; height: 28px; flex-shrink: 0; background: var(--gold); color: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px; }
.feature-item p { font-size: 0.92rem; color: #4a5568; line-height: 1.6; }
.why-us-image img { width: 100%; border-radius: 20px; box-shadow: 0 40px 80px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-hero-text { animation: fadeUp 0.8s ease both; }
.page-hero-visual { animation: fadeUp 0.8s 0.15s ease both; }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.page-title .gold { color: var(--gold); }
.page-lead { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 520px; }
.page-hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 8px 18px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.hero-card-stack { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; display: flex; gap: 16px; align-items: center; backdrop-filter: blur(10px); transition: border-color 0.3s; }
.hero-card:hover { border-color: rgba(201,162,39,0.3); }
.hero-card-icon { width: 48px; height: 48px; background: rgba(201,162,39,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hero-card-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-card-text h3 { font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.hero-card-text p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

.about-story { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.story-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.story-text p { font-size: 0.97rem; color: #4a5568; line-height: 1.85; margin-bottom: 16px; }
.story-img { border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.12); position: relative; }
.story-img img { width: 100%; display: block; }
.story-img-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(13,20,32,0.9); backdrop-filter: blur(12px); border: 1px solid rgba(201,162,39,0.3); border-radius: 12px; padding: 14px 20px; }
.badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.badge-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

.what-we-do { padding: 100px 0; background: #f4f1eb; }
.mep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.mep-card { background: #fff; border-radius: 20px; padding: 40px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all 0.3s; position: relative; overflow: hidden; }
.mep-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
html[dir="rtl"] .mep-card::before { transform-origin: right; }
.mep-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.mep-card:hover::before { transform: scaleX(1); }
.mep-letter { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: rgba(201,162,39,0.15); line-height: 1; margin-bottom: -10px; }
.mep-icon { font-size: 2rem; margin-bottom: 16px; }
.mep-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mep-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.standards-bar { background: var(--navy); border-radius: 16px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
html[dir="rtl"] .standards-bar { flex-direction: row-reverse; }
.standards-bar-text h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.standards-bar-text p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.standards-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.std-badge { background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.25); border-radius: 8px; padding: 8px 16px; font-size: 0.82rem; font-weight: 700; color: var(--gold); }

.projects-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.projects-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,162,39,0.07), transparent 60%); }
.projects-section .container { position: relative; z-index: 1; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; margin-top: 48px; }
.project-item { background: rgba(255,255,255,0.03); padding: 32px; transition: background 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.project-item:hover { background: rgba(201,162,39,0.06); }
.proj-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.proj-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proj-scope { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════
   MAINTENANCE PAGE
═══════════════════════════════════════════════════════════ */
.response-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
.response-item { background: rgba(255,255,255,0.03); padding: 28px 24px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: background 0.3s; }
.response-item:hover { background: rgba(201,162,39,0.08); }
.response-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.response-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.services-main { padding: 100px 0; background: var(--white); }

.amc-section { padding: 100px 0; background: #f4f1eb; }
.amc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.amc-visual { position: relative; }
.amc-card-main { background: var(--navy); border-radius: 24px; padding: 48px 40px; color: #fff; position: relative; overflow: hidden; }
.amc-card-main::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,162,39,0.3), transparent 70%); border-radius: 50%; }
.amc-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.amc-card-main h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.amc-card-main p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.amc-features { display: flex; flex-direction: column; gap: 12px; }
.amc-feat { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.amc-feat-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.amc-stat-float { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
html[dir="rtl"] .amc-stat-float { right: auto; left: -20px; }
.amc-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.amc-stat-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.amc-text p { font-size: 0.95rem; color: #4a5568; line-height: 1.85; margin-bottom: 16px; }
.amc-text a.btn-navy { margin-top: 12px; }

.process-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,162,39,0.07), transparent 60%); }
.process-section .container { position: relative; z-index: 1; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), rgba(201,162,39,0.3), transparent); z-index: 0; }
.process-step { text-align: center; padding: 24px 16px; position: relative; z-index: 1; }
.step-circle { width: 72px; height: 72px; background: rgba(201,162,39,0.1); border: 2px solid rgba(201,162,39,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.step-num-tag { position: absolute; top: 0; right: calc(50% - 44px); background: var(--gold); color: var(--navy); width: 22px; height: 22px; border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   LUXURY INTERIORS PAGE
═══════════════════════════════════════════════════════════ */
.lux-hero { min-height: 100vh; background: rgba(8,13,22,0.78); display: flex; align-items: flex-start; position: relative; overflow: hidden; padding: 90px 0 80px; }
.lux-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.starfield { position: absolute; inset: 0; overflow: hidden; }
.star { position: absolute; background: #fff; border-radius: 50%; animation: twinkle var(--d, 3s) ease-in-out var(--del, 0s) infinite; }
.sl-star { position: absolute; background: #fff; border-radius: 50%; animation: twinkle var(--d) ease-in-out var(--del) infinite; }
.gold-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: orbPulse 8s ease-in-out infinite; }
.gold-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold), transparent 70%); bottom: -200px; left: -100px; }
.gold-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #a0522d, transparent 70%); top: -100px; right: -80px; animation-delay: 4s; }
.lux-hero .container { position: relative; z-index: 2; }
.lux-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lux-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.35); border-radius: 100px; padding: 5px 16px; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.lux-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.lux-title em { font-style: italic; color: var(--gold); }
.lux-lead { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.85; max-width: 480px; margin-bottom: 36px; }
.lux-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.starlight-preview { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; box-shadow: 0 60px 120px rgba(0,0,0,0.5); }
.sl-preview-top { background: linear-gradient(180deg, #000, #0a0a1a); padding: 48px 40px; position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; }
.sl-stars-canvas { position: absolute; inset: 0; overflow: hidden; }
.sl-preview-label { position: relative; z-index: 2; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: #fff; font-weight: 700; }
.sl-preview-sub { position: relative; z-index: 2; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.sl-preview-body { padding: 28px 32px; background: rgba(255,255,255,0.02); }
.sl-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sl-spec { padding: 16px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }
.sl-spec-val { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.sl-spec-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.sl-price-row { margin-top: 20px; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }
.sl-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.sl-price-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.lux-services { padding: 100px 0; background: var(--white); }
.lux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lux-card { border: 1.5px solid var(--border); border-radius: 20px; padding: 40px 32px; transition: all 0.35s; position: relative; overflow: hidden; background: #fff; }
.lux-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
html[dir="rtl"] .lux-card::after { transform-origin: right; }
.lux-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.09); border-color: rgba(201,162,39,0.25); }
.lux-card:hover::after { transform: scaleX(1); }
.lux-icon { font-size: 2.2rem; margin-bottom: 20px; }
.lux-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.lux-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

.star-ceiling { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.star-ceiling::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.08), transparent 50%); }
.star-ceiling .container { position: relative; z-index: 1; }
.sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sc-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.sc-lead { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 36px; }
.features-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-row { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon { width: 40px; height: 40px; background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.feat-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.feat-text p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.sc-specs { display: grid; grid-template-columns: 1fr; gap: 16px; }
.spec-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 24px; transition: border-color 0.3s; }
.spec-card:hover { border-color: rgba(201,162,39,0.3); }
.spec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.spec-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.spec-badge { background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.25); border-radius: 100px; padding: 3px 10px; font-size: 0.7rem; color: var(--gold); font-weight: 700; }
.spec-val { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.5; }

.pricing-section { padding: 100px 0; background: #f4f1eb; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.price-card { background: #fff; border-radius: 24px; padding: 48px 40px; border: 2px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.price-card.featured { background: var(--navy); border-color: rgba(201,162,39,0.4); box-shadow: 0 40px 80px rgba(13,20,32,0.2); }
.price-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.price-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.price-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-card.featured .price-title { color: #fff; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.price-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }
.price-card.featured .price-sub { color: rgba(255,255,255,0.4); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pf-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #4a5568; }
.price-card.featured .pf-item { color: rgba(255,255,255,0.65); }
.pf-check { width: 18px; height: 18px; background: rgba(201,162,39,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--gold); flex-shrink: 0; }
.price-btn { display: block; text-align: center; background: var(--navy); color: #fff; padding: 13px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.price-card.featured .price-btn { background: var(--gold); color: var(--navy); }
.price-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.lux-process { padding: 100px 0; background: var(--white); }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-box { text-align: center; padding: 32px 20px; border: 1.5px solid var(--border); border-radius: 20px; transition: all 0.3s; }
.step-box:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.step-num-lg { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(201,162,39,0.12); line-height: 1; }
.step-icon-lg { font-size: 2rem; margin: -8px 0 14px; }
.step-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-box p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; text-align: center; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px); background-size: 60px 60px; animation: gridDrift 20s linear infinite; }
.c-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.c-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold), transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); }
.contact-hero .container { position: relative; z-index: 2; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.contact-hero h1 span { color: var(--gold); }
.contact-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; }

.contact-main { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-block { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.info-block::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--gold), var(--gold-light)); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
html[dir="rtl"] .info-block::before { left: auto; right: 0; }
.info-block:hover { border-color: rgba(201,162,39,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.07); transform: translateX(4px); }
html[dir="rtl"] .info-block:hover { transform: translateX(-4px); }
.info-block:hover::before { transform: scaleY(1); }
.info-icon { width: 48px; height: 48px; background: rgba(201,162,39,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.info-block h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.info-block p, .info-block a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; text-decoration: none; display: block; margin-bottom: 4px; }
.info-block a:hover { color: var(--gold); }
.info-block a.highlight { color: var(--navy); font-weight: 600; }
.info-block a.highlight:hover { color: var(--gold); }

.contact-form-wrap { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 48px 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.form-header { margin-bottom: 32px; }
.form-label-top { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.form-sub { font-size: 0.9rem; color: var(--text-muted); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.92rem; color: var(--navy); font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafaf8;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }
.form-cta { margin-top: 24px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; padding: 16px;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  font-family: inherit; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,162,39,0.4); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px; background: rgba(201,162,39,0.05); border: 1px solid rgba(201,162,39,0.2); border-radius: 12px; margin-top: 20px; }
.form-success .icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

.why-contact { padding: 80px 0; background: #f4f1eb; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: #fff; border-radius: 16px; padding: 32px; text-align: center; border: 1.5px solid var(--border); transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: rgba(201,162,39,0.25); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

.map-section { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.map-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,162,39,0.07), transparent 60%); }
.map-section .container { position: relative; z-index: 1; }
.map-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 20px; }
.map-text p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.map-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.map-detail-icon { width: 36px; height: 36px; background: rgba(201,162,39,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.map-detail-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.map-detail-text strong { color: #fff; display: block; margin-bottom: 2px; }
.map-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; text-align: center; }
.map-placeholder { background: rgba(255,255,255,0.03); border: 1px dashed rgba(201,162,39,0.3); border-radius: 16px; padding: 60px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-pin { font-size: 3rem; }
.map-placeholder h4 { font-size: 1rem; font-weight: 700; color: #fff; }
.map-placeholder p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.map-link { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; text-decoration: none; margin-top: 16px; transition: all 0.3s; }
.map-link:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ai-hero-inner,
  .page-hero-inner,
  .lux-hero-inner,
  .showcase-grid,
  .story-grid,
  .amc-grid,
  .why-us-grid,
  .sc-grid,
  .contact-grid,
  .map-inner { grid-template-columns: 1fr; gap: 40px; }

  .services-grid,
  .mep-grid { grid-template-columns: repeat(2, 1fr); }

  .lux-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .floating-stat { display: none; }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); gap: 16px;
  }
  .nav-list.active { display: flex; }
  .menu-toggle { display: block; }
  .nav { gap: 16px; }

  .services-grid,
  .mep-grid,
  .lux-grid,
  .why-grid,
  .steps-row { grid-template-columns: 1fr; }

  .hiw-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }

  .ai-hero-stats,
  .page-hero-stats { flex-wrap: wrap; gap: 20px; }

  .ai-strip-item { padding: 12px 16px; }

  .response-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .sl-specs { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES (replacing all remaining inline styles)
═══════════════════════════════════════════════════════════ */

/* Layout utilities */
.text-center      { text-align: center; }
.mb-0             { margin-bottom: 0 !important; }
.mb-56            { margin-bottom: 56px; }
.mb-12            { margin-bottom: 12px; }
.w-fit            { width: fit-content; }

/* Service card — AI dark variant (index.html) */
.service-card--ai {
  background: linear-gradient(135deg, #0d1420 0%, #1a2235 100%);
  border-color: transparent;
}
.service-card--ai h3 { color: var(--gold); }
.service-card--ai p  { color: rgba(255,255,255,0.6); }
.service-card--ai .svc-try-btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.service-card--ai .svc-try-btn:hover { background: var(--gold-light); }

/* AI robot feature check */
.feature-check--ai {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

/* Btn ghost on dark CTA (index) */
.btn-cta-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Btn small (Star Light booking btn in preview card) */
.btn-gold--sm { font-size: 0.82rem; padding: 10px 20px; }

/* Price amount gold override (already gold but was inline) */
.price-amount--custom { color: var(--gold); }

/* Section header centred block for pricing / process */
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-title { margin-bottom: 0; }

/* Process section header on lux page */
.section-header-center--sm { text-align: center; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY & SEO ADDITIONS
═══════════════════════════════════════════════════════════ */

/* Skip to main content (screen readers + keyboard users) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus-visible styles (keyboard navigation — accessibility + SEO signal) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Utility classes (replacing inline styles) */
.h3-gold  { color: var(--gold); }
.mb-0     { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* AI generated result image */
.ai-result-img { width: 100%; border-radius: 14px; }

/* Hidden utility (replaces inline display:none) */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR — gold dot + ring, applied across all pages
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

@media (hover: none) and (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  .c-dot, .c-ring { display: none !important; }
}

.c-dot {
  position: fixed; top: 0; left: 0; z-index: 99999; pointer-events: none;
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.c-ring {
  position: fixed; top: 0; left: 0; z-index: 99998; pointer-events: none;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201,162,39,.45); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.c-dot.hov  { width: 5px;  height: 5px;  background: #fff; }
.c-ring.hov { width: 54px; height: 54px; border-color: rgba(201,162,39,.8); }
.c-dot.clk  { width: 4px;  height: 4px; }
.c-ring.clk { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════
   LOGO CONSISTENCY
   Header: always white (inverted)
   Footer: original colored logo
═══════════════════════════════════════════════════════════ */
/* Header logo — white on dark background */
.site-header .logo-img  { filter: brightness(0) invert(1); }
/* Footer logo — original colored (no filter) */
.footer      .logo-img,
.site-footer .logo-img,
.footer-brand img,
.footer-logo  img       { filter: none !important; opacity: 1 !important; }

/* ═══════════════════════════════════════════════════════════
   DARK SITE HEADER — shared across all pages
   (index.html uses its own inline copy; inner pages use this)
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; inset: auto 0 auto 0; z-index: 900;
  background: transparent; border-bottom: 1px solid transparent;
  padding: 22px 0;
  transition: background .45s, backdrop-filter .45s, border-color .45s, padding .3s;
}
.site-header.scrolled {
  background: rgba(13,20,32,.94); backdrop-filter: blur(18px);
  border-color: rgba(201,162,39,.15); padding: 14px 0;
}
/* Inner pages always show dark background (no hero behind them) */
.site-header.always-dark {
  background: rgba(13,20,32,.97); border-color: rgba(201,162,39,.12); padding: 14px 0;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-header .logo-link { text-decoration: none; display: flex; align-items: center; }
.site-header .logo-stack { display: flex; flex-direction: column; align-items: center; }
.site-header .logo-img  { height: 46px; width: auto; filter: brightness(0) invert(1); }
.site-header .logo-text { font-weight: 700; font-size: .72rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-top: 3px; }
.main-nav  { display: flex; align-items: center; gap: 36px; }
.main-nav .nav-list  { display: flex; list-style: none; gap: 24px; }
.main-nav .nav-list a {
  color: rgba(255,255,255,.7); text-decoration: none; font-weight: 600;
  font-size: .72rem; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 6px 0; position: relative; transition: color .2s;
}
.main-nav .nav-list a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .25s; }
.main-nav .nav-list a:hover,
.main-nav .nav-list a[aria-current="page"] { color: var(--gold); }
.main-nav .nav-list a:hover::after,
.main-nav .nav-list a[aria-current="page"]::after { width: 100%; }
.lang-sel  { position: relative; }
.site-header .lang-btn  {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
  padding: 7px 14px; color: rgba(255,255,255,.65); font-weight: 600; font-size: .75rem;
  transition: all .2s; font-family: inherit; cursor: pointer;
}
.site-header .lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-arrow { font-size: .7rem; transition: transform .2s; }
.site-header .lang-btn[aria-expanded="true"] .lang-arrow { transform: rotate(180deg); }
.lang-drop {
  display: none;
  position: fixed;
  background: #0d1c30;
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.8);
  min-width: 145px;
  z-index: 999999;
  overflow: hidden;
}
.lang-drop.open { display: block; }
.lang-opt { display: block; width: 100%; padding: 10px 16px; text-align: left; background: none; border: none; color: rgba(255,255,255,.6); font-size: .88rem; transition: background .15s; font-family: inherit; cursor: pointer; }
.lang-opt:hover { background: rgba(201,162,39,.1); color: var(--gold); }
.menu-tog { display: none; font-size: 1.8rem; color: #fff; background: none; border: none; line-height: 1; cursor: pointer; }

/* ── Full-screen mobile nav overlay ── */
.mob-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #ffffff;
  z-index: 9999999;
  flex-direction: column;
  overflow-y: auto;
}
.mob-overlay.open { display: flex; }
.mob-ov-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 24px !important;
  border-bottom: 1px solid #eeeeee !important;
  background: #ffffff !important;
}
.mob-ov-close {
  background: none !important; border: none !important; cursor: pointer !important;
  font-size: 2rem !important; color: #111111 !important; line-height: 1 !important;
  padding: 4px !important; font-family: inherit !important;
}
.mob-ov-logo { height: 38px !important; width: auto !important; filter: none !important; }
.mob-ov-list {
  list-style: none !important; margin: 0 !important; padding: 0 24px !important;
  flex: 1 !important; background: #ffffff !important;
}
.mob-ov-list li { border-bottom: 1px solid #f0f0f0 !important; }
.mob-ov-list a {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  padding: 22px 0 !important;
  font-size: 1.15rem !important; font-weight: 700 !important;
  color: #111111 !important; text-decoration: none !important;
  font-family: 'Playfair Display', serif !important;
}
.mob-ov-list a::after { content: "›" !important; font-size: 1.5rem !important; color: #bbbbbb !important; font-weight: 300 !important; }
.mob-ov-list a[aria-current="page"] { color: #C9A227 !important; }
.mob-ov-footer {
  padding: 28px 24px 40px !important;
  border-top: 1px solid #eeeeee !important;
  display: flex !important; flex-direction: column !important; gap: 18px !important;
  background: #ffffff !important;
}
.mob-ov-contact {
  display: flex !important; align-items: center !important; gap: 12px !important;
  font-size: 1rem !important; color: #444444 !important; text-decoration: none !important;
  font-weight: 500 !important;
}
.mob-ov-lang {
  display: flex !important; align-items: center !important; gap: 12px !important;
  font-size: 1rem !important; color: #444444 !important; font-weight: 500 !important;
  background: none !important; border: none !important; cursor: pointer !important;
  font-family: inherit !important; padding: 0 !important;
}

/* Mobile nav for dark header */
@media (max-width: 900px) {
  .menu-tog { display: block; }
  .main-nav .nav-list { display: none !important; }
  .lang-sel { display: none; }
}

/* Org Chart (index Why section) */
.why-org-chart { background: var(--navy); padding: 32px 20px; display: flex; align-items: center; justify-content: center; min-height: 260px; }
.org-chart { width: 100%; }
.org-top { display: flex; justify-content: center; margin-bottom: 0; }
.org-box { background: var(--gold); color: var(--navy); font-weight: 700; font-size: .78rem; text-align: center; padding: 10px 14px; border-radius: 6px; line-height: 1.3; min-width: 80px; }
.org-main { font-size: .88rem; padding: 12px 28px; background: var(--gold); color: var(--navy); }
.org-dept { font-size: .72rem; padding: 10px 10px; background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.org-line-h { height: 2px; background: rgba(201,162,39,.3); margin: 0 10%; }
.org-branches { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.org-branch { display: flex; flex-direction: column; align-items: center; }
.org-line-v { width: 2px; height: 20px; background: rgba(201,162,39,.3); }
/* ═══════════════════════════════════════════════════════════
   STORY STATS PANEL (replaces placeholder photo in about.html)
═══════════════════════════════════════════════════════════ */
.story-stats-panel {
  background: var(--navy);
  border: 1px solid rgba(201,162,39,.18);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ssp-header {
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.ssp-dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}
.ssp-rows { display: flex; flex-direction: column; gap: 18px; }
.ssp-row { display: grid; grid-template-columns: 130px 1fr 52px; align-items: center; gap: 12px; }
.ssp-label { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; }
.ssp-bar-wrap { background: rgba(255,255,255,.06); border-radius: 999px; height: 6px; overflow: hidden; }
.ssp-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px; width: 0;
  animation: barGrow 1.4s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: .3s;
}
@keyframes barGrow { to { width: var(--w); } }
.ssp-val { font-size: .85rem; font-weight: 700; color: var(--gold); text-align: right; }
.ssp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ssp-badge {
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.25);
  color: var(--gold); font-size: .68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN & TURNKEY SHOWCASE SECTION
═══════════════════════════════════════════════════════════ */
.dt-showcase {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.dt-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,162,39,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.dt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.dt-eyebrow {
  font-size: .72rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.dt-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.dt-title em { color: var(--gold); font-style: italic; }
.dt-lead {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}
/* Pipeline */
.dt-pipeline { display: flex; flex-direction: column; gap: 0; }
.dt-step {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 16px;
  align-items: start;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  position: relative;
  transition: background .3s, border-color .3s, transform .3s;
}
.dt-step:hover {
  background: rgba(201,162,39,.06);
  border-color: rgba(201,162,39,.25);
  transform: translateX(6px);
}
.dt-step-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.dt-step-body h4 { font-size: .92rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.dt-step-body p  { font-size: .80rem; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0; }
.dt-step-num { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.2); text-align: right; padding-top: 4px; }
.dt-connector {
  width: 2px; height: 20px;
  background: linear-gradient(180deg, rgba(201,162,39,.4), rgba(201,162,39,.1));
  margin: 0 0 0 46px;
}
html[dir="rtl"] .dt-step:hover { transform: translateX(-6px); }
html[dir="rtl"] .dt-connector  { margin: 0 46px 0 0; }

/* ═══════════════════════════════════════════════════════════
   ABOUT ORG SECTION
═══════════════════════════════════════════════════════════ */
.about-org-section { padding: 60px 0 80px; background: #f8f6f1; }
.about-org-section .why-org-chart { border-radius: 16px; }

/* ═══════════════════════════════════════════════════════════
   PROJECTS HEADER ROW (with company profile link)
═══════════════════════════════════════════════════════════ */
.projects-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.company-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.1);
  border: 1.5px solid rgba(201,162,39,.35);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.company-profile-btn:hover {
  background: rgba(201,162,39,.18);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   LUXURY INTERIORS — GLOBAL STARFIELD + SHOOTING STAR
═══════════════════════════════════════════════════════════ */
/* Force page background to dark so stars are visible */
.luxury-interiors-page {
  background: #080d16 !important;
}
.global-starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}
.g-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkleG var(--d, 3s) var(--del, 0s) infinite alternate;
}
@keyframes twinkleG {
  0%   { opacity: .1; transform: scale(1); }
  100% { opacity: .8; transform: scale(1.3); }
}
/* All luxury page content sits above the fixed starfield */
.luxury-interiors-page header,
.luxury-interiors-page main,
.luxury-interiors-page footer {
  position: relative;
  z-index: 1;
}
.luxury-interiors-page header {
  z-index: 9000 !important;
}
/* Non-hero sections: transparent so fixed stars show through */
.luxury-interiors-page .lux-services { background: rgba(8, 13, 22, 0.78) !important; }
.luxury-interiors-page .star-ceiling  { background: rgba(8, 13, 22, 0.78) !important; }
.luxury-interiors-page .pricing-section { background: rgba(8, 13, 22, 0.78) !important; }
.luxury-interiors-page .process-section { background: rgba(8, 13, 22, 0.78) !important; }
.luxury-interiors-page .cta-dark        { background: rgba(8, 13, 22, 0.78) !important; }
.luxury-interiors-page .footer          { background: rgba(8, 13, 22, 0.97) !important; }
/* Make section text/card elements stay opaque */
.luxury-interiors-page .lux-card,
.luxury-interiors-page .spec-card,
.luxury-interiors-page .price-card,
.luxury-interiors-page .step-box {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Shooting star */
.shooting-star {
  position: fixed;
  width: 160px;
  height: 2px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: rotate(-30deg);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.95) 40%, rgba(201,162,39,.7));
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.8));
}
.shooting-star.shoot {
  animation: shootAcross 1.2s cubic-bezier(.2,0,.8,1) forwards;
}
@keyframes shootAcross {
  0%   { opacity: 0;   transform: rotate(-30deg) translateX(0);    }
  8%   { opacity: 1;                                               }
  85%  { opacity: 1;                                               }
  100% { opacity: 0;   transform: rotate(-30deg) translateX(65vw); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — new sections
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dt-inner { grid-template-columns: 1fr; gap: 40px; }
  .ssp-row  { grid-template-columns: 100px 1fr 44px; }
  .projects-header-row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE VISUAL CARDS (replaces oas_5.jpeg img-frame)
═══════════════════════════════════════════════════════════ */
.svc-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  background: #0d1420;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.sv-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.sv-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.sv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .9;
}
.sv-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sv-icon {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(255,255,255,.3));
}
.sv-label {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.sv-sub {
  position: relative;
  z-index: 2;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   LUXURY INTERIORS PAGE — ALL TEXT COLOR OVERRIDES
   Fix: navy-colored headings invisible on dark star background
═══════════════════════════════════════════════════════════ */
.luxury-interiors-page .section-title,
.luxury-interiors-page .section-label,
.luxury-interiors-page h2,
.luxury-interiors-page h3,
.luxury-interiors-page h4 {
  color: #fff;
}
/* Gold accent for labels/eyebrows */
.luxury-interiors-page .section-label {
  color: var(--gold) !important;
}
/* Cards: headings gold, body text lighter */
.luxury-interiors-page .lux-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
}
.luxury-interiors-page .lux-card h3 {
  color: var(--gold) !important;
}
.luxury-interiors-page .lux-card p {
  color: rgba(255,255,255,0.6) !important;
}
/* Pricing cards */
.luxury-interiors-page .price-title {
  color: #fff !important;
}
.luxury-interiors-page .price-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.luxury-interiors-page .price-card.featured {
  background: rgba(201,162,39,0.12) !important;
  border-color: rgba(201,162,39,0.35) !important;
}
.luxury-interiors-page .price-sub,
.luxury-interiors-page .price-features span,
.luxury-interiors-page .pf-check {
  color: rgba(255,255,255,0.55) !important;
}
/* Process steps */
.luxury-interiors-page .step-box {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
.luxury-interiors-page .step-box h4 {
  color: var(--gold) !important;
}
.luxury-interiors-page .step-box p {
  color: rgba(255,255,255,0.5) !important;
}
/* Standards bar inside what-we-do */
.luxury-interiors-page .standards-bar h4 {
  color: #fff !important;
}
/* Section header center */
.luxury-interiors-page .section-header-center .section-title {
  color: #fff !important;
}
/* Spec cards */
.luxury-interiors-page .spec-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.09) !important;
}
.luxury-interiors-page .spec-name {
  color: #fff !important;
}
.luxury-interiors-page .spec-val {
  color: rgba(255,255,255,0.6) !important;
}
/* Feature rows */
.luxury-interiors-page .feat-text h4 {
  color: #fff !important;
}
.luxury-interiors-page .feat-text p {
  color: rgba(255,255,255,0.55) !important;
}
/* Fix background bleed — ensure all sections truly transparent */
.luxury-interiors-page .lux-services,
.luxury-interiors-page .star-ceiling,
.luxury-interiors-page .pricing-section,
.luxury-interiors-page .process-section,
.luxury-interiors-page .cta-dark {
  background: rgba(8,13,22,0.78) !important;
  backdrop-filter: none !important;
}

/* ═══════════════════════════════════════════════════════════
   AI IMAGE MODAL / LIGHTBOX
═══════════════════════════════════════════════════════════ */
.ai-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ai-modal.open {
  opacity: 1;
  visibility: visible;
}
.ai-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 0;
}
.ai-modal-box {
  position: relative;
  z-index: 2;
  background: #0d1420;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 24px;
  width: 100%;
  max-width: 780px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,39,0.1);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.ai-modal.open .ai-modal-box {
  transform: scale(1) translateY(0);
}
.ai-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  height: 38px;
  padding: 0 16px;
  background: rgba(201,162,39,0.15);
  border: 1.5px solid rgba(201,162,39,0.5);
  border-radius: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
}
.ai-modal-close:hover {
  background: rgba(201,162,39,0.3);
  border-color: var(--gold);
}
.ai-modal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #060b12;
  overflow: hidden;
}
.ai-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease;
}
.ai-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #060b12;
  z-index: 2;
}
.ai-modal-loader p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.aml-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(201,162,39,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ai-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
  flex-wrap: wrap;
}
.ai-modal-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.ai-modal-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .ai-modal-box { border-radius: 16px; max-width: 100%; }
  .ai-modal-footer { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   AI RESULT PANEL + SATISFACTION FLOW
═══════════════════════════════════════════════════════════ */
.ai-result-panel {
  margin-top: 16px;
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

.arp-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(201,162,39,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.arp-img-wrap img {
  width: 100%; display: block;
  border-radius: 14px;
}
.arp-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(201,162,39,0.85);
  color: #0d1420;
  font-size: .68rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 1px;
}
.arp-actions {
  display: flex; gap: 10px; margin-top: 12px;
}
.arp-btn-dl {
  flex: 1;
  background: var(--gold);
  color: #0d1420;
  border: none; border-radius: 8px;
  padding: 10px 0; font-weight: 700;
  font-size: .82rem; cursor: pointer;
  transition: opacity .2s;
}
.arp-btn-dl:hover { opacity: .85; }
.arp-btn-regen {
  flex: 1;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px 0; font-weight: 600;
  font-size: .82rem; cursor: pointer;
  transition: background .2s;
}
.arp-btn-regen:hover { background: rgba(255,255,255,.1); }

/* Satisfaction box */
.satisfaction-box {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(13,20,32,0.98) 0%, rgba(20,30,50,0.98) 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  animation: fadeUp .5s ease .1s both;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,162,39,0.15);
}
.sat-glow {
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 65%);
  pointer-events: none;
}
.sat-emoji {
  font-size: 1.6rem; margin-bottom: 12px;
  color: var(--gold); display: block;
  animation: pulse 3s infinite;
  letter-spacing: 3px;
}
.sat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: #fff; margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.sat-sub {
  font-size: .83rem; color: rgba(255,255,255,.45);
  line-height: 1.7; margin-bottom: 24px;
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.sat-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.sat-yes {
  flex: 1; min-width: 160px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A227 50%, #B8911F 100%);
  color: #0d1420;
  border: none; border-radius: 12px;
  padding: 15px 20px; font-weight: 800;
  font-size: .88rem; cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35), 0 1px 0 rgba(255,255,255,0.2) inset;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.sat-yes::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: 12px;
}
.sat-yes:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
}
.sat-no {
  flex: 1; min-width: 160px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 15px 20px; font-weight: 600;
  font-size: .88rem; cursor: pointer;
  letter-spacing: 0.2px;
  transition: background .2s, border-color .2s, color .2s;
}
.sat-no:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Custom prompt box */
.custom-prompt-box {
  margin-top: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px 20px;
  animation: fadeUp .4s ease;
}
.custom-prompt-box h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.cp-sub {
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 14px; line-height: 1.6;
}
.cp-textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; color: #fff;
  font-size: .85rem; padding: 12px 14px;
  resize: vertical; font-family: inherit;
  line-height: 1.6;
}
.cp-textarea:focus { outline: none; border-color: rgba(201,162,39,.5); }
.cp-textarea::placeholder { color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — AI CONCEPT BANNER
═══════════════════════════════════════════════════════════ */
.ai-concept-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(201,162,39,0.04));
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease;
}
.acb-left { flex: 1; }
.acb-tag {
  font-size: .72rem; font-weight: 800;
  color: var(--gold); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 6px;
}
.acb-note {
  font-size: .8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}
.acb-thumb {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(201,162,39,0.3);
  flex-shrink: 0;
}