/* ==========================================================================
   Raj Tech — IT Services, Kuwait
   Design system: Navy #0A1628 · Gold #C8922A · White/soft grey
   ========================================================================== */

:root {
  --navy: #0A1628;
  --navy-2: #10233F;
  --navy-3: #16304F;
  --gold: #C8922A;
  --gold-dark: #A97A1E;
  --gold-light: #E5C068;
  --ink: #1A2436;
  --muted: #5B6B83;
  --bg: #FFFFFF;
  --bg-soft: #F4F6FA;
  --line: #E3E8F0;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(10, 22, 40, .06);
  --shadow-md: 0 12px 32px rgba(10, 22, 40, .10);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, .16);
  --shadow-gold: 0 10px 26px rgba(200, 146, 42, .32);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --section-pad: clamp(64px, 9vw, 112px);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; margin: 0; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0; }
section { scroll-margin-top: calc(var(--header-h) + 16px); }
:focus-visible { outline: 3px solid rgba(200, 146, 42, .55); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 42px); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-head .eyebrow { justify-content: flex-start; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, #E5C068, #C8922A 55%, #B07D1F); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200, 146, 42, .42); }
.btn-outline-light { border: 1.5px solid rgba(255, 255, 255, .35); color: #fff; background: rgba(255, 255, 255, .04); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, .28); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy); font-weight: 800; font-size: 20px; font-family: var(--font-head);
  box-shadow: 0 6px 16px rgba(200, 146, 42, .4);
}
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.01em; color: #fff; }
.brand-text em { font-style: normal; color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 10px 14px; font-weight: 500; font-size: 15px; color: rgba(255, 255, 255, .82);
  border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold)); border-radius: 2px;
}
.nav-cta { margin-inline-start: 10px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 10px; font-weight: 700; font-size: 13.5px;
  color: var(--gold-light); border: 1.5px solid rgba(200, 146, 42, .5); background: rgba(200, 146, 42, .08);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lang-toggle:hover { background: rgba(200, 146, 42, .18); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.18); }
.nav-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(200, 146, 42, .16), transparent 60%),
    radial-gradient(700px 460px at -5% 110%, rgba(22, 48, 79, .7), transparent 60%),
    var(--navy);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(820px 520px at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(820px 520px at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(72px, 11vw, 128px) 0 clamp(140px, 18vw, 220px); max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--gold-light); background: rgba(200, 146, 42, .12); border: 1px solid rgba(200, 146, 42, .35);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200, 146, 42, .22); }
.hero h1 { font-size: clamp(38px, 6.4vw, 64px); font-weight: 800; margin: 22px 0 20px; letter-spacing: -.025em; }
.hero h1 .gold { color: var(--gold-light); }
.hero-sub { font-size: clamp(17px, 2.2vw, 20px); color: rgba(255, 255, 255, .82); max-width: 620px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-mini-strip { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-mini-strip span { font-size: 14px; color: rgba(255, 255, 255, .75); display: inline-flex; align-items: center; gap: 9px; }
.hero-mini-strip svg { width: 18px; height: 18px; color: var(--gold); }

.skyline { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none; line-height: 0; }
.skyline svg { width: 100%; height: auto; }
.skyline-back { opacity: .35; }
.skyline-front { opacity: .9; }

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy .section-head p { color: rgba(255, 255, 255, .72); }
.section-navy .eyebrow { color: var(--gold-light); }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(200, 146, 42, .4); }
.service-card:hover::before { transform: scaleX(1); }
.icon-box {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(200, 146, 42, .1); border: 1px solid rgba(200, 146, 42, .25); color: var(--gold-dark);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.icon-box svg { width: 27px; height: 27px; }
.service-card:hover .icon-box { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; transform: scale(1.06); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.card-tags span { font-size: 12px; font-weight: 600; color: var(--gold-dark); background: rgba(200, 146, 42, .09); border: 1px solid rgba(200, 146, 42, .22); padding: 4px 10px; border-radius: 999px; }

.link-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.link-more::after { content: "→"; color: var(--gold); transition: transform .25s var(--ease); }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon { flex: none; width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--navy); color: var(--gold); }
.why-icon svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

.stats-bar { margin-top: 56px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)); padding: 34px 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; text-align: center; }
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--gold-light); font-family: var(--font-head); line-height: 1; }
.stat-label { margin-top: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .75); }

