/* ===== VARIABLES & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --lime: #2389DA;
  --dark: #080c0e;
  --darker: #050708;
  --card-bg: #0e1416;
  --border: rgba(200, 245, 62, 0.12);
  --text: #e8edf0;
  --muted: #7a8a94;
  --white: #ffffff;
  --blue: #0d7ea8;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: #2389DA;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(35, 137, 218, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--transition), width 0.4s, height 0.4s;
}

body:hover .cursor { opacity: 1; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 6%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  background: rgba(8, 12, 14, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}

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

.nav-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}

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

.nav-logo .logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-logo .logo-text span:last-child {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after { width: 60%; }

.nav-cta {
  background: var(--lime) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 4px;
}

.nav-cta:hover { background: #2389DA !important; }
.nav-cta::after { display: none !important; }

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

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

/* ===== HERO ===== */
#home {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/img3.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,12,14,0.92) 0%,
    rgba(8,12,14,0.75) 50%,
    rgba(8,12,14,0.4) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 62, 0.1);
  border: 1px solid rgba(200, 245, 62, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.5s forwards;
}

.hero-title .accent { color: var(--lime); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(232, 237, 240, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,245,62,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: all 0.3s var(--transition);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 6%;
  display: flex;
  gap: 40px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  background: rgba(14, 20, 22, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

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

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 100px 6%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--lime);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

/* ===== ABOUT ===== */
#about {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: 'MWIWA';
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25vw;
  color: rgba(200, 245, 62, 0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

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

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  bottom: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
}

.about-img-secondary {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 60%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
  box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 10%;
  background: var(--lime);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(200,245,62,0.3);
}

.about-img-badge span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(232, 237, 240, 0.7);
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
}

.highlight-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
#services {
  position: relative;
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-desc {
  max-width: 420px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(200,245,62,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 245, 62, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,245,62,0.1);
}

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

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(200, 245, 62, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--lime);
  transform: scale(1.05);
}

.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: rgba(200, 245, 62, 0.06);
  line-height: 1;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: rgba(200, 245, 62, 0.12); }

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--darker);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,14,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s var(--transition);
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(200,245,62,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover { background: var(--lime); color: var(--dark); }

/* ===== WHY CHOOSE US ===== */
#why {
  position: relative;
  overflow: hidden;
}

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

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.why-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(40px);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s var(--transition);
}

.why-item:hover {
  border-color: rgba(200, 245, 62, 0.3);
  transform: translateX(8px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 245, 62, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.why-item:hover .why-icon { background: var(--lime); }

.why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.why-item-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  top: 50%; left: 60%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,245,62,0.04), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

.contact-info-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-info-item:hover {
  border-color: rgba(200,245,62,0.3);
  transform: translateX(6px);
}

.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(200,245,62,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-info-item:hover .contact-info-icon { background: var(--lime); }

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px;
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lime);
}

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

.form-group select option {
  background: var(--card-bg);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: #2389DA;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,245,62,0.25);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s var(--transition);
  animation: floatWA 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .logo-mark {
  width: 32px; height: 32px;
  background: var(--lime);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--dark);
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.footer-designer {
  font-size: 12px;
  color: var(--muted);
}

.footer-designer a {
  color: #C8F53E;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-designer a:hover { opacity: 0.75; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8,12,14,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 30px;
    transition: right 0.4s var(--transition);
    border-left: 1px solid var(--border);
  }

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

  .nav-links a {
    font-size: 14px;
    padding: 14px 16px;
    width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .about-grid,
  .why-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 380px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .gallery-item:first-child { grid-row: span 1; }

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

  footer {
    flex-direction: column;
    text-align: center;
  }

  .hero-title { font-size: 52px; }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item { height: 240px; }

  .contact-form { padding: 28px 24px; }
}
