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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F5F7F0;
  color: #1A1A2E;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 51, 16, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@supports (backdrop-filter: blur(12px)) {
  .navbar { background: rgba(13, 51, 16, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.navbar.scrolled {
  background: rgba(13, 51, 16, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

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

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
}

.nav-logo img {
  display: block;
}

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

.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links li a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.signin-btn {
  background: #1B5E20 !important;
  color: white !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.signin-btn:hover {
  background: #2E7D32 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/ajlfront.jpeg') center/cover no-repeat;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,51,16,0.75) 0%, rgba(27,94,32,0.55) 50%, rgba(13,51,16,0.8) 100%);
}

.hero-section .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.03;
  background-image: radial-gradient(circle at 25% 25%, white 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 50px;
  color: #81C784;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-highlight {
  background: linear-gradient(135deg, #81C784, #A5D6A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(27,94,32,0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(27,94,32,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section {
  padding: 96px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 18px;
  background: #E8F5E9;
  color: #1B5E20;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0D3310;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1B5E20, #4CAF50);
  margin: 14px auto 18px;
  border-radius: 2px;
}

.section-subtitle {
  color: #4A5568;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-about { background: #FFFFFF; }
.section-services { background: #F5F7F0; }
.section-why { background: #FFFFFF; }
.section-contact {
  background: linear-gradient(135deg, #F5F7F0 0%, #EEF2EC 100%);
  position: relative;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,94,32,0.08), transparent);
}

.section-contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,94,32,0.08), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: start;
}

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

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0D3310;
  margin-bottom: 16px;
}

.about-text p {
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-text strong { color: #1B5E20; }

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #F5F7F0;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.highlight-item { text-align: center; }

.highlight-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B5E20;
}

.highlight-item p {
  font-size: 0.75rem;
  color: #4A5568;
  margin-top: 4px;
  font-weight: 500;
}

.about-image { display: flex; align-items: center; justify-content: center; }

.about-image-card {
  background: linear-gradient(145deg, #E8F5E9, #C8E6C9);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #A5D6A7;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about-image-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(27,94,32,0.05) 0%, transparent 70%);
}

.about-image-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: #1B5E20;
  box-shadow: 0 4px 20px rgba(27,94,32,0.1);
}

.about-image-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0D3310;
  margin-bottom: 4px;
}

.about-image-card p {
  color: #4A5568;
  font-size: 0.9rem;
  margin: 0;
}

.about-image-card span {
  color: #4A5568;
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}

.about-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 20px;
  background: #1B5E20;
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.quote-card blockquote {
  margin: 0;
}

.quote-card blockquote p {
  font-size: 1rem !important;
  line-height: 1.7;
  color: #0D3310 !important;
  font-style: italic;
  font-weight: 500;
}

.quote-author {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #1B5E20;
  font-weight: 600;
}

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

.card {
  background: white;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B5E20;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0D3310;
  margin-bottom: 12px;
}

.card p {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.7;
}

.mission-cards { margin-top: 20px; gap: 24px; }

.mission-card {
  position: relative;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
}

.mission-card.featured {
  border-color: #1B5E20;
  background: linear-gradient(135deg, #F5F7F0, #E8F5E9);
}

.card-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(27,94,32,0.06);
}

.mission-card .card-icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
}

.mission-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mission-card p {
  margin: 0;
}

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

.service-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #1B5E20;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: #1B5E20;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D3310;
  margin-bottom: 10px;
}

.service-card p {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.why-item {
  background: #F5F7F0;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: #1B5E20;
  background: white;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: #1B5E20;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0D3310;
  margin-bottom: 8px;
}

.why-item p {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-text-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-accent-bar {
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #1B5E20, #4CAF50);
  border-radius: 2px;
}

.contact-accent-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
}

.contact-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0D3310;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.contact-highlight {
  color: #1B5E20;
  border-bottom: 3px solid rgba(27,94,32,0.15);
  padding-bottom: 2px;
}

.contact-text p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.contact-text p:last-of-type {
  margin-bottom: 28px;
}

.contact-text-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E8EDE8;
}

.contact-follow-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8AA39A;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  background: #F0F4F0;
  border-radius: 20px;
  white-space: nowrap;
}

.contact-follow-links {
  display: flex;
  gap: 8px;
}

.contact-follow-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F0F4F0;
  color: #4A5568;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.contact-follow-links a:hover {
  background: #1B5E20;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27,94,32,0.2);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid #E8EDE8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.contact-card-row:hover {
  border-color: rgba(27,94,32,0.2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B5E20;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-row:hover .contact-card-icon {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
  box-shadow: 0 4px 16px rgba(27,94,32,0.15);
}

.contact-card-body {
  min-width: 0;
}

.contact-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #8AA39A;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.contact-card-body a {
  color: #1B5E20;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.contact-card-body a:hover {
  color: #0D3310;
}

.contact-card-body p {
  margin: 0;
  color: #4A5568;
  font-size: 0.88rem;
  line-height: 1.4;
}

footer {
  background: #0D3310;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
}

.footer-brand .brand-name {
  display: block;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #1B5E20;
  color: white;
  transform: translateY(-2px);
}

.footer-links h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.25s ease;
}

.footer-links a:hover { color: white; }

.footer-links a i {
  font-size: 0.75rem;
  width: 18px;
  color: rgba(255,255,255,0.2);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-quote {
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 4px;
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.animate-fade-in.visible { opacity: 1; transform: translateY(0); }

.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.animate-scale-in.visible { opacity: 1; transform: scale(1); }

.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.animate-slide-up.visible { opacity: 1; transform: translateY(0); }

/* ── Hero stats counter animation ── */
.hero-stat {
  position: relative;
}
.hero-stat::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4CAF50, #81C784);
  transition: width 0.5s ease 0.3s;
  border-radius: 1px;
}
.hero-stat.visible::after { width: 40px; }

/* ── Service card icon animation ── */
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
}
.service-icon {
  transition: transform 0.3s ease;
}

/* ── Why item number decoration ── */
.why-item {
  position: relative;
  overflow: hidden;
}

/* ── Section scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator::after {
  content: '';
  width: 3px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ── Hero stat entrance delay ── */
.hero-stat:nth-child(1) { transition-delay: 0s; }
.hero-stat:nth-child(2) { transition-delay: 0.1s; }
.hero-stat:nth-child(3) { transition-delay: 0.2s; }
.hero-stat:nth-child(4) { transition-delay: 0.3s; }

@media (max-width: 1200px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-text h3 { font-size: 1.5rem; }
  .contact-card-row:hover { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13,51,16,0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 16px; width: 100%; }
  .signin-btn { margin-left: 0; }
  .nav-toggle { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  section { padding: 64px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .about-highlights { grid-template-columns: 1fr; }
}

.nav-container,
.section-container,
.footer-content,
.footer-bottom {
  padding-left: 16px;
  padding-right: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-content {
  padding: 0 16px;
}

.hero-content h1 {
  word-break: break-word;
  hyphens: auto;
}

.about-image-card {
  width: 100%;
}

.contact-card-row {
  padding: 16px 18px;
}

.footer-brand img {
  max-width: 200px;
}

.hero-content p br {
  display: none;
}

.nav-logo img {
  max-width: 160px;
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-content h1 br {
    display: none;
  }
}
