/* ═══════════════════════════════════════════
   DURUS AL MADINAH — STYLESHEET
   Themed to match PEAK Experiences UI
   Link this file from your HTML with:
   <link rel="stylesheet" href="css/main.css"/>
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   VARIABLES & RESET  (PEAK palette)
═══════════════════════════════════════════ */
:root {
  --gold:   #C9A646;   /* PEAK primary gold */
  --gold-l: #DCC074;   /* soft / light gold  */
  --gold-d: #A07E1F;   /* deep gold (hover)  */
  --gold-bg:#EBDCA6;
  --beige:  #F5E6C8;   /* PEAK background    */
  --beige2: #F8EFD9;
  --cream:  #FBF6EA;
  --dark:   #1A1410;   /* PEAK dark          */
  --dark2:  #241C14;
  --dark3:  #36291C;
  --white:  #FFFFFF;
  --text:   #2B2B2B;   /* PEAK ink           */
  --muted:  #6E6552;
  --border: #D9CDB1;
  --shadow: rgba(26,20,16,0.06);
  --shadow2: rgba(26,20,16,0.12);
  --shadow-elegant: 0 20px 40px -12px rgba(26,20,16,0.15);
  --ink: #2B2B2B;
  --radius: 1rem;

  /* PEAK signature fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'DM Sans', sans-serif;
  --font-arabic:'Amiri', serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:var(--font-sans);
  background:var(--beige);
  color:var(--text);
  overflow-x:hidden;
  font-feature-settings:"ss01","cv01";
  -webkit-font-smoothing:antialiased;
}
h1, h2, h3, h4 { font-family:var(--font-serif); letter-spacing:-0.01em; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { display:block; max-width:100%; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* ═══════════════════════════════════════════
   PREMIUM ISLAMIC GEOMETRIC BACKGROUND
   Defined in css/islamic-bg.css (imported from HTML)
   
   Classes available:
   .bg-islamic        — beige + 8-point star + Mashrabiya lattice + rosettes
   .bg-dark-islamic   — dark + gold geometry
   .bg-islamic-cream  — cream + hexagonal arabesque
   .bg-pattern-arabesque — alias for bg-islamic-cream
═══════════════════════════════════════════ */
.bg-pattern-arabesque { background-color: var(--cream); }
.bg-pattern-mosque    { background-color: var(--beige2); }

/* Gold divider label (PEAK gold-rule) */
.gold-rule {
  display:inline-flex; align-items:center; gap:14px;
  color:var(--gold); font-size:12px; letter-spacing:.32em; text-transform:uppercase;
  font-family:var(--font-sans); font-weight:500;
}
.gold-rule::before, .gold-rule::after {
  content:""; width:48px; height:1px; background:var(--gold); opacity:.7;
}

/* Card lift on hover (PEAK) */
.card-lift { transition:transform .4s ease, box-shadow .4s ease; }
.card-lift:hover { transform:translateY(-4px); box-shadow:0 14px 40px -18px rgba(26,20,16,.35); }

/* Footer brand wordmark */
.foot-brand {
  font-family:var(--font-serif); font-size:20px; font-weight:700; letter-spacing:1px;
  color:#fff; margin-bottom:6px;
}
.foot-brand span { color:var(--gold); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:900;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 44px; height:90px;
  background:rgba(245,230,200,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(201,166,70,0.12);
  transition:all .35s ease;
}
nav.solid { box-shadow:0 6px 24px -18px rgba(0,0,0,0.35); }

/* Logo */
.logo { display:flex; align-items:center; gap:13px; flex-shrink:0; }
.logo-mark { width:76px; height:76px; object-fit:contain; border-radius:50%; flex-shrink:0; }
.logo-text-wrap { line-height:1; }
.logo-peak { font-family:var(--font-serif); font-size:27px; font-weight:700; letter-spacing:1px; color:var(--dark); display:block; }
.logo-exp  { font-family:var(--font-arabic); font-size:15px; font-weight:700; letter-spacing:1px; color:var(--gold); display:block; margin-top:3px; }
.logo-tag  { font-family:var(--font-sans); font-size:10.5px; font-weight:300; color:var(--muted); letter-spacing:1px; display:block; margin-top:4px; font-style:italic; }

/* Nav links */
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links li { position:relative; }
.nav-links a { font-size:15.5px; font-weight:500; color:var(--text); padding:10px 17px; border-radius:8px; transition:all .25s; display:flex; align-items:center; gap:5px; letter-spacing:.3px; }
.nav-links a:hover { color:var(--gold); background:rgba(201,166,70,.06); }
.nav-links a.active { color:var(--gold); }
.nav-links .chevron { font-size:9px; opacity:.6; }

/* Dropdown */
.dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  background:var(--white); border:1px solid var(--border);
  border-radius:10px; min-width:200px;
  box-shadow:0 12px 40px var(--shadow2);
  opacity:0; pointer-events:none;
  transform:translateY(-8px); transition:all .25s; z-index:100;
}
.nav-links li:hover .dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown a { display:block; padding:11px 18px; font-size:13px; border-radius:0; color:var(--text); transition:all .2s; }
.dropdown a:hover { background:var(--beige); color:var(--gold); }
.dropdown a:first-child { border-radius:10px 10px 0 0; }
.dropdown a:last-child  { border-radius:0 0 10px 10px; }

/* Nav right */
.nav-right { display:flex; align-items:center; gap:13px; }
.lang-toggle-group {
  display:inline-flex; align-items:center;
  border-radius:9999px;
  border:1px solid rgba(201,166,70,0.45);
  background:rgba(255,255,255,0.7);
  padding:3px;
  box-shadow:0 2px 12px rgba(26,20,16,0.08);
  backdrop-filter:blur(8px);
}
.lang-opt {
  min-width:3.1rem;
  border:none;
  border-radius:9999px;
  padding:8px 16px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.14em;
  transition:all 0.3s ease;
  background:transparent;
  color:rgba(43,43,43,0.5);
  cursor:pointer;
}
.lang-opt.active {
  background:var(--gold);
  color:#1A1410;
  box-shadow:0 2px 10px rgba(201,166,70,0.45);
}
.lang-opt:not(.active):hover {
  color:var(--gold);
}
.btn-globe { background:none; border:none; cursor:pointer; font-size:18px; color:var(--muted); padding:6px; }
.btn-ar {
  font-family:var(--font-arabic); font-size:14px; padding:7px 16px;
  border:1.5px solid var(--border); background:transparent;
  color:var(--dark); cursor:pointer; border-radius:999px;
  transition:all .25s; font-weight:700;
}
.btn-ar:hover { border-color:var(--gold); color:var(--gold); }
.btn-plan {
  background:var(--gold); color:var(--white); border:none;
  padding:14px 30px; border-radius:999px;
  font-family:var(--font-sans); font-size:14.5px; font-weight:600;
  letter-spacing:.02em; cursor:pointer; transition:all .35s; white-space:nowrap;
  box-shadow:0 8px 24px -10px rgba(201,166,70,.6);
}
.btn-plan:hover { transform:translateY(-2px); box-shadow:0 0 0 6px rgba(201,166,70,.18), 0 14px 30px -10px rgba(201,166,70,.65); }

/* Mobile hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; border:none; background:none; padding:4px; }
.hamburger span { width:22px; height:2px; background:var(--dark); border-radius:2px; transition:all .3s; display:block; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height:100vh; padding-top:96px; padding-bottom:40px;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
/* Hero bg-islamic now handled by islamic-bg.css multi-layer system */

/* Mosque watermark */
#hero::before {
  content:''; position:absolute;
  right:3%; top:50%; transform:translateY(-50%);
  width:52%; height:90%;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Cpath d='M300 40 L310 80 L350 80 L350 100 L330 100 L330 120 L370 120 L370 100 L355 100 L355 80 L400 80 L400 420 L200 420 L200 80 L245 80 L245 100 L230 100 L230 120 L270 120 L270 100 L250 100 L250 80 L290 80 Z M220 140 L220 420 L380 420 L380 140 Z M240 160 L260 160 L260 200 L240 200 Z M280 160 L320 160 L320 200 L280 200 Z M340 160 L360 160 L360 200 L340 200 Z M240 220 L360 220 L360 300 L240 300 Z M240 320 L280 320 L280 420 L240 420 Z M320 320 L360 320 L360 420 L320 420 Z' fill='%23C9A646' opacity='0.07'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events:none; opacity:.7; z-index:0;
}

