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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2e20;
  background-color: #FDFCF8;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(253, 252, 248, 0.95);
  box-shadow: 0 4px 30px rgba(45, 90, 61, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: #2D5A3D;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-icon { color: #2D5A3D; }

.nav-logo-text { font-weight: 400; }

.nav-logo-amp {
  font-style: italic;
  color: #6DA056;
}

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

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

.nav-link:hover {
  background: rgba(45, 90, 61, 0.08);
  color: #2D5A3D;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #2D5A3D;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: #244731;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2D5A3D;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 252, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.mobile-menu-link {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2D5A3D;
  border-radius: 12px;
  transition: background 0.2s;
  width: 80%;
  text-align: center;
}

.mobile-menu-link:hover { background: rgba(45, 90, 61, 0.08); }

.mobile-menu-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2D5A3D;
  color: #fff;
  border-radius: 50px;
  padding: 14px 32px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 0;
  background: linear-gradient(160deg, #FDFCF8 0%, #F2F7F3 40%, #E8F0E4 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 25% 25%, #2D5A3D 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #2D5A3D 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0 60px;
  margin-left: 8%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(45, 90, 61, 0.1);
  border: 1px solid rgba(45, 90, 61, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D5A3D;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: #1a2e20;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title-accent {
  color: #2D5A3D;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a6b52;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-image-col {
  flex: 0 0 auto;
  position: relative;
  width: 42%;
  max-width: 520px;
  margin-right: 5%;
  z-index: 2;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45, 90, 61, 0.15);
}

.hero-image--main {
  width: 100%;
  height: 520px;
}

.hero-image--main img,
.hero-image--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image--float {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 220px;
  height: 165px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #FDFCF8;
  box-shadow: 0 16px 40px rgba(45, 90, 61, 0.18);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.5s ease both;
}

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

.hero-stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: #2D5A3D;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #6b8f72;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(45, 90, 61, 0.2);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #2D5A3D;
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
  background: #244731;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 61, 0.35);
}

.btn-secondary {
  background: rgba(253, 252, 248, 0.8);
  color: #2D5A3D;
  border: 1.5px solid rgba(45, 90, 61, 0.25);
}

.btn-secondary:hover {
  background: rgba(45, 90, 61, 0.06);
  border-color: rgba(45, 90, 61, 0.4);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6DA056;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #6DA056;
  border-radius: 2px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2e20;
  line-height: 1.2;
  margin-bottom: 48px;
}

.section-title-line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #2D5A3D, #96c082);
  border-radius: 3px;
  margin-bottom: 16px;
}

.section-title-accent {
  color: #2D5A3D;
  font-style: italic;
}

.section-title-accent--light {
  color: #96c082;
}

.section-title--light .section-title-line {
  background: linear-gradient(90deg, #96c082, #6DA056);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #E8F0E4;
}

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

.service-card {
  background: #FDFCF8;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(45, 90, 61, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 90, 61, 0.12);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 28px 28px 0;
  background: linear-gradient(135deg, #2D5A3D, #4d803a);
  border-radius: 14px;
  color: #fff;
}

.service-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #1a2e20;
  margin: 0 28px;
  padding-top: 16px;
}

.service-card-desc {
  padding: 12px 28px;
  font-size: 0.92rem;
  color: #4a6b52;
  line-height: 1.7;
}

.service-card-img {
  margin: 0 28px 28px;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #FDFCF8;
}

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

.about-image-col {
  position: relative;
}

.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 25px 60px rgba(45, 90, 61, 0.12);
}

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

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #FDFCF8;
  box-shadow: 0 16px 40px rgba(45, 90, 61, 0.15);
  height: 170px;
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 28px; }

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

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.about-value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(109, 160, 86, 0.1));
  border-radius: 12px;
  color: #2D5A3D;
}

.about-value strong {
  display: block;
  font-size: 0.95rem;
  color: #1a2e20;
  margin-bottom: 2px;
}

.about-value-desc {
  font-size: 0.85rem;
  color: #6b8f72;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #E8F0E4;
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 32, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
}

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

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  height: 200px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  height: 220px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #FDFCF8;
}

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

.contact-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a6b52;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

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

.contact-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(109, 160, 86, 0.08));
  border-radius: 14px;
  color: #2D5A3D;
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #1a2e20;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: #4a6b52;
  line-height: 1.6;
}

.contact-detail a {
  color: #2D5A3D;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-detail a:hover { color: #6DA056; }

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.1);
}

.contact-form-col { }

.contact-form-card {
  background: #FDFCF8;
  border: 1.5px solid rgba(45, 90, 61, 0.12);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 50px rgba(45, 90, 61, 0.08);
}

.contact-form-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  color: #1a2e20;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: #6b8f72;
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D5A3D;
}

.form-optional {
  font-weight: 400;
  color: #96c082;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(45, 90, 61, 0.18);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1a2e20;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D5A3D;
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

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

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

.form-success.show { display: flex; }

.form-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2D5A3D, #4d803a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 4px;
}

.form-success-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: #1a2e20;
}

.form-success-text {
  font-size: 0.9rem;
  color: #4a6b52;
  line-height: 1.7;
  max-width: 300px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: #2D5A3D;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.footer-wave svg { width: 100%; height: 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo span { color: #96c082; font-style: italic; }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #96c082;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer-phone a {
  font-size: 1rem;
  font-weight: 600;
  color: #96c082;
  transition: color 0.2s;
}

.footer-phone a:hover { color: #c5dbb5; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-content { margin-left: 0; padding: 40px 24px 60px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-col { width: 80%; max-width: 440px; margin: 0 auto 0; }
  .hero-image--float { left: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-main { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-content { padding: 20px 24px 40px; }
  .hero-image-col { width: 90%; margin: 0 24px; }
  .hero-image--main { height: 360px; }
  .hero-image--float { width: 160px; height: 120px; left: -10px; bottom: -20px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about { padding: 72px 0; }
  .about-image-accent { width: 180px; height: 130px; }
  .gallery { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: 1 / -1; height: 280px; }
  .gallery-item--wide { grid-column: 1 / -1; height: 180px; }
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) { height: 180px; }
  .contact { padding: 72px 0; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-image-col { width: 100%; margin: 0 16px; }
  .hero-image--main { height: 280px; }
  .hero-image--float { display: none; }
  .hero-badge { font-size: 0.72rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .service-card-icon { margin: 20px 20px 0; width: 44px; height: 44px; }
  .service-card-title { margin: 0 20px; font-size: 1.1rem; }
  .service-card-desc { padding: 10px 20px; font-size: 0.85rem; }
  .service-card-img { margin: 0 20px 20px; height: 140px; }
  .contact-form-card { padding: 20px; }
}
