/* TAPAS ENTERPRISE — Contact Us (te-contact-) */
.page-contact-te {
  --te-contact-gold: #f5b800;
  --te-contact-orange: #e87a1e;
  --te-contact-brown: #3d2814;
  --te-contact-charcoal: #2a2118;
  --te-contact-beige: #f7f3ed;
  --te-contact-beige-dark: #ede6da;
  --te-contact-green: #1a7a4a;
  --te-contact-green-hover: #c45e0a;
  --te-contact-gradient: linear-gradient(105deg, #3d2814 0%, #c45e0a 55%, #e87a1e 100%);
  --te-contact-heading-gradient: linear-gradient(120deg, #3d2814 0%, #c45e0a 45%, #e87a1e 100%);
}

.page-contact-te .te-contact-main {
  overflow-x: hidden;
}

.page-contact-te [id] {
  scroll-margin-top: calc(var(--header-h, 116px) + 20px);
}

/* Reveal */
.te-contact-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.te-contact-reveal--left {
  transform: translateX(-28px);
}

.te-contact-reveal--left.is-visible {
  transform: translateX(0);
}

.te-contact-reveal--right {
  transform: translateX(28px);
}

.te-contact-reveal--right.is-visible {
  transform: translateX(0);
}

.te-contact-stagger > .te-contact-reveal,
.te-contact-stagger > * {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.te-contact-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--te-contact-orange);
  margin-bottom: 0.75rem;
}

.te-contact-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--te-contact-gold), var(--te-contact-orange));
  margin-right: 0.6rem;
  vertical-align: middle;
}

.te-contact-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--te-contact-brown);
  margin-bottom: 1rem;
}

.te-contact-title .te-contact-accent {
  background: var(--te-contact-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.te-contact-desc {
  font-size: 1.02rem;
  color: rgba(61, 40, 20, 0.72);
  line-height: 1.8;
  max-width: 56ch;
}

.te-contact-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--te-contact-gold), transparent);
  border-radius: 2px;
  margin-top: 1.25rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.te-contact-line.is-visible {
  transform: scaleX(1);
}

.te-contact-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Buttons */
.te-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}

.te-contact-btn--primary {
  color: #fff;
  background: var(--te-contact-green);
  box-shadow: 0 4px 18px rgba(26, 122, 74, 0.35);
}

.te-contact-btn--primary:hover {
  background: var(--te-contact-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 94, 10, 0.4);
}

.te-contact-btn--ghost {
  color: var(--te-contact-brown);
  background: #fff;
  border: 1px solid rgba(92, 61, 30, 0.15);
}

.te-contact-btn--ghost:hover {
  border-color: var(--te-contact-orange);
  color: #c45e0a;
  transform: translateY(-2px);
}

.te-contact-btn--light {
  color: var(--te-contact-brown);
  background: #fff;
}

.te-contact-btn--light:hover {
  background: var(--te-contact-gold);
  transform: translateY(-2px);
}

.te-contact-btn--outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.te-contact-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--te-contact-gold);
  transform: translateY(-2px);
}

/* 1 Banner — matches About Us inner-page style */
.te-contact-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(380px, 52vh, 520px);
  padding: calc(var(--header-h, 116px) + 2rem) 0 2.5rem;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.te-contact-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.te-contact-banner__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #141820 0%, #2a2118 40%, #1a2830 100%);
}

.te-contact-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.te-contact-banner.is-no-video .te-contact-banner__video {
  display: none;
}

.te-contact-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 18, 22, 0.55) 0%, rgba(20, 16, 12, 0.82) 45%, rgba(26, 20, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(26, 20, 16, 0.4) 0%, rgba(42, 33, 24, 0.25) 50%, rgba(26, 20, 16, 0.4) 100%);
}

.te-contact-banner__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.04) 2px,
    rgba(255, 255, 255, 0.04) 4px
  );
  pointer-events: none;
}

.te-contact-banner__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  min-height: clamp(280px, 38vh, 380px);
}

.te-contact-banner__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.te-contact-banner__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em 0.28em;
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.te-contact-banner__title-line {
  color: #fff;
}

.te-contact-banner__title-accent {
  color: var(--te-contact-gold);
  text-shadow: 0 0 40px rgba(245, 184, 0, 0.25);
}

