:root {
  /* Palette from brief: أبيض، كريمي، رصاصي غامق، تركواز، أسود، بيج، كاكاوي */
  --gold: #C9A84C;
  --gold-light: #E0C77A;
  --navy: #1B2A4A;
  --navy-dark: #111B33;
  --cream: #F8F3E8;
  --cream-dark: #EFE8D8;
  --turquoise: #2B8C8C;
  --charcoal: #3A3A3A;
  --black: #111111;
  --taupe: #8B7D6B;
  --beige: #C4B59D;
  --cocoa: #8B6F5C;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.15);

  --font: 'Cairo', 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin: 8px 0 12px; color: var(--navy); }
.section-head p { color: var(--ink-soft); max-width: 540px; }
.section-head.center p { margin: 0 auto; }

.kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: #B5953E; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-block { width: 100%; }

/* ======== NAV ======== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 16px 0;
}
.nav.scrolled {
  background: rgba(248,243,232,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .brand { color: var(--navy); }
.brand-mark {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.nav.scrolled .brand-mark { color: var(--gold); }
.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-cta:hover { background: #B5953E; transform: translateY(-1px); }
.nav.scrolled .nav-cta { color: var(--white); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav.scrolled .nav-burger span { background: var(--navy); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
  }
  .nav.open .nav-cta {
    display: flex;
    position: absolute;
    top: calc(100% + 200px);
    right: 24px;
  }
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.6) 50%, rgba(43,140,140,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  font-weight: 700;
  font-size: 0.65em;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { color: rgba(255,255,255,0.8); }
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ======== ABOUT ======== */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-list { margin-top: 24px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 600;
}
.about-list li svg { color: var(--gold); flex-shrink: 0; }
.about-media { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
  aspect-ratio: 1;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { position: relative; bottom: 0; right: 0; width: 70%; margin-top: 16px; }
}

/* ======== PRODUCTS ======== */
.products { padding: 100px 0; background: var(--white); }
.products-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.cat-btn {
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--cream);
  transition: var(--transition);
  border: 2px solid transparent;
}
.cat-btn:hover { border-color: var(--gold); color: var(--navy); }
.cat-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img {
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-info h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 10px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}
.product-price .currency { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.product-colors {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.products-note { text-align: center; color: var(--taupe); font-size: 0.85rem; margin-top: 32px; }

/* ======== FEATURES ======== */
.features { padding: 100px 0; background: var(--navy); color: var(--white); }
.features .section-head h2 { color: var(--white); }
.features .section-head p { color: rgba(255,255,255,0.6); }
.features .kicker { color: var(--gold); background: rgba(201,168,76,0.1); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--gold);
}
.feature-card h3 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ======== GALLERY ======== */
.gallery { padding: 60px 0; background: var(--cream); overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 25s linear infinite;
}
.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-track:hover { animation-play-state: paused; }

/* ======== CONTACT ======== */
.contact { padding: 100px 0; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-info { padding: 48px; background: var(--navy); color: var(--white); }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-line:hover { color: var(--gold); }
.contact-line svg { flex-shrink: 0; opacity: 0.7; }
.contact-form-wrap { padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--cream);
  direction: rtl;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { padding: 32px; }
  .contact-form-wrap { padding: 32px; }
}

/* ======== FOOTER ======== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.5); padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}
.footer-brand .brand-mark { color: var(--gold); }
.footer-copy { font-size: 0.85rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

/* ======== FLOAT WHATSAPP ======== */
.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 12px; }
  .product-info h4 { font-size: 0.85rem; }
}
