/* ============================================================
   Alloush Group – Main Stylesheet
   Palette: Dark Green #2a442b | Light Green #3d6b3f
   ============================================================ */

:root {
  --primary:        #2a442b;
  --primary-light:  #3d6b3f;
  --primary-dark:   #1a2d1b;
  --accent:         #5a8f5c;
  --accent-hover:   #4a7a4c;
  --gold:           #c8a84b;
  --gold-light:     #e8c97a;
  --bg-light:       #f2f5f2;
  --bg-section:     #f8faf8;
  --white:          #ffffff;
  --text-dark:      #1a2d1b;
  --text-body:      #3a4e3b;
  --text-muted:     #6b7f6c;
  --border:         #d4e0d5;
  --shadow-sm:      0 2px 8px rgba(42,68,43,0.10);
  --shadow-md:      0 6px 24px rgba(42,68,43,0.14);
  --shadow-lg:      0 16px 48px rgba(42,68,43,0.18);
  --radius:         10px;
  --radius-lg:      18px;
  --radius-pill:    50px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display:   'Playfair Display', Georgia, serif;
  --max-width:      1240px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--primary-dark); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: 1.5rem; }
.section    { padding-block: 96px; }
.section-sm { padding-block: 64px; }
.section-alt { background: var(--bg-section); }
.text-center { text-align: center; }
.text-green  { color: var(--primary); }
.text-gold   { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.section-lead.center { margin-inline: auto; text-align: center; }

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.divider.center { margin-inline: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.88rem; }

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-green  { background: rgba(42,68,43,0.10); color: var(--primary); }
.badge-gold   { background: rgba(200,168,75,0.12); color: #a07c1a; }

/* ─────────────────────────────────────────────────────────── */
/* NAVIGATION                                                   */
/* ─────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 45, 27, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 1.9rem);
}

.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu hidden globally; only shown via JS .open class on small screens */
.mobile-menu { display: none; }

/* ─────────────────────────────────────────────────────────── */
/* HERO                                                         */
/* ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/landscape.jpeg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.38) saturate(1.2);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,45,27,0.82) 0%,
    rgba(42,68,43,0.55) 50%,
    rgba(10,25,12,0.85) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold-light);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge svg { flex-shrink: 0; }

.hero-title {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat-number span {
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { animation: none; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────────── */
/* MARQUEE / TICKER                                             */
/* ─────────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--primary);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────── */
/* ABOUT                                                        */
/* ─────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary-light);
}

.about-highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1rem;
}

.about-highlight-text {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
}

/* Founders */
.founders-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.founder-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.founder-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.founder-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.founder-img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
}

.founder-info h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.founder-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.founder-creds {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────── */
/* SERVICES                                                     */
/* ─────────────────────────────────────────────────────────── */
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

/* Placeholder for missing service images */
.service-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
  gap: 0.75rem;
}

.service-placeholder-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-placeholder-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-sans);
  z-index: 1;
}

.service-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: gap var(--transition);
  margin-top: auto;
}

.service-link:hover { gap: 0.7rem; color: var(--primary); }

/* ─────────────────────────────────────────────────────────── */
/* RICH BRAND / PRODUCTS                                        */
/* ─────────────────────────────────────────────────────────── */
#products {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

#products::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

#products::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(90,143,92,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.products-inner { position: relative; z-index: 1; }

.products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.products-header .section-label { color: var(--gold-light); }
.products-header h2 { color: var(--white); }
.products-header .divider { background: var(--gold); }

.rich-intro {
  max-width: 540px;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.75rem;
}

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

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.product-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,168,75,0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.product-img-wrap {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.03);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(42,68,43,0.5) 0%, rgba(26,45,27,0.8) 100%);
}

.product-placeholder-icon {
  width: 58px;
  height: 58px;
  background: rgba(200,168,75,0.2);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.product-placeholder-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rich-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.product-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Product type badge (Pellets / Fine / etc.) ─────────── */
.product-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.28);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.75rem;
  margin-bottom: 0.55rem;
  box-shadow: 0 0 8px rgba(200,168,75,0.25), 0 0 2px rgba(200,168,75,0.15);
  animation: badge-glow 2.8s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(200,168,75,0.20), 0 0 2px rgba(200,168,75,0.10); }
  50%       { box-shadow: 0 0 14px rgba(200,168,75,0.45), 0 0 4px rgba(200,168,75,0.25); }
}

/* ── Product sizes (Arabic) ──────────────────────────────── */
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.product-size-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  padding: 0.18rem 0.65rem;
  font-family: var(--font-sans);
}

/* ── Product image carousel ──────────────────────────────── */
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(26,45,27,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.product-card:hover .slide-btn { opacity: 1; }

.slide-btn:hover { background: rgba(42,68,43,0.9); }

.slide-prev { left: 0.5rem; }
.slide-next { right: 0.5rem; }

.slide-dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slide-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ─────────────────────────────────────────────────────────── */
/* WHY CHOOSE US                                                */
/* ─────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image-block { position: relative; }

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.why-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.why-feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 0.98rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.why-feature-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────── */
/* COVERAGE / REGIONS                                           */
/* ─────────────────────────────────────────────────────────── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.region-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.region-flag {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.region-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.region-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────── */
/* CONTACT                                                      */
/* ─────────────────────────────────────────────────────────── */
#contact { background: var(--bg-section); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item-body label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item-body a,
.contact-item-body span {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item-body a:hover { color: var(--primary-light); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,68,43,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-check label {
  font-size: 0.84rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-msg {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-msg.error   { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; display: block; }

/* ─────────────────────────────────────────────────────────── */
/* NEWSLETTER                                                   */
/* ─────────────────────────────────────────────────────────── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-text h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  margin-bottom: 0;
}

.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.78rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-family: var(--font-sans);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

/* ─────────────────────────────────────────────────────────── */
/* FOOTER                                                       */
/* ─────────────────────────────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.72);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  width: 52px;
  border-radius: 8px;
  background: var(--white);
  padding: 3px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.footer-brand .tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
}

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-social { display: flex; gap: 0.6rem; }

.footer-social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  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.65);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────── */
/* BACK TO TOP                                                  */
/* ─────────────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────── */
/* ANIMATIONS                                                   */
/* ─────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                   */
/* ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-image-block { order: -1; }
  .why-badge-float { bottom: 1rem; right: 1rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .regions-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-header { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section  { padding-block: 64px; }
  .section-sm { padding-block: 48px; }

  .nav-links, .nav-cta { display: none; }

  .hamburger { display: flex; }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(26, 45, 27, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: var(--transition);
    display: block;
  }

  .mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

  .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

  .hero-stats   { gap: 1.5rem; }
  .form-row     { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .regions-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .regions-grid   { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; }
  .why-badge-float { position: static; margin-top: 1.5rem; display: inline-block; }
}