.hero-inner {
  max-width:1400px; margin:0 auto; width:100%; padding:0 24px;
  display:grid; grid-template-columns:1fr 1.2fr; gap:56px;
  align-items:center; position:relative; z-index:1;
}
@media (min-width:901px) {
  .hero-right { margin-left:auto; margin-right:0; }
}

/* Hero Left */
.hero-eyebrow {
  font-family:var(--font-sans); font-size:12px; font-weight:500;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:22px;
}
.hero-h1 { font-family:var(--font-serif); line-height:1.05; margin-bottom:22px; letter-spacing:-0.01em; }
.hero-h1 .line1 { font-size:clamp(38px,5vw,66px); font-weight:600; color:var(--dark); display:block; }
.hero-h1 .line2 { font-size:clamp(38px,5vw,66px); font-weight:600; font-style:italic; color:var(--gold); display:block; }
.hero-sub { font-size:15px; font-weight:300; color:var(--muted); line-height:1.75; margin-bottom:34px; max-width:480px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }

.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:var(--white);
  padding:14px 26px; border-radius:999px;
  font-family:var(--font-sans); font-size:13px; font-weight:500;
  letter-spacing:.02em; transition:all .35s ease; border:none; cursor:pointer;
  box-shadow:0 8px 24px -10px rgba(201,166,70,.6);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 0 0 6px rgba(201,166,70,.18), 0 14px 30px -10px rgba(201,166,70,.65); }