.te-contact-banner__desc {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(247, 243, 237, 0.88);
  max-width: 42rem;
}

.te-contact-banner__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(247, 243, 237, 0.75);
}

.te-contact-banner__crumb a {
  color: rgba(247, 243, 237, 0.85);
  transition: color 0.25s;
}

.te-contact-banner__crumb a:hover {
  color: var(--te-contact-gold);
}

.te-contact-banner__crumb-sep {
  color: var(--te-contact-gold);
  font-weight: 500;
  opacity: 0.95;
}

/* 2 Quick connect */
.te-contact-quick {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--te-contact-beige) 42%, #fff 100%);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.te-contact-quick__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.te-contact-quick__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: teContactQuickOrb 14s ease-in-out infinite alternate;
}

.te-contact-quick__orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.35), transparent 70%);
}

.te-contact-quick__orb--2 {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: -15%;
  right: -6%;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.28), transparent 70%);
  animation-delay: -5s;
}

@keyframes teContactQuickOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(24px, -18px) scale(1.08);
  }
}

.te-contact-quick__wrap {
  position: relative;
  z-index: 1;
}

.te-contact-quick__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.te-contact-quick__head .te-contact-line {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.te-contact-quick__intro {
  margin: 0 auto;
}

.te-contact-label--pulse.is-visible::before {
  animation: teContactLabelPulse 2s ease-in-out 0.4s infinite;
}

@keyframes teContactLabelPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(0.85);
  }
}

.te-contact-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.te-contact-quick__grid .te-contact-quick-card.te-contact-reveal {
  transform: none;
  transition: none;
}

.te-contact-quick__grid .te-contact-quick-card.te-contact-reveal.is-visible {
  opacity: 0;
}

.te-contact-quick-card {
  position: relative;
  opacity: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(92, 61, 30, 0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(42, 33, 24, 0.04);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s,
    border-color 0.35s;
}

.te-contact-quick-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--te-contact-gold), var(--te-contact-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-quick-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.te-contact-quick-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 122, 30, 0.3);
  box-shadow: 0 20px 44px rgba(42, 33, 24, 0.12);
}

.te-contact-quick-card:hover .te-contact-quick-card__accent {
  transform: scaleX(1);
}

.te-contact-quick-card:hover .te-contact-quick-card__shine {
  transform: translateX(120%);
}

.te-contact-quick-card:hover .te-contact-quick-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(232, 122, 30, 0.35);
}

.te-contact-quick__grid.is-animated .te-contact-quick-card {
  animation: teContactQuickIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) calc(0.12s + var(--i, 0) * 0.1s) both;
}

.te-contact-quick__grid.is-animated .te-contact-quick-card .te-contact-quick-card__icon {
  animation: teContactQuickIconPop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) calc(0.35s + var(--i, 0) * 0.1s) both;
}

@keyframes teContactQuickIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes teContactQuickIconPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.te-contact-quick-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--te-contact-orange), #c45e0a);
  color: #fff;
  box-shadow: 0 6px 16px rgba(232, 122, 30, 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.te-contact-quick-card__icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 1px solid rgba(245, 184, 0, 0.4);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}

.te-contact-quick-card:hover .te-contact-quick-card__icon::after {
  opacity: 1;
  transform: scale(1.06);
}

.te-contact-quick-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.te-contact-quick-card h3 {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--te-contact-brown);
  margin: 0 0 0.45rem;
}

.te-contact-quick-card__body {
  position: relative;
  z-index: 1;
}

.te-contact-quick-card p,
.te-contact-quick-card a {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(61, 40, 20, 0.72);
  margin: 0;
  text-decoration: none;
  transition: color 0.25s;
}

.te-contact-quick-card__muted {
  color: rgba(61, 40, 20, 0.5);
  font-size: 0.8rem;
}

.te-contact-quick-card a:hover {
  color: var(--te-contact-orange);
}

.te-contact-quick__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 2rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(61, 40, 20, 0.55);
  text-align: center;
}

.te-contact-quick__note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--te-contact-green);
  box-shadow: 0 0 0 0 rgba(26, 122, 74, 0.5);
  animation: teContactNotePulse 2s ease-in-out infinite;
}

