@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Amiri:wght@400;700&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
  --green-deep: #041f12;
  --green-primary: #0B4D2C;
  --green-mid: #0e3d24;
  --green-light: #147a45;
  --gold-primary: #C9A96E;
  --gold-light: #dbbf8a;
  --gold-dark: #a88a4e;
  --gold-pale: #f0e4cc;
  --cream: #faf6ef;
  --white: #ffffff;
  --off-white: #e8e6e1;
  --dark: #080c0a;
  --gray: #9aa59f;
  --gray-light: #b5bfb9;
  --shadow: rgba(4, 31, 18, 0.35);
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
  --font-display: 'Amiri', serif;
  --font-accent: 'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 80px; height: 80px;
  border: 3px solid var(--gold-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6, 42, 24, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.8rem 5%;
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
}
.nav-brand img { height: 50px; filter: brightness(1.1); }
.nav-brand span {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.3px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em;
  position: relative; padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; right: 0; width: 0; height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-deep) !important;
  padding: 0.6rem 1.6rem !important;
  border-radius: 50px; font-weight: 700 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(196,162,101,0.4) !important;
  color: var(--green-deep) !important;
}

.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.menu-toggle span {
  width: 28px; height: 2px; background: var(--gold-primary);
  transition: all 0.3s; border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero.png') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,42,24,0.85) 0%,
    rgba(6,42,24,0.6) 40%,
    rgba(6,42,24,0.85) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold-primary); border-radius: 50%;
  opacity: 0; animation: float-up 6s infinite;
}
@keyframes float-up {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 5%;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,162,101,0.15);
  border: 1px solid rgba(196,162,101,0.3);
  padding: 0.5rem 1.5rem; border-radius: 50px;
  font-size: 0.85rem; color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title .gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 620px; margin: 0 auto 2.8rem;
  font-weight: 300; line-height: 2.1;
  letter-spacing: 0.02em;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-deep); padding: 1rem 2.5rem;
  border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 1rem; border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(196,162,101,0.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 1rem 2.5rem;
  border-radius: 50px; text-decoration: none;
  font-weight: 500; font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(196,162,101,0.08);
}
.hero-scroll {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
  color: var(--gold-primary); font-size: 1.5rem;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative; z-index: 5;
  margin-top: -60px;
  padding: 0 5%;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: 20px; padding: 2.5rem 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-accent);
  direction: ltr;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* ===== SECTION COMMON ===== */
section { padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-primary); font-size: 0.85rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px;
  background: var(--gold-primary); opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.section-title .gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--gray); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto; line-height: 2;
}

/* ===== ABOUT ===== */
.about { background: var(--green-deep); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.about-image-accent {
  position: absolute;
  top: -15px; right: -15px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold-primary);
  border-radius: 20px; opacity: 0.3;
  z-index: -1;
}
.about-year {
  position: absolute; bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-deep); padding: 1.2rem 2rem;
  border-radius: 16px; font-weight: 900;
  font-size: 1.5rem; box-shadow: 0 10px 30px rgba(196,162,101,0.3);
  font-family: 'Playfair Display', serif;
}
.about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-primary); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 2px; margin-bottom: 1rem;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; margin-bottom: 1.5rem; line-height: 1.4;
  letter-spacing: 0.01em;
}
.about-text {
  color: rgba(255,255,255,0.8); line-height: 2.2;
  margin-bottom: 2rem; font-size: 1.1rem;
  font-weight: 300;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 2rem;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-weight: 500;
}
.about-feature i {
  color: var(--gold-primary); font-size: 1.1rem;
  width: 35px; height: 35px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(196,162,101,0.1);
  border-radius: 10px;
}

/* ===== SERVICES ===== */
.services { background: var(--dark); }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: linear-gradient(180deg, rgba(11,77,44,0.3), rgba(6,42,24,0.6));
  border: 1px solid rgba(196,162,101,0.1);
  border-radius: 20px; padding: 2.5rem 1.5rem;
  text-align: center; transition: all 0.5s ease;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196,162,101,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 70px; height: 70px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(196,162,101,0.15), rgba(196,162,101,0.05));
  border-radius: 18px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold-primary);
  transition: all 0.5s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-deep);
  transform: scale(1.1) rotate(5deg);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.8rem; letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.9; font-weight: 300;
}

