/* ===== SABAA TEA ITALIA — MAIN STYLESHEET ===== */

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --red: #B5001F;
  --cream: #F8F4E8;
  --cream-dark: #EDE8D0;
  --dark: #0D1F17;
  --text: #1A2E23;
  --text-muted: #5A7A6A;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(13,31,23,0.15);
  --shadow-lg: 0 20px 60px rgba(13,31,23,0.25);
  --radius: 12px;
  --radius-lg: 24px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-arabic: 'Segoe UI', 'Arial Unicode MS', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: var(--font-arabic); }

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

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

ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-deep); }
.text-white { color: var(--white); }
.bg-green { background: var(--green-deep); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.hidden { display: none !important; }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle.white { color: rgba(255,255,255,0.75); }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 40px;
  border-radius: 2px;
}

.divider.left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-deep);
  color: var(--white);
  border-color: transparent;
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-color: transparent;
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.btn-lg { padding: 18px 48px; font-size: 1.05rem; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info { display: flex; gap: 20px; align-items: center; }
.topbar-info span { display: flex; align-items: center; gap: 6px; }
.topbar-info svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(27,67,50,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,31,23,0.98);
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-size: 1.15rem; font-weight: 700; color: var(--gold); line-height: 1; }
.nav-logo-text .tagline { font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--green-deep);
}
.lang-btn:hover:not(.active) { color: var(--white); }

/* Mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(13,31,23,0.92) 0%, rgba(27,67,50,0.85) 60%, rgba(45,106,79,0.75) 100%),
    url('../images/hero-bologna.jpg') center/cover no-repeat;
  background-color: var(--green-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}
.hero-leaf-1 { top: -5%; right: 5%; width: 40%; transform: rotate(20deg); }
.hero-leaf-2 { bottom: -10%; left: -5%; width: 35%; transform: rotate(-30deg) scaleX(-1); }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(181,0,31,0.2), rgba(181,0,31,0.1));
  border: 1px solid rgba(181,0,31,0.4);
  color: #FF6B7A;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,0,31,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(181,0,31,0); }
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #FF6B7A;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-product-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  max-width: 320px;
  animation: float 6s ease-in-out infinite;
}

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

.hero-product-card .logo { width: 140px; margin: 0 auto 20px; }
.hero-product-card .product-name { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.hero-product-card .product-sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero-product-card .price-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 16px;
}
.price-box .price-main { font-size: 2rem; font-weight: 800; color: var(--gold); }
.price-box .price-sub { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero-badge-float {
  position: absolute;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  top: -12px;
  right: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(181,0,31,0.4);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; color: var(--gold); fill: var(--gold); }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  min-height: 400px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-overlay .big-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-badge-overlay .badge-text { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--gold); }
.feature-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card-img {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 40px;
  text-align: center;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img { max-height: 150px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.product-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

.product-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
}
.spec-label { color: var(--text-muted); font-weight: 500; }
.spec-value { font-weight: 700; color: var(--green-deep); }
.spec-value.gold { color: var(--gold); font-size: 1rem; }

/* ===== PRICING ===== */
.pricing-section { background: var(--green-deep); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pricing-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.4);
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-label { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.pricing-price span { font-size: 1.2rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 12px; line-height: 1.6; }

/* ===== ORDER FORM ===== */
.order-section { background: var(--cream); }
.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.order-info h2 { margin-bottom: 16px; }
.order-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.order-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); }

.order-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-control.error { border-color: var(--red); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-submit { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }
.blog-cat {
  display: inline-block;
  background: rgba(27,67,50,0.1);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }
.blog-read-more { color: var(--green-mid); font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.blog-read-more:hover { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); }
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 26px; height: 26px; color: var(--gold); }
.contact-card-text h4 { font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.contact-card-text p, .contact-card-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact-card-text a:hover { color: var(--green-mid); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 50px; }
.footer-brand .brand-name { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-deep) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; }
.page-header p { font-size: 1.05rem; color: rgba(255,255,255,0.7); position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5); position: relative; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--green-deep); }
.scroll-top svg { width: 18px; height: 18px; }

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

/* ===== RTL support ===== */
[lang="ar"] { direction: rtl; }
[lang="ar"] .hero-content { direction: rtl; }
[lang="ar"] .about-badge-overlay { right: auto; left: -20px; }
[lang="ar"] .about-feature { border-left: none; border-right: 3px solid var(--gold); }
[lang="ar"] .contact-card:hover { transform: translateX(-6px); }
[lang="ar"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }
[lang="ar"] .section-title, [lang="ar"] .section-tag { text-align: right; }
[lang="ar"] .divider.left { margin-right: 0; margin-left: auto; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 60px 0; }
  .hero-desc { margin: 0 auto 32px; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-overlay { right: 20px; bottom: 20px; }
  .order-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  /* Layout */
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .container { padding: 0 16px; }

  /* Topbar hidden */
  .topbar { display: none; }

  /* Navbar — fixed, full width dropdown */
  .navbar { position: sticky; top: 0; }
  .navbar .nav-inner { padding: 10px 0; position: relative; }
  .nav-logo img { height: 40px; }
  .nav-logo-text .brand { font-size: 1rem; }
  .nav-logo-text .tagline { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    background: rgba(10,26,18,0.99);
    padding: 12px 0;
    gap: 0;
    border-top: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
  .lang-selector { gap: 2px; }
  .lang-btn { padding: 4px 8px; font-size: 0.7rem; }

  /* Hero */
  .hero { min-height: auto; padding: 0; }
  .hero-content { padding: 48px 0 40px; gap: 28px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 14px 24px; font-size: 0.9rem; }
  .hero-stats { gap: 16px; flex-wrap: wrap; padding-top: 24px; }
  .stat-number { font-size: 1.5rem; }

  /* Trust bar */
  .trust-bar { padding: 20px 0; }
  .trust-items { gap: 12px; flex-direction: column; align-items: flex-start; padding: 0 4px; }
  .trust-item { font-size: 0.85rem; }

  /* About */
  .about-main-img { min-height: 280px !important; }
  .about-badge-overlay { position: static; margin-top: 16px; display: inline-flex; gap: 8px; align-items: center; }
  .about-badge-overlay .big-number { font-size: 1.8rem; }
  .about-image-wrap { text-align: center; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card-img { min-height: 180px; padding: 28px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-img { height: 180px; }

  /* Order */
  .order-form-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Contact */
  .contact-card { padding: 16px; }
  .contact-card-icon { width: 44px; height: 44px; flex-shrink: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 0.78rem; }
  .footer-brand p { font-size: 0.83rem; }

  /* Page header */
  .page-header { padding: 52px 0 40px; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Misc */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .scroll-top { bottom: 84px; right: 16px; }

  /* Prevent iOS zoom on form inputs */
  .form-control { font-size: 16px; }
  select.form-control { font-size: 16px; }
}

/* ===== RESPONSIVE — SMALL PHONE ===== */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 15px 24px; font-size: 0.95rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .order-form-card { padding: 20px 14px; }
  .hero-stats { gap: 16px; }
  .stat { flex: 1; min-width: 70px; }
  .lang-btn { padding: 3px 7px; font-size: 0.65rem; }
  .trust-items { gap: 10px; }
  .trust-item { font-size: 0.8rem; }
  .trust-icon { width: 34px; height: 34px; }
  .contact-grid { gap: 32px; }
  .section-tag { font-size: 0.72rem; }
  .about-features { gap: 12px; }
  .about-feature { padding: 12px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