@keyframes teContactNotePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 122, 74, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(26, 122, 74, 0);
  }
}

/* 3 Form section */
.te-contact-form-section {
  position: relative;
  background: linear-gradient(180deg, var(--te-contact-beige) 0%, #f0ebe3 50%, var(--te-contact-beige) 100%);
  overflow: hidden;
}

.te-contact-form-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.te-contact-form-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: teContactFormOrb 16s ease-in-out infinite alternate;
}

.te-contact-form-section__orb--1 {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  top: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.3), transparent 70%);
}

.te-contact-form-section__orb--2 {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  bottom: 0;
  left: -8%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.28), transparent 70%);
  animation-delay: -6s;
}

@keyframes teContactFormOrb {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-20px, 16px);
  }
}

.te-contact-form-section__wrap {
  position: relative;
  z-index: 1;
}

.te-contact-form-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.te-contact-form-section__head .te-contact-line {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.te-contact-form-section__intro {
  margin: 0 auto;
}

.te-contact-form-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1.08fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}

.te-contact-form-section__layout:not(.is-animated) .te-contact-info,
.te-contact-form-section__layout:not(.is-animated) .te-contact-form-wrap {
  opacity: 0;
}

.te-contact-form-section__layout.is-animated .te-contact-info {
  animation: teContactInfoIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.te-contact-form-section__layout.is-animated .te-contact-form-wrap {
  animation: teContactFormWrapIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes teContactInfoIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes teContactFormWrapIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.te-contact-info {
  position: relative;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, var(--te-contact-charcoal) 0%, #3d2814 55%, #2a2118 100%);
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(42, 33, 24, 0.22);
  border: 1px solid rgba(245, 184, 0, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}

.te-contact-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(42, 33, 24, 0.28);
}

.te-contact-info__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.15), transparent 65%);
  pointer-events: none;
  animation: teContactInfoGlow 8s ease-in-out infinite alternate;
}

@keyframes teContactInfoGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.te-contact-info__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.35), transparent 55%);
  border-radius: 16px 0 100% 0;
  pointer-events: none;
}

.te-contact-info h3 {
  position: relative;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  color: #fff;
}

.te-contact-info > p {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.72);
  margin: 0 0 1.75rem;
}

.te-contact-info__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.te-contact-info__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-12px);
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.te-contact-info__list.is-animated .te-contact-info__item {
  animation: teContactInfoItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(0.25s + var(--i, 0) * 0.1s) both;
}

@keyframes teContactInfoItemIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.te-contact-info__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 184, 0, 0.25);
  transform: translateX(6px);
}

.te-contact-info__list .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(245, 184, 0, 0.25), rgba(232, 122, 30, 0.15));
  color: var(--te-contact-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s;
}

.te-contact-info__item:hover .icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 6px 16px rgba(245, 184, 0, 0.25);
}

.te-contact-info__list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--te-contact-gold);
  margin-bottom: 0.2rem;
}

.te-contact-info__list span,
.te-contact-info__list a {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.88);
  text-decoration: none;
  transition: color 0.25s;
}

.te-contact-info__list a:hover {
  color: var(--te-contact-gold);
}

.te-contact-info__iso {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--te-contact-gold);
}

.te-contact-info__iso svg {
  flex-shrink: 0;
  animation: teContactIsoShield 3s ease-in-out infinite;
}

@keyframes teContactIsoShield {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.te-contact-form-wrap {
  position: relative;
  padding: 2rem 1.85rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(92, 61, 30, 0.1);
  box-shadow: 0 16px 48px rgba(42, 33, 24, 0.08);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}

.te-contact-form-wrap:hover {
  box-shadow: 0 22px 56px rgba(42, 33, 24, 0.12);
}

.te-contact-form-wrap__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--te-contact-gold), var(--te-contact-orange), var(--te-contact-gold));
  background-size: 200% 100%;
  animation: teContactFormAccent 4s linear infinite;
}

@keyframes teContactFormAccent {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.te-contact-form-wrap__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.4) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-form-wrap:hover .te-contact-form-wrap__shine {
  transform: translateX(130%);
}