.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--text);
  padding:13px 25px; border-radius:999px; border:1px solid rgba(43,43,43,.18);
  font-family:var(--font-sans); font-size:13px; font-weight:500;
  letter-spacing:.02em; transition:all .35s ease; cursor:pointer;
}
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* Hero badges */
.hero-badges { display:flex; flex-wrap:wrap; gap:10px; }
.badge {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.7); backdrop-filter:blur(8px);
  padding:8px 14px; border-radius:30px;
  font-size:12px; font-weight:500; color:var(--dark);
  border:1px solid rgba(201,166,70,.2);
}
.badge-star { display:inline-flex; align-items:center; }

/* Hero Right — pill-shaped image cards (PEAK style) */
.hero-right {
  position:relative; right:0;
  display:flex; gap:12px; align-items:center; justify-content:flex-end;
  height:500px; width:100%; max-width:none; margin:0;
}
@media (min-width:768px) {
  .hero-right { height:600px; gap:16px; }
}
.hero-img-card {
  position:relative; overflow:hidden; flex:none;
  width:22%; height:60%;
  border-radius:9999px;
  border:4px solid var(--beige);
  box-shadow:0 20px 40px -15px rgba(0,0,0,.3);
  cursor:pointer;
  transition:transform .5s ease, box-shadow .5s ease, z-index 0s;
  text-decoration:none;
}
@media (min-width:768px) {
  .hero-img-card { height:70%; }
}
a.hero-img-card { display:block; }
.hero-img-card:hover {
  transform:scale(1.05); z-index:20;
  box-shadow:0 24px 48px -12px rgba(26,20,16,.38);
}
.hero-img-card:nth-child(1) { margin-top:48px; }
.hero-img-card:nth-child(2) { margin-top:-48px; }
.hero-img-card:nth-child(3) { margin-top:32px; }
.hero-img-card:nth-child(4) { margin-top:-32px; }
.hero-img-card img { width:100%; height:100%; object-fit:cover; }
.hero-img-card::after {
  content:''; position:absolute; inset:0;
  background:rgba(26,20,16,.1);
  border-radius:9999px;
  transition:background .5s ease;
}
.hero-img-card:hover::after { background:transparent; }

/* ═══════════════════════════════════════════
   SUB-BRANDS BAR
═══════════════════════════════════════════ */
.brands-bar {
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 4px 24px var(--shadow);
}
.brands-bar-inner {
  max-width:1320px; margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:repeat(4,1fr);
}
.brand-item {
  display:flex; align-items:center; gap:16px;
  padding:26px 20px; border-right:1px solid var(--border);
  transition:background .25s; cursor:pointer;
}
.brand-item:last-child { border-right:none; }
.brand-item:hover { background:var(--cream); }
.brand-icon {
  width:46px; height:46px; border-radius:50%;
  background:var(--beige); display:flex; align-items:center;
  justify-content:center; font-size:22px; flex-shrink:0;
  border:1.5px solid var(--border);
}
.brand-name {
  font-family:var(--font-sans); font-size:13px; font-weight:700;
  letter-spacing:1px; color:var(--dark); margin-bottom:3px;
}
.brand-name span { color:var(--gold); }
.brand-sub { font-size:12px; color:var(--muted); font-weight:300; }

