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

:root {
  --teal: #007F80;
  --teal-light: rgba(0, 127, 128, .12);
  --teal-border: #C7DDE1;
  --teal-dark: #005E60;
  --bg: #f5f8f8;
  --white: #ffffff;
  --text: #111;
  --muted: rgba(0, 0, 0, .60);
}

.fab,
.fas,
.far,
.fal,
.fad,
.fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

body {
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  min-height: 100vh;
}

.contact-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}

.contact-hero {
  background: linear-gradient(135deg, rgba(0, 127, 128, .10) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(0, 127, 128, .15);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}

.contact-hero__title {
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.contact-hero__sub {
  color: rgba(0, 0, 0, .70);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--teal-border);
  font-size: 13px;
  color: var(--teal);
  font-weight: 900;
}

.chip i {
  font-size: 12px;
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--teal-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 127, 128, .05);
  animation: fadeUp .5s ease both;
}

.contact-card+.contact-card {
  margin-top: 20px;
}

.card-head {
  margin-bottom: 16px;
}

.card-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--teal);
}

.card-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.form-result {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.form-result.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-result.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

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

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

.form-group label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(0, 0, 0, .75);
}

.form-group label small {
  color: #e74c3c;
  margin-right: 2px;
}

.form-control {
  width: 100%;
  padding: 6px 13px;
  border: 1.5px solid #dce8ea;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: #fafcfc;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 127, 128, .12);
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

select.form-control {
  cursor: pointer;
}

.error-field {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, .15) !important;
}

.field-readonly {
  background: #f0f6f6 !important;
  color: var(--muted) !important;
  cursor: not-allowed;
  border-color: var(--teal-border) !important;
  box-shadow: none !important;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-outline-modern:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--loading {
  opacity: .85;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 127, 128, .25);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

.btn--loading .btn-spinner {
  border-top-color: currentColor;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.btn--shake {
  animation: shake .5s ease;
}

.mini-trust {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mini-faq .faq-item {
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--white);
}

.mini-faq .faq-q {
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
  user-select: none;
}

.mini-faq .faq-q:hover {
  background: #f3f8f9;
}

.mini-faq .faq-q::after {
  content: "▾";
  opacity: .6;
  font-size: 12px;
}

.mini-faq .faq-a {
  display: none;
  padding: 0 16px 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.mini-faq .faq-item.is-open .faq-a {
  display: block;
}

.mini-faq .faq-item.is-open .faq-q::after {
  content: "▴";
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s;
}

.info-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 127, 128, .10);
  text-decoration: none;
}

.info-ic {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
}

.info-txt strong {
  display: block;
  font-weight: 900;
  color: var(--text);
  font-size: 14px;
}

.info-txt small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.s-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--teal-border);
  background: var(--white);
  color: var(--teal);
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s, background .2s;
}

.s-btn:hover {
  transform: translateY(-2px);
  background: #f3f8f9;
}

.map-wrap {
  margin-top: 14px;
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 127, 128, .08);
}

.meta-lines {
  margin-top: 12px;
  color: rgba(0, 0, 0, .70);
  font-size: 14px;
  line-height: 2;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card:nth-child(1) {
  animation-delay: .05s;
}

.contact-card:nth-child(2) {
  animation-delay: .10s;
}

.contact-card:nth-child(3) {
  animation-delay: .15s;
}

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

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

  .fake-nav {
    display: none;
  }
}

::selection {
  background: var(--teal-border);
  color: #003b3c;
}

::-moz-selection {
  background: var(--teal-border);
  color: #003b3c;
}