.te-contact-form-wrap h3 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--te-contact-brown);
  margin: 0 0 0.35rem;
}

.te-contact-form-wrap > p {
  position: relative;
  font-size: 0.88rem;
  color: rgba(61, 40, 20, 0.62);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.te-contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.te-contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.te-contact-field--anim {
  opacity: 0;
  transform: translateY(14px);
}

.te-contact-form.is-animated .te-contact-field--anim {
  animation: teContactFieldIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) calc(0.15s + var(--i, 0) * 0.06s) both;
}

@keyframes teContactFieldIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.te-contact-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--te-contact-brown);
  transition: color 0.25s;
}

.te-contact-field.is-focused label {
  color: var(--te-contact-orange);
}

.te-contact-field label span {
  color: var(--te-contact-orange);
}

.te-contact-field input,
.te-contact-field select,
.te-contact-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--te-contact-brown);
  background: var(--te-contact-beige);
  border: 1px solid rgba(92, 61, 30, 0.12);
  border-radius: 10px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s;
}

.te-contact-field input:hover,
.te-contact-field select:hover,
.te-contact-field textarea:hover {
  border-color: rgba(232, 122, 30, 0.3);
  background: #fff;
}

.te-contact-field.is-focused input,
.te-contact-field.is-focused select,
.te-contact-field.is-focused textarea {
  outline: none;
  background: #fff;
  border-color: var(--te-contact-orange);
  box-shadow: 0 0 0 4px rgba(232, 122, 30, 0.12);
  transform: translateY(-1px);
}

.te-contact-field textarea {
  min-height: 120px;
  resize: vertical;
}

.te-contact-form__note {
  font-size: 0.75rem;
  color: rgba(61, 40, 20, 0.55);
  line-height: 1.5;
}

.te-contact-form__actions {
  margin-top: 0.25rem;
}

.te-contact-btn--send {
  position: relative;
  overflow: hidden;
}

.te-contact-btn--send span,
.te-contact-btn--send svg {
  position: relative;
  z-index: 1;
}

.te-contact-btn--send svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-btn--send:hover svg {
  transform: translateX(4px);
}

.te-contact-btn--send::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.te-contact-btn--send:hover::before {
  transform: translateX(100%);
}

.te-contact-btn--send.is-sent {
  animation: teContactBtnPop 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes teContactBtnPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.te-contact-form.is-success .te-contact-form__success {
  display: block;
  animation: teContactSuccessIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes teContactSuccessIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.te-contact-form__success {
  display: none;
  padding: 1rem 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: #1a5c38;
  background: rgba(26, 122, 74, 0.1);
  border: 1px solid rgba(26, 122, 74, 0.25);
  border-radius: 10px;
}

.te-contact-form-section__layout .te-contact-info.te-contact-reveal,
.te-contact-form-section__layout .te-contact-form-wrap.te-contact-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* 4 Map */
.te-contact-map-section {
  background: #fff;
}

.te-contact-map-section__head {
  margin-bottom: 1.75rem;
}

.te-contact-map-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(92, 61, 30, 0.1);
  box-shadow: 0 16px 40px rgba(42, 33, 24, 0.1);
  background: var(--te-contact-beige);
}

.te-contact-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(245, 184, 0, 0.15);
  z-index: 1;
}

.te-contact-map-frame iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 0;
}

/* 5 Why contact */
.te-contact-why {
  background: var(--te-contact-beige);
}

.te-contact-why__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.te-contact-why__head .te-contact-line {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.te-contact-why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

a.te-contact-why-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.te-contact-why-card {
  padding: 1.35rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(92, 61, 30, 0.08);
  border-radius: 12px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  scroll-margin-top: calc(var(--header-h, 116px) + 24px);
}

.te-contact-why-card.is-highlight {
  border-color: rgba(232, 122, 30, 0.45);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.35), 0 16px 36px rgba(42, 33, 24, 0.12);
  transform: translateY(-4px);
}

.te-contact-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.35);
  box-shadow: 0 12px 28px rgba(42, 33, 24, 0.08);
}

.te-contact-why-card__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--te-contact-orange);
  margin-bottom: 0.65rem;
}

.te-contact-why-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--te-contact-brown);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.te-contact-why-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(61, 40, 20, 0.65);
}