/* ---------- Portfolio cards ---------- */
.portfolio-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-visual {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(300px 160px at 80% 10%, rgba(200, 146, 42, .35), transparent 65%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}
.portfolio-visual .glyph { width: 58px; height: 58px; color: rgba(229, 192, 104, .9); }
.portfolio-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.portfolio-badge {
  position: absolute; top: 14px; inset-inline-start: 14px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(10, 22, 40, .7); border: 1px solid rgba(200, 146, 42, .45);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.portfolio-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.portfolio-body h3 { font-size: 18px; margin-bottom: 8px; }
.portfolio-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.portfolio-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; font-size: 13px; color: var(--muted); }
.portfolio-meta .pill { font-weight: 600; color: var(--gold-dark); background: rgba(200,146,42,.09); padding: 4px 11px; border-radius: 999px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: #fff; border: 1.5px solid var(--line); color: var(--muted);
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-count { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark { width: 34px; height: 34px; color: var(--gold); margin-bottom: 16px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.testimonial-card blockquote { margin: 0 0 20px; color: var(--ink); font-size: 15.5px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-author .avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--navy-2), var(--navy)); font-size: 16px; }
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; border-radius: 24px; color: #fff;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(200,146,42,.28), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--navy-3));
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 72px);
  display: flex; flex-direction: column; gap: 22px;
}
@media (min-width: 860px) { .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-banner h2 { font-size: clamp(26px, 3.6vw, 38px); max-width: 560px; }
.cta-banner p { color: rgba(255, 255, 255, .78); margin-top: 10px; max-width: 540px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Services page: detail rows ---------- */
.service-detail { padding: var(--section-pad) 0; }
.service-detail + .service-detail { padding-top: 0; }
.detail-row {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(26px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 940px) { .detail-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .service-detail:nth-child(even) .detail-media { order: -1; } }
.detail-media {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(320px 180px at 20% 20%, rgba(200,146,42,.32), transparent 60%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}
.detail-media svg { width: 86px; height: 86px; color: rgba(229, 192, 104, .92); z-index: 1; }
.detail-media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
}
.detail-body h2 { font-size: clamp(24px, 3vw, 32px); margin: 12px 0 12px; }
.detail-body > p { color: var(--muted); margin-bottom: 20px; }
.feature-list { display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.feature-list li svg { flex: none; width: 20px; height: 20px; color: var(--gold-dark); margin-top: 2px; }
.detail-foot { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }

/* Process */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; counter-reset: step; }
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.process-step .step-num { counter-increment: step; }
.process-step .step-num::before { content: "0" counter(step); font-family: var(--font-head); font-weight: 800; font-size: 34px; color: rgba(200, 146, 42, .25); line-height: 1; display: block; margin-bottom: 14px; }
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--bg-soft); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(200, 146, 42, .14);
}
.form-field.full { grid-column: 1 / -1; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 16px; height: 16px; color: var(--gold-dark); flex: none; }

.contact-panel { display: grid; gap: 18px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.info-card .why-icon { width: 46px; height: 46px; }
.info-card h3 { font-size: 15.5px; margin-bottom: 3px; }
.info-card p, .info-card a { font-size: 14.5px; color: var(--muted); }
.info-card a:hover { color: var(--gold-dark); }
.wa-card { border-color: rgba(37, 211, 102, .35); background: linear-gradient(180deg, rgba(37,211,102,.06), rgba(37,211,102,0)); }
.wa-card .why-icon { background: #25D366; color: #fff; }
.btn-wa { background: #25D366; color: #fff; width: 100%; box-shadow: 0 10px 24px rgba(37, 211, 102, .3); }
.btn-wa:hover { transform: translateY(-2px); background: #1eb85a; box-shadow: 0 14px 30px rgba(37, 211, 102, .4); }

.map-wrap { margin-top: 12px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero .hero-grid-bg { opacity: .35; }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(52px, 8vw, 92px) 0; max-width: 760px; }
.page-hero-inner h1 { font-size: clamp(32px, 5vw, 50px); margin: 18px 0 14px; }
.page-hero-inner p { color: rgba(255, 255, 255, .8); font-size: 17px; max-width: 640px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 22px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: "/"; margin-inline-end: 8px; color: rgba(255,255,255,.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .72); padding-top: clamp(52px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer-brand .brand-text { margin-top: 16px; }
.footer-about { font-size: 14.5px; margin: 18px 0 22px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .16); color: #fff; transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-col h3 { font-size: 15px; color: #fff; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 14.5px; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.55); }
@media (min-width: 700px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom .gold { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.contact-form.shake { animation: shake .4s var(--ease); }
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 40px rgba(37, 211, 102, .55); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float .wa-ping { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waPing 2.2s ease-out infinite; }
@keyframes waPing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ---------- Responsive header ---------- */
@media (max-width: 960px) {
  .nav-cta { display: none; }
}
@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 18px 20px 26px;
    background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-link { padding: 13px 14px; font-size: 16px; }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: rgba(200,146,42,.12); }
}

/* ---------- RTL ---------- */
[dir="rtl"] { --font-body: 'Cairo', var(--font-body); --font-head: 'Cairo', var(--font-head); }
[dir="rtl"] .link-more::after { content: "←"; }
[dir="rtl"] .link-more:hover::after { transform: translateX(-4px); }
[dir="rtl"] .service-card::before { transform-origin: right; }
[dir="rtl"] .hero-grid-bg, [dir="rtl"] .detail-media::after, [dir="rtl"] .portfolio-visual::after {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
