:root {
  --bg: #061f24;
  --bg-2: #082d32;
  --text: #f8f3e9;
  --muted: #b9c7c6;
  --gold: #d9b46a;
  --gold-2: #f2d596;
  --cream: #fff8eb;
  --card: rgba(255, 255, 255, 0.08);
  --card-2: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 180, 106, .18), transparent 32%),
    radial-gradient(circle at 86% 15%, rgba(63, 135, 130, .24), transparent 30%),
    linear-gradient(145deg, #061f24 0%, #082d32 52%, #04181b 100%);
  z-index: -2;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(135deg, #fff 1px, transparent 1px);
  background-size: 54px 54px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 31, 36, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #082d32;
  font-weight: 900;
  font-size: 28px;
  box-shadow: 0 14px 32px rgba(217, 180, 106, .25);
}
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: 18px; font-weight: 900; }
.brand-text small { color: var(--muted); font-weight: 500; letter-spacing: .4px; }
.nav { display: flex; align-items: center; gap: 24px; color: #e9f1ee; font-weight: 700; }
.nav a { opacity: .88; transition: .25s ease; }
.nav a:hover { color: var(--gold-2); opacity: 1; }
.menu-toggle { display: none; background: transparent; border: 0; width: 46px; height: 46px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px auto; transition: .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { padding-top: 120px; min-height: calc(100vh - 82px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .4px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); border-radius: 999px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 84px); line-height: 1.05; margin-bottom: 24px; font-weight: 900; }
h1 span { color: var(--gold-2); font-size: clamp(26px, 3.6vw, 48px); }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.18; margin-bottom: 18px; font-weight: 900; }
h3 { font-size: 22px; margin-bottom: 10px; }
.hero-content p, .section-head p, .section-copy p, .contact-card p, .banner p { color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #082d32; box-shadow: 0 16px 40px rgba(217, 180, 106, .22); }
.btn-outline { border-color: rgba(255, 255, 255, .22); color: #fff; background: rgba(255,255,255,.05); }
.btn-light { background: var(--cream); color: #082d32; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row div {
  min-width: 138px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  border-radius: 20px;
  padding: 14px 16px;
}
.trust-row strong { display: block; color: var(--gold-2); font-size: 20px; line-height: 1.2; }
.trust-row span { color: var(--muted); font-size: 14px; }

.hero-card { position: relative; min-height: 530px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 999px; filter: blur(1px); opacity: .85; }
.orb-one { width: 280px; height: 280px; background: radial-gradient(circle, rgba(217, 180, 106, .36), transparent 66%); top: 30px; right: 0; }
.orb-two { width: 240px; height: 240px; background: radial-gradient(circle, rgba(112, 190, 177, .26), transparent 66%); bottom: 10px; left: 20px; }
.bottle-card {
  position: relative;
  width: min(430px, 100%);
  min-height: 480px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  overflow: hidden;
}
.bottle-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(217, 180, 106, .24);
}
.perfume-icon { color: var(--gold-2); width: 210px; max-width: 70%; margin-bottom: 28px; }
.perfume-icon svg { width: 100%; display: block; }
.bottle-card h2 { font-size: 32px; color: #fff8eb; margin-bottom: 6px; text-align: center; }
.bottle-card p { color: var(--muted); text-align: center; margin-bottom: 12px; }
.bottle-card span { color: var(--gold-2); font-weight: 900; }

.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: start; }
.info-panel, .product-card, .feature, .contact-card, .contact-form {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.info-panel { padding: 34px; }
.info-panel h3 { color: var(--gold-2); }
dl { margin: 0; display: grid; gap: 14px; }
dl div { display: grid; grid-template-columns: 160px 1fr; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
dt { color: var(--muted); font-weight: 700; }
dd { margin: 0; font-weight: 900; }
.status { color: #0d2f31; background: #c7ffdc; padding: 4px 12px; border-radius: 999px; }
.section-head { max-width: 720px; margin-bottom: 38px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { padding: 28px; min-height: 230px; transition: .25s ease; }
.product-card:hover { transform: translateY(-8px); border-color: rgba(217,180,106,.45); background: var(--card-2); }
.product-icon { display: grid; place-items: center; width: 54px; height: 54px; color: #082d32; background: var(--gold-2); border-radius: 18px; font-size: 22px; margin-bottom: 20px; }
.product-card p, .feature p { color: var(--muted); margin: 0; }

.banner { padding: 48px 0; }
.banner-inner {
  border-radius: 36px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(217,180,106,.22), rgba(8,45,50,.9)),
    radial-gradient(circle at left, rgba(255,255,255,.16), transparent 42%);
  border: 1px solid rgba(217,180,106,.28);
  box-shadow: var(--shadow);
}
.banner h2 { margin-bottom: 10px; }

.activity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.activity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
}
.activity strong {
  direction: ltr;
  color: #082d32;
  background: var(--gold-2);
  border-radius: 999px;
  padding: 6px 12px;
  min-width: 74px;
  text-align: center;
}
.activity span { font-weight: 800; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.features { display: grid; gap: 16px; }
.feature { padding: 24px; display: grid; grid-template-columns: 62px 1fr; column-gap: 14px; align-items: start; }
.feature span { grid-row: span 2; width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(217,180,106,.14); color: var(--gold-2); font-weight: 900; }
.feature h3 { margin-bottom: 4px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-card, .contact-form { padding: 34px; }
.contact-links { display: grid; gap: 12px; margin-top: 26px; }
.contact-links a { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.contact-links strong { display: block; color: var(--gold-2); }
.contact-links span { direction: ltr; display: inline-block; color: #fff; }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: #fff; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 13px 15px;
  outline: none;
}
select option { color: #082d32; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,180,106,.11); }
::placeholder { color: rgba(255,255,255,.48); }
.form-note { color: var(--muted); font-size: 14px; margin: -6px 0 0; }

.site-footer { padding: 64px 0 24px; background: rgba(0,0,0,.18); border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 28px; }
.footer-grid p { color: var(--muted); margin-bottom: 8px; }
.footer-grid h3 { color: var(--gold-2); }
.footer-grid a:not(.brand) { display: block; color: var(--muted); margin-bottom: 8px; }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(26px); transition: .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .two-col, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 78px; }
  .hero-card { min-height: 430px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(6, 31, 36, .96);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px; border-radius: 14px; }
  .nav a:hover { background: rgba(255,255,255,.07); }
  .menu-toggle { display: block; }
  .product-grid, .activity-list { grid-template-columns: 1fr; }
  .banner-inner { padding: 30px; align-items: flex-start; flex-direction: column; }
  .trust-row div { flex: 1 1 120px; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
  .feature { grid-template-columns: 1fr; }
  .feature span { margin-bottom: 14px; }
  .copyright { flex-direction: column; }
}
