/* ============================
   GLOBAL RESET & VARIABLES
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --gold: #C9A84C;
  --gold-light: #E8C870;
  --gold-dark: #A07830;
  --green-dark: #0D2818;
  --green-mid: #1A4528;
  --green-light: #2A6B3C;
  --cream: #F5EDD6;
  --cream-light: #FBF7EE;
  --white: #FFFFFF;
  --dark-bg: #0A1F10;
  --card-bg: #111F15;
  --card-border: rgba(201, 168, 76, 0.15);
  --text-primary: #E8E0CC;
  --text-secondary: #A8A090;
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Cairo', sans-serif;
  --font-serif: 'Amiri', serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--green-dark);
}

.mt-2 {
  margin-top: 2rem;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.logo-icon-loader {
  font-size: 3rem;
  color: var(--gold);
  animation: pulse-glow 1.5s ease-in-out infinite;
  margin-bottom: 12px;
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: preload 1.8s ease-in-out forwards;
}

@keyframes preload {
  to { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 168, 76, 0.6); transform: scale(1); }
  50% { text-shadow: 0 0 40px rgba(201, 168, 76, 0.9); transform: scale(1.05); }
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 31, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

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

.logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 400;
}

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

.nav-link {
  padding: 8px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
}

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

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

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

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #040d06 0%, #0D2818 40%, #0A2010 70%, #081508 100%);
}

.hero-bg {
  position: absolute;
  inset: -15px;
  z-index: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: blur(6px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(42, 107, 60, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line-1 {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-2 {
  display: block;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-desc {
  max-width: 600px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.65s both;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.55);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(-4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.25);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1.5s ease 2s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

.hero-scroll-indicator span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(42, 107, 60, 0.12);
  top: -100px;
  left: -150px;
  animation: float-shape 12s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: rgba(201, 168, 76, 0.06);
  bottom: 0;
  right: 10%;
  animation: float-shape 10s ease-in-out 2s infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(26, 69, 40, 0.15);
  top: 40%;
  left: 60%;
  animation: float-shape 8s ease-in-out 1s infinite;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ============================
   TICKER MARQUEE
   ============================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
  gap: 0;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.ticker-track i {
  font-size: 0.7rem;
}

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

/* ============================
   SECTION COMMON
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--cream);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--dark-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  height: 520px;
}

.about-img-main {
  width: 75%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-dark);
}

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

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.about-badge-float i {
  font-size: 1.6rem;
}

.about-badge-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}

.about-badge-float span {
  font-size: 0.75rem;
  opacity: 0.8;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
  border-color: rgba(201, 168, 76, 0.35);
}

.service-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.service-icon-wrap {
  margin-bottom: 24px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================
   PRODUCTS SECTION
   ============================ */
.products {
  background: var(--dark-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 76, 0.3);
}

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

.product-tags i {
  font-size: 0.65rem;
}

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
  background: linear-gradient(135deg, #061209 0%, #0D2818 50%, #0A1F10 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(42, 107, 60, 0.12) 0%, transparent 60%);
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 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.025'%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");
}

.stats-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-box:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}

.stat-title {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
}

/* ============================
   WHY US SECTION
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 2px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel,
.contact-map-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
}

.contact-detail a {
  color: var(--gold);
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--gold-light);
}

.phone-link {
  direction: ltr;
  display: block;
  margin-bottom: 2px;
}

.contact-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link.facebook { background: rgba(24, 119, 242, 0.15); color: #1877F2; }
.social-link.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.social-link.instagram { background: rgba(225, 48, 108, 0.15); color: #E1306C; }

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  text-align: center;
}

.call-btn:not(.secondary) {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
}

.call-btn:not(.secondary):hover {
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.call-btn.secondary {
  background: rgba(201, 168, 76, 0.08);
  border: 2px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.call-btn.secondary:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border);
  margin-bottom: 16px;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.1);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.5);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #050d07;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.6;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-contact-item a {
  display: block;
  color: var(--text-secondary);
  transition: color 0.2s;
  direction: ltr;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-tagline i {
  color: #e74c3c;
  font-size: 0.75rem;
}

/* ============================
   BACK TO TOP & WHATSAPP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 86px;
  left: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 14px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: whatsapp-bounce 2.5s ease-in-out infinite 3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-6px);
}

.whatsapp-tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* AOS-like animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="flip-left"] { transform: perspective(800px) rotateY(30deg); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrap {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid,
  .products-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(5, 13, 7, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .about-img-wrap {
    height: 340px;
  }

  .about-img-secondary {
    width: 60%;
    height: 200px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-numbers {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-info-panel,
  .contact-map-panel {
    padding: 28px;
  }

  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .products-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-wrap {
    height: 280px;
  }

  .about-img-secondary {
    display: none;
  }

  .about-badge-float {
    display: none;
  }
}

/* ============================
   SCROLLBAR STYLING
   ============================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================
   SELECTION STYLING
   ============================ */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--cream);
}