/* ═══════════════════════════════════════════
   SIGNATURE EXPERIENCE
═══════════════════════════════════════════ */
#signature {
  background-color:var(--beige2);
  padding:88px 40px;
}
.sig-inner { max-width:1200px; margin:0 auto; }
.sig-header { text-align:center; margin-bottom:48px; }
.sig-tag {
  display:inline-flex; align-items:center; justify-content:center; gap:14px;
  font-family:var(--font-sans); font-size:12px; font-weight:500;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.sig-tag::before,.sig-tag::after { content:''; width:48px; height:1px; background:var(--gold); opacity:.7; }
.sig-title {
  font-family:var(--font-serif); font-size:clamp(30px,3.8vw,48px);
  font-weight:600; color:var(--dark); margin-bottom:10px;
}
.sig-sub { font-size:15px; color:var(--muted); font-weight:300; margin-bottom:18px; }
.sig-pill {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(201,166,70,.12); color:var(--gold-d);
  border:1.5px solid rgba(201,166,70,.3); border-radius:30px;
  padding:7px 20px; font-family:var(--font-sans);
  font-size:11px; font-weight:600; letter-spacing:1.5px;
}

/* Experience Cards Grid — centered 3-column layout */
.exp-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1080px;
  margin:48px auto 0;
}
.exp-card {
  background:var(--white); border-radius:24px; overflow:hidden;
  box-shadow:0 8px 32px -16px rgba(26,20,16,0.1), 0 2px 8px -2px rgba(26,20,16,0.06);
  border:1px solid rgba(201,166,70,0.1);
  transition:transform .4s ease,box-shadow .4s ease, border-color .4s ease; position:relative;
  display:flex; flex-direction:column;
}
a.exp-card-link { text-decoration:none; color:inherit; cursor:pointer; }
.exp-card:hover { transform:translateY(-6px); box-shadow:0 24px 48px -12px rgba(26,20,16,.18), 0 0 0 1px rgba(201,166,70,0.2); border-color:rgba(201,166,70,0.25); }
.exp-card-img { height:240px; overflow:hidden; position:relative; flex-shrink:0; }
.exp-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.exp-card:hover .exp-card-img img { transform:scale(1.06); }
.exp-card-body { padding:26px 24px 28px; flex:1; display:flex; flex-direction:column; }
.exp-card-title {
  font-family:var(--font-sans); font-size:12px; font-weight:700;
  letter-spacing:1.8px; color:var(--dark); margin-bottom:10px; text-transform:uppercase;
}
.exp-card-text { font-size:14px; color:var(--muted); line-height:1.65; font-weight:300; }
.exp-card-list { margin-top:6px; }
.exp-card-list li { font-size:12px; color:var(--muted); padding:2px 0; display:flex; align-items:center; gap:6px; }
.exp-card-list li::before { content:'·'; color:var(--gold); font-size:16px; line-height:1; }
.exp-card-list .highlight { color:var(--gold); font-weight:500; }

/* CTA Card */
.exp-cta-card {
  background:var(--dark2); border-radius:20px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:40px 32px;
  box-shadow:0 18px 50px -22px rgba(0,0,0,.35); gap:14px;
  min-height:100%;
}
.exp-cta-card .cta-title {
  font-family:var(--font-serif); font-size:clamp(24px,2.5vw,30px); font-weight:700;
  color:var(--white); line-height:1.2; letter-spacing:-0.01em;
}
.exp-cta-card .cta-title span { color:var(--gold-l); }
.exp-cta-card .cta-sub { font-size:14px; color:rgba(255,255,255,.62); font-weight:300; line-height:1.65; max-width:240px; }
.btn-cta {
  background:var(--gold); color:var(--white); border:none;
  padding:14px 28px; border-radius:999px;
  font-family:var(--font-sans); font-size:13px; font-weight:500;
  letter-spacing:.02em; cursor:pointer; transition:all .35s; width:100%; max-width:220px; margin-top:8px;
  box-shadow:0 8px 24px -10px rgba(201,166,70,.6);
}
.btn-cta:hover { transform:translateY(-2px); box-shadow:0 0 0 6px rgba(201,166,70,.18), 0 14px 30px -10px rgba(201,166,70,.65); }

