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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: #065f46;
  color: #fef3c7;
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(254, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(6, 95, 70, 0.08);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #059669;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #059669;
  color: #fef3c7;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  color: #065f46;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background: #fef9ee;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fef3c7;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(254, 243, 200, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(254, 243, 200, 0.1);
  border-color: rgba(254, 243, 200, 0.7);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  color: #065f46;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background: #fef9ee;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fef3c7;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: 1.5px solid rgba(254, 243, 200, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(254, 243, 200, 0.1);
  border-color: rgba(254, 243, 200, 0.7);
  transform: translateY(-2px);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #059669;
  color: #fef3c7;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-submit:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(6, 95, 70, 0.1);
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 95, 70, 0.08);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

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

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

/* ===== MOBILE MENU ===== */
.mobile-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #059669;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .font-display {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
