/*
  METRAJ.NET DESIGN SYSTEM - GREEN PALETTE (Vanilla CSS)
  Philosophy: Temiz, Modern, Profesyonel
  Primary: Beyaz (#FFFFFF) + Açık Gri (#f5f5f5) + Yeşil (#2D7C4A / #1B5E3F)
  Typography: Poppins (headings) + Inter (body)
*/

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
}

/* ──── UTILITIES ──── */
.text-green { color: #2D7C4A; }
.text-white { color: #ffffff; }
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }

/* ──── CONTAINER ──── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ──── GRID SYSTEM ──── */
.grid {
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 640px) {
  .grid-sm-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-lg-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-lg-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-lg-4 { grid-template-columns: repeat(4, 1fr); }
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ──── FLEXBOX ──── */
.flex { display: flex; min-height: 0; min-width: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

/* ──── NAVBAR ──── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

@media (min-width: 768px) {
  .navbar-inner {
    height: 4rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.logo-icon {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
}

.logo-letter {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-ruler {
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 2px;
  background: #ffffff;
}

.logo-ticks {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
}

.logo-tick {
  width: 2px;
  height: 4px;
  background: #ffffff;
}

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

.logo-title {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
  color: #4b5563;
}

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

.nav-link:hover {
  color: #111827;
}

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

.nav-link.active {
  color: #2D7C4A;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-right {
    display: flex;
  }
}

.btn-sm {
  padding: 0.375rem 1rem !important;
  font-size: 0.75rem !important;
}

.mobile-toggle {
  display: block;
  color: #111827;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563;
  transition: all 0.2s ease;
}

.mobile-link:hover {
  color: #ffffff;
  background: #2D7C4A;
}

.mobile-link.active {
  color: #ffffff;
  background: #2D7C4A;
}

.btn-mobile-cta {
  text-align: center;
  margin-top: 0.5rem;
  display: block;
  font-size: 0.75rem;
}

/* ──── BUTTONS ──── */
.btn-green {
  background-color: #2D7C4A;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-green:hover {
  background-color: #1B5E3F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 124, 74, 0.25);
}

.btn-outline-green {
  background-color: transparent;
  color: #2D7C4A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 2px solid #2D7C4A;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-outline-green:hover {
  background-color: #2D7C4A;
  color: #ffffff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* ──── ACCENT LINE ──── */
.accent-line::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2D7C4A;
  margin-bottom: 1rem;
}

/* ──── SECTION HEADING ──── */
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

/* ──── HERO SECTIONS ──── */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  background: linear-gradient(135deg, rgba(45, 124, 74, 0.08) 0%, rgba(61, 155, 90, 0.06) 100%);
}

.hero-page {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(45, 124, 74, 0.08) 0%, rgba(61, 155, 90, 0.06) 100%);
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2D7C4A;
}

.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-diagonal-sm {
  height: 3rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #2D7C4A;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(45, 124, 74, 0.1);
}

.hero-tag-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2D7C4A;
}

.hero-tag-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-tag-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2D7C4A;
}

.hero-title {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-page-title {
  color: #111827;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-description {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
}

.scroll-indicator span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

/* ──── SERVICE CARDS ──── */
.service-card {
  padding: 1.25rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #111827;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: #ffffff;
}

.service-card:hover .service-desc {
  opacity: 0.7;
}

.service-card:hover .service-icon-box {
  background: #22c55e;
}

.service-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: #2D7C4A;
  transition: background 0.3s ease;
}

.service-icon-box svg {
  color: #ffffff;
  width: 18px;
  height: 18px;
}

.service-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-desc {
  color: #4b5563;
  font-size: 0.75rem;
  line-height: 1.6;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ──── ABOUT PREVIEW ──── */
.about-preview {
  background: #f9fafb;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.25rem;
}

.about-text {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
}

.feature-tag svg {
  color: #2D7C4A;
}

.feature-tag span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
}

.blockquote-card {
  padding: 1.5rem;
  border-left: 4px solid #2D7C4A;
  background: #f9fafb;
}

.blockquote-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 1rem;
}

.blockquote-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4b5563;
}

/* ──── CTA SECTION ──── */
.cta-section {
  background: #ffffff;
  padding: 3rem 0;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #2D7C4A;
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
  }
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  background: #ffffff;
  color: #2D7C4A;
  transition: opacity 0.2s ease;
}

.btn-white:hover {
  opacity: 0.9;
}