/* ═══════════════════════════════════════════
   DARK BRANDS SECTION
═══════════════════════════════════════════ */
#brands-dark { display:grid; grid-template-columns:repeat(4,1fr); min-height:340px; }
.brand-dark-card { position:relative; overflow:hidden; cursor:pointer; display:block; text-decoration:none; color:inherit; }
.brand-dark-card img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; min-height:340px; }
.brand-dark-card:hover img { transform:scale(1.06); }
.brand-dark-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(26,20,16,.88) 0%,rgba(26,20,16,.3) 55%,rgba(26,20,16,.5) 100%);
  transition:background .35s;
}
.brand-dark-card:hover .brand-dark-overlay {
  background:linear-gradient(to top,rgba(26,20,16,.92) 0%,rgba(26,20,16,.45) 55%,rgba(26,20,16,.55) 100%);
}
.brand-dark-content { position:absolute; bottom:0; left:0; right:0; padding:28px 26px; }
.brand-dark-name {
  font-family:var(--font-sans); font-size:13px; font-weight:700;
  letter-spacing:2px; color:var(--white); margin-bottom:6px; text-transform:uppercase;
}
.brand-dark-name span { color:var(--gold-l); }
.brand-dark-sub { font-size:13px; color:rgba(255,255,255,.7); font-weight:300; margin-bottom:14px; line-height:1.5; }
.brand-dark-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; color:var(--gold-l);
  font-family:var(--font-sans); letter-spacing:.5px; transition:gap .25s;
}
.brand-dark-card:hover .brand-dark-link { gap:10px; }
.brand-dark-icon {
  position:absolute; top:22px; left:22px;
  background:rgba(201,166,70,.25); backdrop-filter:blur(6px);
  border:1px solid rgba(220,192,116,.35);
  padding:8px 12px; border-radius:8px;
  font-size:11px; font-weight:700; letter-spacing:2px;
  font-family:var(--font-sans); color:var(--gold-l);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about {
  background-color:var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%23C9A646' stroke-width='0.5' opacity='0.06'><circle cx='50' cy='50' r='40'/><circle cx='0' cy='0' r='40'/><circle cx='100' cy='0' r='40'/><circle cx='0' cy='100' r='40'/><circle cx='100' cy='100' r='40'/><path d='M50 10 L50 90 M10 50 L90 50' opacity='0.4'/></g></svg>");
  background-size:100px 100px;
  padding:88px 40px;
  scroll-margin-top:96px;
}
#contact { scroll-margin-top:96px; }
#signature { scroll-margin-top:96px; }
.about-inner { max-width:780px; margin:0 auto; text-align:center; }
.about-inner .sec-eyebrow {
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.about-divider {
  display:block; width:96px; height:1px;
  background:rgba(201,166,70,.7); margin:24px auto 0;
}
.about-text { margin-top:36px; }
.about-text p {
  font-size:15px; font-weight:300; color:var(--muted);
  line-height:1.85; margin-bottom:18px;
}
.about-text p:last-child { margin-bottom:0; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
  background-color:var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><g fill='none' stroke='%23C9A646' stroke-width='0.5' opacity='0.06'><path d='M45 15 C65 15, 80 30, 80 45 C80 60, 65 75, 45 75 C25 75, 10 60, 10 45 C10 30, 25 15, 45 15 Z'/><path d='M45 25 C60 25, 70 34, 70 45 C70 56, 60 65, 45 65 C30 65, 20 56, 20 45 C20 34, 30 25, 45 25 Z'/></g></svg>");
  background-size:90px 90px;
  padding:80px 40px;
}
.test-inner { max-width:1320px; margin:0 auto; }
.section-header { text-align:center; margin-bottom:50px; }
.sec-eyebrow {
  font-family:var(--font-sans); font-size:12px; font-weight:500;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; display:block;
}
.sec-title {
  font-family:var(--font-serif); font-size:clamp(30px,3.4vw,46px);
  font-weight:600; color:var(--dark);
}
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.test-card {
  background:var(--white); border-radius:20px; padding:32px;
  border:1px solid rgba(201,166,70,.12);
  transition:all .4s ease;
  box-shadow:0 8px 32px -16px rgba(26,20,16,0.1), 0 2px 8px -2px rgba(26,20,16,0.06);
}
.test-card:hover { transform:translateY(-4px); box-shadow:0 20px 40px -12px rgba(26,20,16,.15), 0 0 0 1px rgba(201,166,70,0.2); border-color:rgba(201,166,70,0.25); }
.test-stars { color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.test-text {
  font-family:var(--font-serif); font-size:18px; font-weight:400;
  color:var(--text); line-height:1.7; font-style:italic; margin-bottom:22px;
}
.test-author { display:flex; align-items:center; gap:12px; }
.test-av {
  width:42px; height:42px; border-radius:50%;
  background:var(--beige); border:2px solid var(--gold-l);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-serif); font-weight:700; font-size:18px; color:var(--gold-d);
}
.test-name { font-weight:500; font-size:14px; }
.test-loc { font-size:11px; color:var(--muted); letter-spacing:1px; margin-top:2px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact {
  background-color:var(--beige);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'><g fill='none' stroke='%23C9A646' stroke-width='0.5' opacity='0.06'><path d='M35 5 L43 20 L60 22 L48 34 L51 51 L35 43 L19 51 L22 34 L10 22 L27 20 Z'/></g></svg>");
  background-size:70px 70px;
  padding:80px 40px;
}
.contact-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:start; }
.contact-left { text-align:center; }
.contact-left .sec-title { text-align:center; margin-bottom:14px; }
.contact-left .sec-eyebrow { display:flex; align-items:center; justify-content:center; gap:8px; }
.contact-left p { font-size:15px; color:var(--muted); line-height:1.8; margin-bottom:36px; font-weight:300; max-width:420px; margin-left:auto; margin-right:auto; }
.c-details { display:flex; flex-direction:column; align-items:center; gap:4px; }
.c-detail { display:flex; align-items:center; gap:16px; margin-bottom:16px; text-align:left; width:100%; max-width:340px; }
.c-icon {
  width:48px; height:48px; background:var(--gold); border-radius:14px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 8px 20px -8px rgba(201,166,70,.55);
}
.c-icon svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.c-info .c-label { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:3px; }
.c-info .c-val { font-size:14px; font-weight:500; color:var(--dark); }
.contact-form { background:var(--white); border-radius:16px; padding:44px; box-shadow:0 8px 40px var(--shadow2); }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.f-group { margin-bottom:20px; }
.f-label { display:block; font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:600; margin-bottom:8px; }
.f-input,.f-select,.f-textarea {
  width:100%; padding:13px 16px; background:var(--cream);
  border:1.5px solid var(--border); border-radius:10px;
  font-family:var(--font-sans); font-size:14px; color:var(--dark); outline:none;
  transition:border-color .25s,box-shadow .25s;
}
.f-input:focus,.f-select:focus,.f-textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,166,70,.12); }
.f-textarea { height:110px; resize:none; }
.f-select {
  appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A646' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
}
.btn-send {
  width:100%; padding:15px; background:var(--dark); color:var(--white);
  border:none; border-radius:999px;
  font-family:var(--font-sans); font-size:13px; font-weight:500;
  letter-spacing:.04em; cursor:pointer; transition:all .35s;
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center;
}
.btn-send::after { content:''; position:absolute; inset:0; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; z-index:0; }
.btn-send:hover::after { transform:scaleX(1); }
.btn-send span { position:relative; z-index:1; display:inline-flex; align-items:center; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background:var(--dark); padding:44px 40px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:24px;
}
.foot-left { display:flex; align-items:center; gap:16px; flex:1; min-width:240px; }
.foot-logo-mark { width:56px; height:56px; object-fit:contain; border-radius:50%; flex-shrink:0; }
.foot-desc { font-size:13px; color:rgba(255,255,255,.45); line-height:1.65; max-width:320px; }
.foot-center { text-align:center; }
.foot-connect { font-family:var(--font-sans); font-size:12px; font-weight:500; letter-spacing:.32em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:14px; }
.foot-socials { display:flex; gap:14px; justify-content:center; }
.soc-icon {
  width:44px; height:44px; border-radius:50%;
  background:transparent; border:1px solid rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.75); transition:all .3s; cursor:pointer;
}
.soc-icon svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.soc-icon:hover { background:var(--gold); border-color:var(--gold); color:var(--white); transform:translateY(-2px); }
.btn-wa-footer {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--gold); color:var(--white);
  padding:14px 26px; border-radius:999px; border:none; cursor:pointer;
  font-family:var(--font-sans); font-size:13px; font-weight:500;
  letter-spacing:.02em; transition:all .35s; white-space:nowrap;
  box-shadow:0 8px 24px -10px rgba(201,166,70,.6);
}
.btn-wa-footer svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.btn-wa-footer:hover { transform:translateY(-2px); box-shadow:0 0 0 6px rgba(201,166,70,.18), 0 14px 30px -10px rgba(201,166,70,.65); }
.foot-copy {
  width:100%; text-align:center;
  font-size:12px; color:rgba(255,255,255,.2);
  border-top:1px solid rgba(255,255,255,.06); margin-top:12px; padding-top:16px;
  font-family:var(--font-sans); letter-spacing:.5px;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:800;
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,#25D366 0%,#128C7E 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(18,140,126,.4);
  transition:transform .3s, box-shadow .3s; text-decoration:none;
  animation:waPulse 2.5s infinite;
  border:2px solid rgba(255,255,255,.25);
}
.wa-float:hover { transform:scale(1.08); box-shadow:0 12px 36px rgba(18,140,126,.5); }
.wa-float svg { width:26px; height:26px; fill:white; }

