.contact-page {
  min-height: 100vh;
  background: var(--rk-light);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 66px;
  background: var(--rk-dark);
  color: var(--rk-white);
}

.contact-hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 143, 46, .28) 0%, rgba(31, 143, 46, 0) 70%);
}

.contact-hero-inner {
  position: relative;
  animation: rkHeroIn .8s cubic-bezier(.22, .61, .36, 1) .12s both;
}

.contact-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .64);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.contact-back:hover {
  color: var(--rk-white);
}

.contact-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 80px);
  line-height: .92;
}

.contact-hero p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
}

.contact-content {
  padding: 64px 0 90px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  border: 1px solid var(--rk-line);
  border-radius: 22px;
  background: var(--rk-white);
  box-shadow: 0 1px 2px rgba(20, 22, 12, .04);
}

.contact-form-card {
  padding: 38px;
  scroll-margin-top: 110px;
  box-shadow: 0 10px 30px rgba(20, 22, 12, .06);
}

.contact-form-card h2,
.contact-direct-card h2,
.contact-info-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.contact-form-card > p {
  margin: 8px 0 28px;
  color: #7a7d72;
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-form-status {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid #cfead0;
  border-radius: 14px;
  background: #eef7e9;
  color: #236117;
}

.contact-form-status[hidden] {
  display: none;
}

.contact-form-status span {
  flex-shrink: 0;
  color: var(--rk-green);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-form-status p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-status.is-error {
  border-color: #efc6c0;
  background: #fff1ef;
  color: #8f2f24;
}

.contact-form-status.is-error span {
  color: #b23a2d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-botcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  color: #3f433a;
  font-size: 13.5px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid #e2e1da;
  border-radius: 11px;
  background: #faf9f6;
  color: var(--rk-text);
  font: 500 15px/1.4 var(--rk-font-body);
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 13px 15px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #7a7d72 50%), linear-gradient(135deg, #7a7d72 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--rk-green);
  background: var(--rk-white);
  box-shadow: 0 0 0 3px rgba(31, 143, 46, .15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a4a79c;
}

.contact-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 13px;
  color: var(--rk-white);
  font-size: 16.5px;
}

.contact-submit span {
  font-size: 17px;
  line-height: 1;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-direct-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--rk-dark-soft);
  color: var(--rk-white);
  box-shadow: 0 12px 36px rgba(20, 22, 12, .12);
}

.contact-direct-card h2,
.contact-info-card h2 {
  margin-bottom: 22px;
  font-size: 23px;
}

.contact-direct-copy {
  margin: -10px 0 22px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-direct-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  color: inherit;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}

.contact-direct-list .contact-direct-primary {
  border-color: rgba(92, 194, 58, .34);
  background: var(--rk-green);
  box-shadow: 0 14px 34px rgba(31, 143, 46, .28);
}

.contact-direct-list .contact-direct-primary:hover {
  border-color: rgba(92, 194, 58, .62);
  background: #46bd34;
}

.contact-direct-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 194, 58, .28);
  background: rgba(92, 194, 58, .14);
}

.contact-direct-icon,
.contact-info-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(92, 194, 58, .16);
  color: var(--rk-green-bright);
  font-size: 18px;
  font-weight: 900;
}

.contact-direct-icon-whatsapp {
  background: #25d366;
  color: var(--rk-white);
}

.contact-direct-primary .contact-direct-icon {
  background: rgba(0, 0, 0, .16);
  color: var(--rk-white);
}

.contact-direct-list a > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-direct-list strong {
  color: var(--rk-white);
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
  word-break: break-word;
}

.contact-direct-list small {
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-info-card {
  padding: 30px;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-icon {
  background: #eef7e9;
  color: var(--rk-green);
}

.contact-address strong {
  display: block;
  margin-bottom: 3px;
  color: var(--rk-text);
  font-size: 16px;
  font-weight: 800;
}

.contact-address p {
  margin: 0;
  color: var(--rk-muted);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-divider {
  height: 1px;
  margin: 22px 0 20px;
  background: #efeee8;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
}

.contact-hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-hours dt {
  color: var(--rk-muted);
  font-size: 14.5px;
  font-weight: 600;
}

.contact-hours dd {
  margin: 0;
  color: var(--rk-text);
  font-size: 14.5px;
  font-weight: 800;
  text-align: right;
}

.contact-hours .is-closed {
  color: #b23b3b;
}

.contact-note {
  margin: 16px 0 0;
  color: #8f9388;
  font-size: 12.5px;
  font-weight: 600;
}

.contact-map-card {
  height: 420px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--rk-line);
  border-radius: 20px;
  background: #e9e8e2;
  box-shadow: 0 1px 2px rgba(20, 22, 12, .04);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.16) contrast(1.04);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-top: 122px;
  }

  .contact-content {
    padding: 48px 0 72px;
  }

  .contact-form-card,
  .contact-direct-card,
  .contact-info-card {
    padding: 24px;
  }

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

  .contact-hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-hours dd {
    text-align: left;
  }

  .contact-map-card {
    height: 360px;
  }
}