/* ===== PROJECTS ===== */
.projects { background: var(--green-deep); }
.projects-tabs {
  display: flex; justify-content: center;
  gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.tab-btn {
  padding: 0.7rem 2rem; border-radius: 50px;
  border: 1px solid rgba(196,162,101,0.2);
  background: transparent; color: var(--gray);
  font-family: 'Tajawal', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-deep); border-color: var(--gold-primary);
}
.projects-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  position: relative; border-radius: 20px;
  overflow: hidden; height: 320px;
  cursor: pointer; group: true;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s;
}
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,42,24,0.95) 0%, transparent 60%);
  padding: 1.5rem; display: flex;
  flex-direction: column; justify-content: flex-end;
  transition: background 0.5s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(0deg, rgba(6,42,24,0.98) 0%, rgba(6,42,24,0.4) 100%);
}
.project-type {
  color: var(--gold-primary); font-size: 0.8rem;
  font-weight: 600; margin-bottom: 0.3rem;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.3rem; letter-spacing: 0.01em;
}
.project-info {
  font-size: 0.85rem; color: var(--gray);
}
.project-link {
  position: absolute; top: 1.5rem; left: 1.5rem;
  width: 45px; height: 45px; border-radius: 50%;
  background: rgba(196,162,101,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,162,101,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  opacity: 0; transform: translateY(-10px);
  transition: all 0.3s;
}
.project-card:hover .project-link {
  opacity: 1; transform: translateY(0);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  position: relative; overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,162,101,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(196,162,101,0.05) 0%, transparent 50%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700; margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.cta-desc {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-bottom: 2.5rem; line-height: 2;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); }
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-cards {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.contact-card {
  background: rgba(11,77,44,0.2);
  border: 1px solid rgba(196,162,101,0.1);
  border-radius: 16px; padding: 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: rgba(196,162,101,0.3);
  transform: translateX(-5px);
}
.contact-card-icon {
  width: 55px; height: 55px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,162,101,0.15), rgba(196,162,101,0.05));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary); font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-label { color: var(--gray); font-size: 0.85rem; }
.contact-card-value {
  font-weight: 600; font-size: 1rem;
  margin-top: 0.2rem; direction: ltr; text-align: right;
}
.contact-card-value a {
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.contact-card-value a:hover { color: var(--gold-primary); }

.contact-form {
  background: rgba(11,77,44,0.15);
  border: 1px solid rgba(196,162,101,0.1);
  border-radius: 20px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.9rem;
  color: rgba(255,255,255,0.7); margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,162,101,0.15);
  font-family: var(--font-body);
  font-size: 0.95rem; transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(196,162,101,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(196,162,101,0.1);
  padding: 3rem 5% 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-about p {
  color: var(--gray); margin-top: 1rem;
  line-height: 2; font-size: 0.95rem;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.2rem; color: var(--gold-primary);
  letter-spacing: 0.02em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--gray); text-decoration: none;
  transition: color 0.3s; font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold-primary); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem; text-align: center;
  color: var(--gray); font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
  display: none;
}
.cursor-follower {
  width: 30px; height: 30px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  display: none;
}
@media (pointer: fine) {
  .cursor, .cursor-follower { display: block; }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px;
  background: #25d366; color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::after {
  content: "تواصل معنا";
  position: absolute; left: 75px;
  background: white; color: #333;
  padding: 8px 18px; border-radius: 20px;
  font-size: 14px; font-weight: 700;
  white-space: nowrap; opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.whatsapp-float:hover::after { opacity: 1; transform: translateX(0); }

@keyframes pulse-green {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float { animation: pulse-green 2s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: rgba(6, 42, 24, 0.98);
    backdrop-filter: blur(25px);
    padding: 3rem 5%; gap: 1.5rem;
    border-top: 1px solid rgba(196,162,101,0.1);
  }
  .nav-links.open li { width: 100%; text-align: center; }
  .nav-links.open a { font-size: 1.1rem; display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 2.5rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 600px; }
  .stat-number { font-size: 2.2rem; }
  .cursor, .cursor-follower { display: none !important; }
}