/* ──── SECTION STYLES ──── */
.section-white { background: #ffffff; padding: 4rem 0; }
.section-gray { background: #f9fafb; padding: 4rem 0; }
.section-white-sm { background: #ffffff; padding: 2.5rem 0 1rem; }
.section-white-md { background: #ffffff; padding: 2.5rem 0; }

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4b5563;
  max-width: 36rem;
  margin-top: 0.5rem;
}

/* ──── VALUES CARDS ──── */
.value-card {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: #16a34a;
}

.value-icon-box {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 124, 74, 0.1);
  margin-bottom: 0.75rem;
}

.value-icon-box svg {
  color: #2D7C4A;
  width: 16px;
  height: 16px;
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ──── MISSION/VISION CARDS ──── */
.mv-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.mv-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
  margin-bottom: 1rem;
}

.mv-icon-box svg {
  color: #ffffff;
  width: 18px;
  height: 18px;
}

.mv-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.75rem;
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4b5563;
}

.dot-green {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #2D7C4A;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ──── PRINCIPLE CARDS ──── */
.principle-card {
  background: #ffffff;
  border-left: 4px solid #2D7C4A;
  padding: 1.5rem;
}

.principle-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.principle-desc {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.principle-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #4b5563;
}

/* ──── TARGET AUDIENCE ──── */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.target-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.target-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .target-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.target-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.75rem;
  border-left: 4px solid #2D7C4A;
}

.target-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #111827;
}

.advantages-box {
  background: #111827;
  padding: 1.5rem;
}

.advantages-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2D7C4A;
  margin-bottom: 1.25rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.advantage-item + .advantage-item {
  margin-top: 1rem;
}

.advantage-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
  flex-shrink: 0;
}

.advantage-number span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
}

.advantage-number.small-text span {
  font-size: 0.75rem;
}

.advantage-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.advantage-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ──── FAQ ──── */
.faq-card {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.faq-card:hover {
  border-color: #16a34a;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ──── WHO WE ARE BOX ──── */
.who-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  text-align: center;
}

.who-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
}

.who-icon span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
}

.who-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
}

.who-desc {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ──── CONTACT PAGE ──── */
.whatsapp-cta {
  background: #111827;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .whatsapp-cta {
    flex-direction: row;
  }
}

.whatsapp-cta-icon {
  width: 3rem;
  height: 3rem;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.125rem;
}

.whatsapp-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f9fafb;
  padding: 1rem;
  border-left: 4px solid #2D7C4A;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card-wa {
  border-left-color: #25D366;
}

.contact-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
  flex-shrink: 0;
}

.contact-card-icon.wa {
  background: #22c55e;
}

.contact-card-icon svg {
  color: #ffffff;
  width: 16px;
  height: 16px;
}

.contact-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.125rem;
}

.contact-card-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-value {
  color: #16a34a;
}

.social-box {
  background: #f9fafb;
  padding: 1rem;
}

.social-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.social-buttons {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.social-btn:hover {
  opacity: 0.9;
}

.social-btn-instagram {
  background: linear-gradient(to right, #a855f7, #ec4899);
}

.social-btn-linkedin {
  background: #2563eb;
}

.social-btn svg {
  width: 13px;
  height: 13px;
}

.response-box {
  padding: 1rem;
  background: #2D7C4A;
}

.response-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.response-header svg {
  color: #ffffff;
  width: 16px;
  height: 16px;
}

.response-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.response-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.response-desc strong {
  font-weight: 700;
}

/* ──── FORM ──── */
.form-section {
  background: #f9fafb;
  padding: 1.5rem;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-label .required {
  color: #2D7C4A;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  border-radius: 0.25rem;
}

.form-input:focus {
  border-color: #2D7C4A;
  box-shadow: 0 0 0 3px rgba(45, 124, 74, 0.1);
}

textarea.form-input {
  resize: none;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.spinner {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success State */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
  margin-bottom: 0.75rem;
}

.success-icon svg {
  color: #ffffff;
  width: 28px;
  height: 28px;
}

.success-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.success-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* ──── SCROLL ANIMATIONS ──── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ──── 404 PAGE ──── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
}

.not-found-card {
  width: 100%;
  max-width: 32rem;
  margin: 0 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.not-found-icon {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.not-found-icon .pulse-bg {
  position: absolute;
  inset: 0;
  background: #fee2e2;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  width: 4rem;
  height: 4rem;
  margin: auto;
}

.not-found-icon svg {
  position: relative;
  width: 4rem;
  height: 4rem;
  color: #ef4444;
}

.not-found h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.not-found h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
}

.not-found p {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-blue svg {
  width: 1rem;
  height: 1rem;
}

/* ──── FOOTER ──── */
.site-footer {
  background: #111827;
  color: #d1d5db;
}

.footer-grid-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D7C4A;
}

.footer-logo-icon span {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2937;
  transition: background 0.2s ease;
  color: #d1d5db;
}

.social-icon:hover {
  background: #16a34a;
}

.footer-col {
  /* Column styles */
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a:hover {
  color: #4ade80;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: color 0.2s ease;
  display: block;
}

.footer-contact a:hover {
  color: #4ade80;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
}

.footer-bottom-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ──── WHATSAPP SVG ICON ──── */
.wa-icon path {
  fill: currentColor;
}

/* ──── CONTACT INFO SPACE ──── */
.contact-info-space {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
