:root {
  --contact-card-bg:  #F5F3EE;
}

.lang-btn{
      background-color: rgba(255,255,255,0.12);
      color: white;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-account {
      background-color: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-account svg {
      stroke: white;
    }
    .nav-hero-burger{
      background-color: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .nav-hero-burger span{
      background: white;
    }
    .btn-contact{
      background-color: white !important;
      color: var(--color-dark) !important;
    }

.contact-hero {
  background-color: var(--color-dark);
  overflow: visible;
  position: relative;
  z-index: 1;
}

.contact-hero-inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 180px;
}

.contact-hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(252,250,247,0.55);
  max-width: 100%;
  margin: 22px 0 28px;
}

.contact-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(252,250,247,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 16px;
  white-space: nowrap;
}

.contact-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green-btn);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.contact-hero-photo {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-hero-photo:nth-child(1) { width: 180px; height: 220px; margin-top: 20px; }
.contact-hero-photo:nth-child(2) { width: 160px; height: 200px; margin-top: 50px; }

.contact-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.contact-cards-section {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  padding-bottom: 80px;
}

.contact-cards-inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 80px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 0;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.contact-card-body {
  padding: 44px 44px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-dark);
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

.contact-card-title .italic-light {
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(26,45,34,0.38);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.contact-card-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(26,45,34,0.6);
  text-align: center;
  margin: 0;
}

.contact-card-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.contact-card-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px;
  border-radius: 15px;
}
.contact-card-contact-item:hover {
  background-color: #f5f3ee8a;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon.phone { background: #FF6B4A; }
.contact-card-icon.email { background: #5B6EF5; }

.contact-card-icon svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-contact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.contact-card-contact-lines a,
.contact-card-contact-lines span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-contact-lines a:hover { color: #5B6EF5; }

.contact-card-footer {
  padding: 16px 44px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.contact-card-footer p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(26,45,34,0.38);
  margin: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.contact-form-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 2px;
  line-height: 1.1;
}

.contact-form-title .italic-light {
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(26,45,34,0.38);
  font-size: clamp(2rem, 3vw, 2.7rem);
  display: block;
  line-height: 1.1;
  margin-bottom: 28px;
}

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

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

.contact-field { position: relative; }

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-dark);
  background: #F5F3EE;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(26,45,34,0.38); }

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--color-green-btn);
  background: #fff;
}

.contact-field textarea { resize: none; height: 110px; }

.contact-field .select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(26,45,34,0.4);
  font-size: 0.7rem;
}

.contact-form-send-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-send {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-green-btn);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(183,240,13,0.3);
}

.btn-send:hover {
  transform: scale(1.08) rotate(-8deg);
  opacity: 0.9;
  box-shadow: 0 6px 28px rgba(183,240,13,0.45);
}

.btn-send svg {
  width: 22px; height: 22px;
  stroke: var(--color-dark); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(183,240,13,0.12);
  border: 1px solid rgba(183,240,13,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-dark);
  margin-top: 8px;
}

.contact-success-msg.visible { display: flex; }

.contact-success-msg svg {
  width: 18px; height: 18px;
  stroke: var(--color-dark); fill: none;
  stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0;
}

.contact-field-error {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #e05252;
  margin-top: 4px;
  padding-left: 4px;
  display: none;
}

.contact-field.has-error input,
.contact-field.has-error textarea,
.contact-field.has-error select { border-color: #e05252; }
.contact-field.has-error .contact-field-error { display: block; }

.cls-footer-bg   { fill: var(--color-dark); background-color: var(--color-dark); }
.cls-footer-hello { fill: var(--color-green-dark); }
.footer-bottom   { background-color: var(--color-green-dark); }


@media (max-width: 1024px) {
  .contact-hero-inner,
  .contact-cards-inner { padding-left: 40px; padding-right: 40px; }
  .contact-cards-grid  { gap: 14px; }
  .contact-card-body,
  .contact-form-card   { padding: 32px 32px 28px; }
  .contact-card-footer { padding: 14px 32px; }
}

@media (max-width: 768px) {
  .contact-hero-inner,
  .contact-cards-inner { padding-left: 20px; padding-right: 20px; }
  .contact-hero-inner  { padding-bottom: 150px; text-align: center;}
  .contact-cards-section { margin-top: -100px; padding-bottom: 48px; }
  .contact-cards-grid  { grid-template-columns: 1fr; gap: 14px; }
  .reveal.visible {justify-content: center;}
  .contact-card-contacts {gap: 0;}
  .contact-form-row    { grid-template-columns: 1fr; }
  .contact-card-body,
  .contact-form-card   { padding: 28px 24px 22px; }
  .contact-card-footer { padding: 12px 24px; }
}

.contact-location-section {
  background-color: var(--contact-card-bg);
  padding: 90px 0 100px;
}

.contact-location-inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 80px;
}

.contact-location-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.contact-location-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(26,45,34,0.6);
  padding-left: 150px;
  text-align: end;
  align-self: end;
}

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

.contact-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #3a4f46;
  height: 480px;
}

#contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter:
    grayscale(1)
    sepia(0.1)
    hue-rotate(25deg)
    saturate(2.75)
    brightness(0.98)
    contrast(1)
}

.contact-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  z-index: 2;
}

.contact-map-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green-btn);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.contact-map-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.contact-map-zoom button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-weight: 500;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-map-zoom button:hover { background: #f5f5f5; }

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

.contact-address-card {
  background: var(--color-dark);
  border-radius: 20px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-address-card-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-green-btn);
  margin: 0;
}

.contact-address-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 4px;
}

.contact-address-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.contact-address-btns {
  display: flex;
  gap: 10px;
}

.contact-hours-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-hours-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,45,34,0.4);
  margin-bottom: 18px;
}

.contact-hours-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-green-btn);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.contact-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-hours-row:last-child { border-bottom: none; }

.contact-hours-day {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}

.contact-hours-time {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
  font-weight: 500;
}

.contact-hours-time.muted {
  color: rgba(26,45,34,0.35);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .contact-location-inner { padding: 0 40px; }
  .contact-location-header { grid-template-columns: 1fr; gap: 20px; }
  .contact-location-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 360px; }
  .contact-location-desc { text-align: center; padding-left: 0;}
  .contact-location-header{text-align: center;}
  .contact-address-btns {justify-content: center;}
}

@media (max-width: 768px) {
  .contact-location-inner { padding: 0 20px; }
  .contact-location-section { padding: 60px 0 70px; }
  .contact-map-wrap { height: 300px; }
}

.contact-map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-marker-dot {
  width: 20px;
  height: 20px;
  background: var(--color-green-btn);
  border: 3px solid var(--color-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}

.contact-map-marker-pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(183,240,13,0.25);
  animation: marker-pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes marker-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-badge-dot,
  .contact-map-badge-dot,
  .contact-hours-label-dot,
  .contact-map-marker-pulse {
    animation: none;
  }
}