/* 6 FAQ */
.te-contact-faq {
  background: #fff;
}

.te-contact-faq__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.te-contact-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.te-contact-accordion__item {
  border: 1px solid rgba(92, 61, 30, 0.1);
  border-radius: 10px;
  background: var(--te-contact-beige);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.te-contact-accordion__item.is-open {
  border-color: rgba(232, 122, 30, 0.3);
  box-shadow: 0 8px 24px rgba(42, 33, 24, 0.06);
  background: #fff;
}

.te-contact-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.15rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  color: var(--te-contact-brown);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
}

.te-contact-accordion__trigger:hover {
  color: var(--te-contact-orange);
}

.te-contact-accordion__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--te-contact-orange);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-accordion__item.is-open .te-contact-accordion__icon {
  transform: rotate(180deg);
}

.te-contact-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-contact-accordion__item.is-open .te-contact-accordion__panel {
  grid-template-rows: 1fr;
}

.te-contact-accordion__panel-inner {
  overflow: hidden;
}

.te-contact-accordion__panel p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(61, 40, 20, 0.68);
}

/* Responsive */
@media (max-width: 1100px) {
  .te-contact-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .te-contact-quick__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .te-contact-form-section__layout,
  .te-contact-faq__layout {
    grid-template-columns: 1fr;
  }

  .te-contact-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .te-contact-quick {
    margin-top: -1.5rem;
  }

  .te-contact-quick__grid {
    grid-template-columns: 1fr;
  }

  .te-contact-form__row {
    grid-template-columns: 1fr;
  }

  .te-contact-why__grid {
    grid-template-columns: 1fr;
  }

  .te-contact-banner {
    min-height: clamp(300px, 44vh, 400px);
    padding: calc(var(--header-h, 116px) + 1.25rem) 0 2rem;
  }

  .te-contact-banner__inner {
    min-height: auto;
    gap: 1.35rem;
  }

  .te-contact-banner__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .te-contact-banner__desc {
    font-size: 0.92rem;
    line-height: 1.65;
    padding: 0 0.25rem;
  }

  .te-contact-section {
    padding: clamp(2.25rem, 6vw, 3.25rem) 0;
  }

  .te-contact-form-wrap,
  .te-contact-info {
    padding: 1.35rem 1.15rem;
  }

  .te-contact-form__actions {
    flex-direction: column;
  }

  .te-contact-form__actions .te-contact-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .te-contact-accordion__trigger {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .te-contact-quick-card {
    padding: 1.15rem 1rem;
  }

  .te-contact-quick-card__title {
    font-size: 0.95rem;
  }

  .te-contact-field input,
  .te-contact-field textarea,
  .te-contact-field select {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .te-contact-reveal,
  .te-contact-reveal--left,
  .te-contact-reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .te-contact-banner__video {
    transform: none !important;
  }

  .te-contact-accordion__panel {
    transition: none;
  }

  .te-contact-accordion__item.is-open .te-contact-accordion__panel {
    grid-template-rows: 1fr;
  }

  .te-contact-quick__grid.is-animated .te-contact-quick-card,
  .te-contact-quick__grid.is-animated .te-contact-quick-card .te-contact-quick-card__icon {
    animation: none;
  }

  .te-contact-quick-card {
    opacity: 1;
  }

  .te-contact-quick__orb,
  .te-contact-label--pulse.is-visible::before,
  .te-contact-quick__note-dot {
    animation: none;
  }

  .te-contact-form-section__orb,
  .te-contact-form-wrap__accent,
  .te-contact-info__glow,
  .te-contact-info__iso svg,
  .te-contact-form-section__layout.is-animated .te-contact-info,
  .te-contact-form-section__layout.is-animated .te-contact-form-wrap,
  .te-contact-info__list.is-animated .te-contact-info__item,
  .te-contact-form.is-animated .te-contact-field--anim {
    animation: none;
  }

  .te-contact-info__item,
  .te-contact-field--anim,
  .te-contact-form-section__layout:not(.is-animated) .te-contact-info,
  .te-contact-form-section__layout:not(.is-animated) .te-contact-form-wrap {
    opacity: 1;
    transform: none;
  }
}
