:root {
  --bg: #ffffff;
  --bg-soft: #f5f8f7;
  --text: #1a2e2a;
  --text-muted: #5c6f6a;
  --primary: #1b3d36;
  --primary-dark: #142e29;
  --accent: #b88a5b;
  --accent-light: #c9a67a;
  --border: #dce6e3;
  --shadow: 0 10px 28px rgba(27, 61, 54, 0.08);
  --radius: 14px;
  --container: 1120px;
  --hero-bg-image: url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1800&q=80");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 22%, rgba(27, 61, 54, 0.2) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(184, 138, 91, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 72% 78%, rgba(27, 61, 54, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 12% 82%, rgba(201, 166, 122, 0.18) 0%, transparent 42%);
  animation: bg-gradient-shift 14s ease-in-out infinite alternate;
}

.bg-shape {
  position: absolute;
  opacity: 0.22;
  filter: blur(22px);
  will-change: transform;
}

.bg-shape--1 {
  top: 6%;
  right: -2%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--primary);
  animation: bg-float-1 16s ease-in-out infinite;
}

.bg-shape--2 {
  top: 38%;
  left: -4%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--accent);
  animation: bg-float-2 13s ease-in-out infinite;
}

.bg-shape--3 {
  bottom: 8%;
  right: 14%;
  width: 300px;
  height: 300px;
  border-radius: 38% 62% 54% 46% / 46% 40% 60% 54%;
  background: var(--primary);
  animation: bg-float-3 18s ease-in-out infinite;
}

.bg-shape--4 {
  top: 18%;
  left: 24%;
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: var(--accent-light);
  opacity: 0.2;
  animation: bg-float-4 12s ease-in-out infinite;
}

.bg-shape--5 {
  bottom: 22%;
  left: 6%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--primary-dark);
  animation: bg-float-5 15s ease-in-out infinite;
}

.bg-shape--6 {
  top: 58%;
  right: 4%;
  width: 240px;
  height: 240px;
  border-radius: 32px;
  background: var(--accent);
  opacity: 0.18;
  animation: bg-float-6 14s ease-in-out infinite;
}

.bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(27, 61, 54, 0.18);
  background: rgba(255, 255, 255, 0.04);
  will-change: transform;
}

.bg-ring--1 {
  top: 14%;
  left: 10%;
  width: 140px;
  height: 140px;
  animation: bg-ring-spin 28s linear infinite;
}

.bg-ring--2 {
  bottom: 18%;
  right: 12%;
  width: 200px;
  height: 200px;
  border-color: rgba(184, 138, 91, 0.28);
  animation: bg-ring-spin 22s linear infinite reverse;
}

.bg-ring--3 {
  top: 48%;
  right: 32%;
  width: 110px;
  height: 110px;
  border-width: 3px;
  border-color: rgba(27, 61, 54, 0.14);
  animation: bg-float-4 10s ease-in-out infinite;
}

.bg-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  box-shadow: 0 0 18px rgba(184, 138, 91, 0.35);
  will-change: transform, opacity;
}

.bg-dot--1 {
  top: 20%;
  right: 22%;
  animation: bg-dot-float 9s ease-in-out infinite;
}

.bg-dot--2 {
  top: 35%;
  left: 18%;
  width: 10px;
  height: 10px;
  background: var(--primary);
  animation: bg-dot-float 11s ease-in-out infinite 1s;
}

.bg-dot--3 {
  top: 55%;
  right: 8%;
  width: 14px;
  height: 14px;
  animation: bg-dot-float 8s ease-in-out infinite 0.5s;
}

.bg-dot--4 {
  bottom: 30%;
  left: 28%;
  background: var(--primary);
  animation: bg-dot-float 10s ease-in-out infinite 1.5s;
}

.bg-dot--5 {
  bottom: 15%;
  right: 38%;
  width: 9px;
  height: 9px;
  animation: bg-dot-float 12s ease-in-out infinite 2s;
}

.bg-dot--6 {
  top: 72%;
  left: 42%;
  width: 11px;
  height: 11px;
  animation: bg-dot-float 9.5s ease-in-out infinite 0.8s;
}

@keyframes bg-gradient-shift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(4%, -3%) scale(1.06);
  }
}

@keyframes bg-float-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-70px, 80px) scale(1.12);
  }
}

@keyframes bg-float-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(85px, -60px) scale(1.1);
  }
}

@keyframes bg-float-3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-55px, -70px) rotate(18deg);
  }
}

@keyframes bg-float-4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(60px, 50px) rotate(-14deg);
  }
}

@keyframes bg-float-5 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(65px, 75px) scale(0.9);
  }
}

@keyframes bg-float-6 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-60px, 45px) rotate(12deg);
  }
}

@keyframes bg-ring-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes bg-dot-float {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate(25px, -40px);
    opacity: 0.65;
  }
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: rgba(245, 248, 247, 0.68);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(220, 230, 227, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(27, 61, 54, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: clamp(52px, 11vw, 64px);
  width: auto;
  max-width: min(55vw, 230px);
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.site-header.scrolled .nav-links a {
  color: #374151;
}

.site-header.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background 0.2s ease;
}

.site-header.scrolled .nav-toggle span {
  background: #111827;
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 6.5rem;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(20, 46, 41, 0.62) 0%,
    rgba(27, 61, 54, 0.7) 40%,
    rgba(20, 46, 41, 0.52) 100%
  );
  z-index: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.25;
  color: #fff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-badge-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1rem;
  align-self: center;
}

.hero-badge-card h3 {
  margin: 0 0 0.6rem;
  color: var(--primary-dark);
}

.hero-badge-card ul {
  margin: 0;
  padding: 0 1rem 0 0;
}

.hero-badge-card li + li {
  margin-top: 0.35rem;
}

/* Features */
.hero-features {
  margin-top: -2.3rem;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(27, 61, 54, 0.08);
  padding: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 61, 54, 0.12);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--primary));
  margin-bottom: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

/* About */
.about-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(245, 248, 247, 0.65) 100%
  );
}

.section-heading--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(27, 61, 54, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(27, 61, 54, 0.12);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.8;
}

.about-text {
  margin: 0;
  color: var(--text-muted);
}

.about-highlights {
  display: grid;
  gap: 0.75rem;
}

.about-highlight {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 14px rgba(27, 61, 54, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 61, 54, 0.08);
}

.about-highlight h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--primary);
}

.about-highlight p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-info-grid {
  display: grid;
  gap: 0.75rem;
}

.about-info-card {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-right: 4px solid var(--primary);
}

.about-info-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-info-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.about-maps-btn {
  align-self: flex-start;
}

.contact-card,
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 4px 16px rgba(27, 61, 54, 0.04);
}

/* Products */
.products-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(27, 61, 54, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(27, 61, 54, 0.12);
}

.product-card img {
  min-height: 200px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1rem;
}

.product-content h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.product-content p {
  margin: 0;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contact-item span:first-child {
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-item a,
.contact-item span:last-child {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  min-width: 0;
}

.contact-item a {
  font-weight: 600;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 10px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  background: #fff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.92;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: 76px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    color: var(--text);
    padding: 0.35rem 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding-top: 6.25rem;
  }

  .product-card img {
    min-height: 180px;
    height: auto;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    left: 1rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 821px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
  }

  .about-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 1100px) {
  .about-layout {
    gap: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-gradient,
  .bg-shape,
  .bg-ring,
  .bg-dot {
    animation: none;
  }
}