/* Inline icon utilities */
.icon { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon svg { width:1em; height:1em; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.icon-sm svg { width:14px; height:14px; }
.icon-md svg { width:18px; height:18px; }
.icon-gold { color:var(--gold); }
.btn-globe svg { width:20px; height:20px; stroke:var(--muted); fill:none; stroke-width:1.75; }
.btn-globe:hover svg { stroke:var(--gold); }
.badge-star svg { width:14px; height:14px; stroke:var(--gold); fill:none; stroke-width:1.5; flex-shrink:0; }
.sec-eyebrow .eyebrow-star svg { width:14px; height:14px; stroke:var(--gold); fill:none; stroke-width:1.5; }
.btn-primary .icon-arrow svg,
.btn-secondary .icon-sparkle svg,
.btn-send .icon-arrow svg { stroke:currentColor; fill:none; stroke-width:2; }

/* ═══════════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════════ */
.mobile-overlay {
  display:none; position:fixed; inset:0;
  background:var(--cream); z-index:850;
  flex-direction:column; align-items:center; justify-content:center; gap:28px;
}
.mobile-overlay.open { display:flex; }
.mobile-overlay a {
  font-family:var(--font-serif); font-size:30px; font-weight:600;
  color:var(--dark); letter-spacing:-0.01em;
}
.mobile-overlay a:hover { color:var(--gold); }
.mob-close { position:absolute; top:24px; right:28px; font-size:26px; background:none; border:none; cursor:pointer; color:var(--dark); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal   { opacity:0; transform:translateY(32px); transition:opacity .65s ease,transform .65s ease; }
.reveal.vis { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-32px); transition:opacity .65s ease,transform .65s ease; }
.reveal-l.vis { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(32px); transition:opacity .65s ease,transform .65s ease; }
.reveal-r.vis { opacity:1; transform:translateX(0); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes waPulse {
  0%,100% { box-shadow:0 8px 28px rgba(18,140,126,.4); }
  50%      { box-shadow:0 8px 40px rgba(18,140,126,.65), 0 0 0 8px rgba(37,211,102,.12); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.03); }
}
.animate-slow-spin { animation: slow-spin 20s linear infinite; }
.animate-breathe { animation: breathe 6s ease-in-out infinite; }
.hero-left .hero-eyebrow { animation:fadeUp .8s ease .1s both; }
.hero-left .hero-h1      { animation:fadeUp .8s ease .25s both; }
.hero-left .hero-sub     { animation:fadeUp .8s ease .4s both; }
.hero-left .hero-btns    { animation:fadeUp .8s ease .5s both; }
.hero-left .hero-badges  { animation:fadeUp .8s ease .6s both; }
.hero-right              { animation:fadeUp .9s ease .3s both; }

/* RTL / Arabic layout */
body.lang-ar,
[dir="rtl"] body {
  font-family: var(--font-sans), 'Segoe UI', Tahoma, Arial, sans-serif;
}
body.lang-ar [data-i18n],
body.lang-ar .hero-h1,
body.lang-ar .sec-title,
body.lang-ar .sig-title,
body.lang-ar .about-text,
body.lang-ar .exp-card-text,
body.lang-ar .contact-left p,
body.lang-ar .f-label,
body.lang-ar .logo-tag {
  font-family: var(--font-arabic), var(--font-sans), 'Segoe UI', Tahoma, sans-serif;
}
[dir="rtl"] .hero-h1 .line1,
[dir="rtl"] .hero-h1 .line2,
[dir="rtl"] .sec-title,
[dir="rtl"] .sig-title,
[dir="rtl"] .cta-title,
[dir="rtl"] .about-title {
  font-family: var(--font-arabic), var(--font-serif), serif;
}
[dir="rtl"] .logo-exp {
  font-family: var(--font-arabic), serif;
}
[dir="rtl"] .hero-left { text-align: right; }
[dir="rtl"] .hero-btns { justify-content: flex-start; }
[dir="rtl"] .hero-badges { justify-content: flex-start; }
[dir="rtl"] .about-text { text-align: right; }
[dir="rtl"] .contact-left { text-align: center; }
[dir="rtl"] .c-detail { flex-direction: row-reverse; }
[dir="rtl"] .c-info { text-align: right; }
[dir="rtl"] .f-label { text-align: right; display: block; }
[dir="rtl"] .contact-form { text-align: right; }
[dir="rtl"] .btn-primary .icon-arrow svg,
[dir="rtl"] .btn-send .icon-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .logo { flex-direction: row-reverse; }
[dir="rtl"] footer { direction: rtl; }
[dir="rtl"] .foot-left { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .foot-desc { text-align: right; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
═══════════════════════════════════════════ */
@media(max-width:1100px) {
  .exp-grid { grid-template-columns:repeat(2,1fr); max-width:720px; gap:20px; }
  .exp-cta-card { grid-column:span 2; min-height:280px; }
  #brands-dark { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; gap:40px; text-align:center; }
  .hero-left { display:flex; flex-direction:column; align-items:center; }
  .hero-sub { margin-left:auto; margin-right:auto; }
  .hero-btns { justify-content:center; }
  .hero-badges { justify-content:center; }
  .hero-right { height:380px; max-width:480px; }
  .brands-bar-inner { grid-template-columns:repeat(2,1fr); }
  .test-grid { grid-template-columns:1fr; }
  .contact-inner { grid-template-columns:1fr; }
  footer { flex-direction:column; text-align:center; }
  .foot-left { flex-direction:column; align-items:center; text-align:center; }
}
@media(max-width:768px) {
  nav { padding:0 16px; height:68px; }
  .nav-links,.nav-right .btn-ar,.nav-right .btn-globe,.nav-right .nav-plan-desktop { display:none; }
  .hamburger { display:flex; }
  .logo-mark { width:52px; height:52px; }
  .foot-logo-mark { width:48px; height:48px; }
  .logo-peak { font-size:17px; }
  .logo-exp { font-size:11px; }
  .logo-tag { font-size:8px; }
  #hero { min-height:100vh; padding-top:68px; }
  .hero-inner { padding:24px 16px 40px; gap:32px; }
  #signature,#about,#testimonials,#contact { padding:56px 16px; scroll-margin-top:72px; }
  .exp-grid { grid-template-columns:1fr; max-width:100%; gap:20px; }
  .exp-cta-card { grid-column:span 1; min-height:auto; padding:32px 24px; }
  #brands-dark { grid-template-columns:1fr 1fr; }
  .brands-bar-inner { grid-template-columns:1fr 1fr; }
  footer { padding:32px 16px; flex-direction:column; text-align:center; align-items:center; }
  .foot-left { flex-direction:column; align-items:center; text-align:center; min-width:0; }
  .foot-desc { max-width:100%; }
  .btn-wa-footer { width:100%; max-width:340px; justify-content:center; }
  .contact-form { padding:24px 18px; }
  .f-row { grid-template-columns:1fr; }
  .wa-float { bottom:18px; right:18px; width:50px; height:50px; }
  .mobile-overlay { padding:80px 24px 40px; overflow-y:auto; }
  .mobile-overlay a { font-size:26px; }
  .mobile-overlay .btn-plan { width:100%; max-width:280px; text-align:center; justify-content:center; }
  .mobile-overlay .mob-lang-btn {
    font-family:var(--font-arabic); font-size:16px; padding:10px 24px;
    border:1.5px solid var(--border); background:transparent;
    color:var(--dark); cursor:pointer; border-radius:999px;
    transition:all .25s; font-weight:700;
  }
  .mobile-overlay .mob-lang-btn:hover { border-color:var(--gold); color:var(--gold); }
  /* Hero — smaller buttons on mobile */
  #hero .hero-btns { gap:10px; margin-bottom:28px; justify-content:center; }
  #hero .hero-btns .btn-primary,
  #hero .hero-btns .btn-secondary {
    padding:10px 18px;
    font-size:11px;
    width:auto;
    max-width:none;
  }
  #hero .hero-btns .btn-primary .icon svg,
  #hero .hero-btns .btn-secondary .icon svg { width:14px; height:14px; }
  /* Hero — larger pill images on mobile */
  .hero-right {
    height:min(440px,92vw);
    max-width:100%;
    gap:10px;
    margin-top:8px;
  }
  .hero-img-card {
    width:23%;
    height:76%;
    border-width:3px;
  }
  .hero-img-card:nth-child(1) { margin-top:36px; }
  .hero-img-card:nth-child(2) { margin-top:-36px; }
  .hero-img-card:nth-child(3) { margin-top:28px; }
  .hero-img-card:nth-child(4) { margin-top:-28px; }
}
@media(max-width:480px) {
  .logo-text-wrap { max-width:calc(100vw - 100px); }
  .logo-peak { font-size:15px; letter-spacing:0.5px; }
  .hero-h1 .line1,.hero-h1 .line2 { font-size:clamp(32px,9vw,44px); }
  .hero-sub { font-size:14px; }
  .hero-btns { flex-direction:row; flex-wrap:wrap; width:auto; align-items:center; justify-content:center; }
  .hero-btns .btn-primary,.hero-btns .btn-secondary { width:auto; justify-content:center; padding:9px 16px; font-size:10.5px; }
  .hero-right { height:min(480px,95vw); max-width:100%; gap:8px; }
  .hero-img-card { border-width:3px; width:24%; height:78%; }
  .hero-img-card:nth-child(1) { margin-top:32px; }
  .hero-img-card:nth-child(2) { margin-top:-32px; }
  .hero-img-card:nth-child(3) { margin-top:24px; }
  .hero-img-card:nth-child(4) { margin-top:-24px; }
  .hero-badges { gap:8px; }
  .badge { font-size:11px; padding:6px 12px; }
  .exp-card-img { height:200px; }
  .exp-card-body { padding:20px 18px 22px; }
  .sig-title,.sec-title { font-size:clamp(26px,7vw,34px); }
  #brands-dark { grid-template-columns:1fr; }
  .brands-bar-inner { grid-template-columns:1fr; }
  .brand-item { border-right:none; border-bottom:1px solid var(--border); padding:20px 16px; }
  .test-card { padding:24px 20px; }
  .test-text { font-size:16px; }
  .c-detail { max-width:100%; }
  .gold-rule::before,.gold-rule::after { width:32px; }
}
