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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #162f56;
  background: #f2fdf9;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* ─── NAV ─── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(242, 253, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 184, 138, 0.1);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav-fixed.scrolled {
  background: rgba(242, 253, 249, 0.95);
  box-shadow: 0 4px 30px rgba(6, 15, 26, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #162f56;
  line-height: 1.2;
}

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

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e3f74;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(20, 184, 138, 0.1);
  color: #0d916e;
}

.nav-link-cta {
  background: #162f56;
  color: #f2fdf9 !important;
  margin-left: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link-cta:hover {
  background: #1e3f74;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #162f56;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f2fdf9 0%, #e0f7ed 40%, #d4dfe8 100%);
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(20, 184, 138, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(42, 82, 152, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 253, 249, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: 60px 60px 60px 80px;
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 138, 0.12);
  border: 1px solid rgba(20, 184, 138, 0.25);
  color: #0d916e;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: #060f1a;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title-accent {
  color: #14b88a;
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #1e3f74;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #162f56;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #5079ac;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(20, 184, 138, 0.3);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 600px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 138, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: #162f56;
  color: #f2fdf9;
  box-shadow: 0 4px 20px rgba(22, 47, 86, 0.25);
}

.btn-primary:hover {
  background: #1e3f74;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 47, 86, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: #162f56;
  border: 1px solid rgba(22, 47, 86, 0.15);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: white;
  border-color: rgba(20, 184, 138, 0.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #f2fdf9;
  border: 2px solid rgba(242, 253, 249, 0.5);
}

.btn-outline-light:hover {
  background: rgba(242, 253, 249, 0.15);
  border-color: #f2fdf9;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
}

/* ─── SECTIONS ─── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 64px;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #14b88a;
  margin-bottom: 16px;
  background: rgba(20, 184, 138, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #060f1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5079ac;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: white;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 15, 26, 0.1);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6, 15, 26, 0.15);
  border: 6px solid white;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(20, 184, 138, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: #1e3f74;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(20, 184, 138, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #060f1a;
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: #5079ac;
  line-height: 1.6;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, #f2fdf9 0%, #e0f7ed 100%);
}

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

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(20, 184, 138, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14b88a, #3dd1a0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6, 15, 26, 0.08);
  border-color: rgba(20, 184, 138, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(20, 184, 138, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #060f1a;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: #5079ac;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #14b88a;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card-link:hover {
  gap: 12px;
  color: #0d916e;
}

/* ─── HERD GALLERY ─── */
.herd {
  padding: 120px 0;
  background: white;
}

.herd-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

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

.herd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.herd-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(6, 15, 26, 0.7));
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.herd-gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  min-height: 400px;
}

.herd-gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  min-height: 400px;
}

.herd-gallery-item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.herd-gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 3 / 4;
  min-height: 300px;
}

/* ─── WHY US ─── */
.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, #060f1a 0%, #162f56 50%, #1e3f74 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(20, 184, 138, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

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

.why-us-content .section-label {
  background: rgba(20, 184, 138, 0.2);
}

.why-us-content .section-title {
  color: white;
}

.why-us-text {
  font-size: 1.05rem;
  color: rgba(212, 223, 232, 0.8);
  line-height: 1.85;
  margin-bottom: 40px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-us-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: rgba(242, 253, 249, 0.9);
}

.why-us-item-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(20, 184, 138, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-us-image-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.why-us-image-badge svg {
  color: #14b88a;
  flex-shrink: 0;
}

.why-us-image-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #162f56;
  line-height: 1.4;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #14b88a 0%, #0d916e 100%);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-banner-text {
  font-size: 1.1rem;
  color: rgba(242, 253, 249, 0.85);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: #f2fdf9;
}

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

.contact-text {
  font-size: 1.05rem;
  color: #1e3f74;
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(20, 184, 138, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5079ac;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: #162f56;
  line-height: 1.6;
}

.contact-detail-value a {
  color: #14b88a;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail-value a:hover {
  color: #0d916e;
}

/* ─── FORM ─── */
.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(6, 15, 26, 0.06);
  border: 1px solid rgba(20, 184, 138, 0.1);
}

.contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #060f1a;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #162f56;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d4dfe8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #162f56;
  background: #f2fdf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #14b88a;
  box-shadow: 0 0 0 4px rgba(20, 184, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8bdd4;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #060f1a;
  margin-bottom: 8px;
}

.form-success p {
  color: #5079ac;
  font-size: 0.95rem;
}

/* ─── FOOTER ─── */
.footer {
  background: #060f1a;
  color: rgba(212, 223, 232, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 223, 232, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: #d4dfe8;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4dfe8;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(212, 223, 232, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #14b88a;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: #14b88a;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #3dd1a0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(212, 223, 232, 0.4);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 80px 24px 60px;
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-secondary {
    right: 20px;
    bottom: -20px;
  }

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

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

  .herd-gallery-item--large {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .herd-gallery-item:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .herd-gallery-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .herd-gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 250px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(242, 253, 249, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(20, 184, 138, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-link-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-content {
    padding: 60px 20px 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  .about {
    padding: 80px 0;
  }

  .about-img-secondary {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 16px;
  }

  .about-images {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .services {
    padding: 80px 0;
  }

  .herd {
    padding: 80px 0;
  }

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

  .herd-gallery-item--large,
  .herd-gallery-item:nth-child(2),
  .herd-gallery-item:nth-child(3),
  .herd-gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .why-us {
    padding: 80px 0;
  }

  .why-us-image-badge {
    left: 10px;
    bottom: 10px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .cta-banner-actions {
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
