/* ==========================================
   محل الأمانة للحوم - ملف التصميم
   ========================================== */

:root {
  --primary: #d62828;
  --primary-dark: #b01e1e;
  --primary-light: #ff4d4d;
  --gold: #f4a259;
  --dark: #1a1410;
  --dark-2: #241c15;
  --light: #fff8f0;
  --gray: #6b6259;
  --green: #2d9d5c;
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Cairo", "Tajawal", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== شريط تقدم التمرير ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

/* ========== زر العودة للأعلى ========== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ========== شاشة التحميل ========== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  color: #fff;
}

.loader-icon {
  font-size: 56px;
  color: var(--gold);
  animation: drumspin 1.4s ease-in-out infinite;
}

@keyframes drumspin {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(-8deg); }
}

.loader-text {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-top: 12px;
  letter-spacing: 1px;
}

.loader-bar {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 4px;
  animation: loadslide 1.2s ease-in-out infinite;
}

@keyframes loadslide {
  0% { transform: translateX(-150%); }
  100% { transform: translateX(400%); }
}

/* ========== شريط التنقل ========== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.08);
}

.logo-text strong {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #f5efe9;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 40%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* الأزرار */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: right 0.5s ease;
}

.btn:hover::before {
  right: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 25px rgba(214, 40, 40, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(214, 40, 40, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 17px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

/* الهامبرغر */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== القسم الرئيسي ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 20%, var(--dark-2) 0%, var(--dark) 60%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(244, 162, 89, 0.08) 2px, transparent 2px);
  background-size: 45px 45px;
  animation: patternmove 25s linear infinite;
}

@keyframes patternmove {
  0% { background-position: 0 0; }
  100% { background-position: 45px 45px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 162, 89, 0.15);
  border: 1px solid rgba(244, 162, 89, 0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 162, 89, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(244, 162, 89, 0); }
}

.hero-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-title .highlight-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-light);
  display: inline-block;
}

.hero-subtitle {
  font-size: 17px;
  color: #cfc6bc;
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.hero-stats {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  color: var(--gold);
  margin-right: 2px;
}

.stat-label {
  font-size: 14px;
  color: #cfc6bc;
  margin-top: 6px;
}

/* الجانب البصري */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(244, 162, 89, 0.3);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  object-fit: cover;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  z-index: 3;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 22px;
  color: var(--gold);
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.floating-card span {
  font-size: 12px;
  color: #cfc6bc;
}

.card-1 { top: 6%; right: -5%; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -12%; animation-delay: 1s; }
.card-3 { bottom: -2%; right: 8%; animation-delay: 2s; }

/* موجة أسفل الهيرو */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
}

/* ========== الأقسام العامة ========== */
.section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(214, 40, 40, 0.08);
  color: var(--primary);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.4;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
}

.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 10px;
  background: rgba(244, 162, 89, 0.3);
  border-radius: 5px;
  z-index: -1;
}

.section-text {
  color: var(--gray);
  font-size: 16px;
}

/* ========== من نحن ========== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.about-image-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 20, 16, 0.5));
  z-index: 1;
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.about-visual:hover .about-image-main img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-dark);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.exp-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.about-content .section-tag {
  margin-bottom: 20px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content .section-text {
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.about-features i {
  color: var(--green);
  font-size: 20px;
}

/* ========== المنتجات ========== */
.products {
  background: linear-gradient(180deg, var(--light), #fff);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe9e0, #ffd6c4);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.12) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(214, 40, 40, 0.35);
}

.product-badge-green {
  background: linear-gradient(135deg, #2d9d5c, #1f7a45);
  box-shadow: 0 5px 15px rgba(45, 157, 92, 0.35);
}

.product-badge-gold {
  background: linear-gradient(135deg, var(--gold), #e08a3c);
  box-shadow: 0 5px 15px rgba(244, 162, 89, 0.35);
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 18px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}

.price-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}

/* ========== لماذا نحن ========== */
.why {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(214, 40, 40, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.why::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(244, 162, 89, 0.12);
  border-radius: 50%;
  filter: blur(60px);
}

.why .section-tag {
  background: rgba(244, 162, 89, 0.15);
  color: var(--gold);
}

.why .section-title {
  color: #fff;
}

.why .section-title .highlight {
  color: var(--gold);
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(244, 162, 89, 0.4);
  transform: translateY(-8px);
}

.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.3), rgba(244, 162, 89, 0.3));
  border: 1px solid rgba(244, 162, 89, 0.4);
  font-size: 30px;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(10deg);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-card p {
  color: #cfc6bc;
  font-size: 14px;
}

/* ========== بانر العروض ========== */
.offer-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: "\f2e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: 180px;
  opacity: 0.08;
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.offer-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-content h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 10px;
}

.offer-content h2 .highlight {
  color: var(--gold);
  font-size: 1.3em;
}

.offer-content p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.offer-clock {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 25px 35px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.offer-clock > i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 8px;
}

.offer-clock > span {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cd-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 70px;
}

.cd-box span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}

.cd-box small {
  font-size: 12px;
  opacity: 0.85;
}

.cd-sep {
  font-size: 24px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== معرض الصور ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 20, 16, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  transform: translateY(15px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ========== آراء العملاء ========== */
.testimonials {
  background: linear-gradient(180deg, #fff, var(--light));
}

.testimonials-slider {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 45px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.testimonial-card.active {
  display: block;
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  color: var(--dark-2);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots button.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* ========== اتصل بنا ========== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(214, 40, 40, 0.08);
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.contact-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--gray);
  font-size: 14px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contact-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-5px) scale(1.05);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fafafa;
  transition: var(--transition);
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.form-success.show {
  display: block;
  animation: fadeSlide 0.5s ease;
}

/* ========== التذييل ========== */
.footer {
  background: var(--dark);
  color: #fff;
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p {
  color: #cfc6bc;
  font-size: 14px;
  margin-top: 18px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col ul a {
  color: #cfc6bc;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding-right: 0;
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-right: 8px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cfc6bc;
  font-size: 14px;
}

.footer-contact i {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #9a9188;
  font-size: 14px;
}

/* ========== حركات الظهور ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ========== التجاوب ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .experience-badge {
    right: 10px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .card-1 { right: 0; }
  .card-2 { left: 0; }
  .card-3 { right: 5%; }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 40px;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1001;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    width: 100%;
    padding: 12px 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 30px;
  }

  .floating-card {
    padding: 10px 14px;
  }

  .card-1 { top: 3%; }
  .card-2 { bottom: 25%; }
  .card-3 { bottom: 0; }

  .about-image-main img {
    height: 340px;
  }

  .hero-image img {
    height: 320px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .offer-inner {
    justify-content: center;
    text-align: center;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 26px;
  }

  .floating-card {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .hero-wave svg {
    height: 50px;
  }

  .cd-box {
    min-width: 55px;
    padding: 10px 12px;
  }

  .cd-box span {
    font-size: 22px;
  }
}
