/* ================================================
   contact.css — صفحة التواصل
   ملف CSS منفصل خاص بصفحة contact.html بس
   ================================================ */

.ws-contact {
  background: var(--ws-bg-page);
  padding: 4rem 0 0rem;
  overflow-x: hidden;
}

/* Header */
.ws-contact__header {
  margin-bottom: 3rem;
}

.ws-contact__title {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ws-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.ws-contact__sub {
  font-family: var(--ws-font-body);
  font-size: 0.95rem;
  color: var(--ws-text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.ws-contact__map {
  margin: 2.2rem auto 0;
  max-width: 1000px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(9, 22, 46, 0.12);
  background-color: var(--ws-bg-page);

}

.ws-contact__map img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--ws-bg-page);


}

@media (min-width: 992px) {
  .ws-contact__map {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
  }
}

/* Body layout */
.ws-contact__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── Left side ────────────────────────────────── */

/* Blue visual card with bubbles */
.ws-contact__visual {
  background: linear-gradient(135deg, #0CA7F2 0%, #16184C 100%);
  border-radius: 18px;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
    width: 441px;
    height: 285px;
    border-radius: 26px;
}
@media (max-width: 991px) {
  .ws-contact__visual {
    width: 100%;
    height: 285px;
    margin-bottom: 1.5rem;
    border-radius: 50px;

  }
}

/* Bubbles animation */
.ws-bubbles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  animation: ws-float 4s ease-in-out infinite;
}

.ws-bubble--1 { width: 100px; height: 100px; top: 20%; left: 30%; animation-delay: 0s; }
.ws-bubble--2 { width: 60px;  height: 60px;  top: 10%; left: 55%; animation-delay: 0.5s; }
.ws-bubble--3 { width: 40px;  height: 40px;  top: 50%; left: 20%; animation-delay: 1s; }
.ws-bubble--4 { width: 75px;  height: 75px;  top: 40%; left: 60%; animation-delay: 1.5s; }
.ws-bubble--5 { width: 30px;  height: 30px;  top: 65%; left: 45%; animation-delay: 0.8s; }
.ws-bubble--6 { width: 50px;  height: 50px;  top: 15%; left: 10%; animation-delay: 2s; }
.ws-bubble--7 { width: 20px;  height: 20px;  top: 70%; left: 75%; animation-delay: 1.2s; }
.ws-bubble--8 { width: 35px;  height: 35px;  top: 30%; left: 75%; animation-delay: 0.3s; }

@keyframes ws-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Info cards */
.ws-contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ws-info-card {
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--ws-ease);
}

.ws-info-card:hover {
  border-color: #0CA7F2;
  box-shadow: 0 4px 14px rgba(37,99,235,0.08);
}

.ws-info-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--ws-primary-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-primary);
}

.ws-info-card__icon svg {
  width: 18px;
  height: 18px;
}

.ws-info-card__title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ws-text-dark);
  margin-bottom: 0.1rem;
}

.ws-info-card__val {
  font-family: var(--ws-font-body);
  font-size: 0.8rem;
  color: var(--ws-text-muted);
  margin-bottom: 0;
}

/* ── Right side — Form ────────────────────────── */
.ws-contact__right {
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: 18px;
  padding: 2rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.ws-form__title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ws-text-dark);
  margin-bottom: 0.4rem;
}

.ws-form__sub {
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  color: var(--ws-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Fields */
.ws-field {
  margin-bottom: 1rem;
}

.ws-field__label {
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ws-text-dark);
  margin-bottom: 0.35rem;
  display: block;
}

.ws-field__label span {
  color: var(--ws-primary);
}

.ws-field__input {
  width: 100%;
  background: var(--ws-bg-page);
  border: 1px solid var(--ws-border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  color: var(--ws-text-dark);
  outline: none;
  transition: var(--ws-ease);
}

.ws-field__input::placeholder {
  color: #C0C7D4;
}

.ws-field__input:focus {
  border-color: var(--ws-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.ws-field__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit button */
.ws-form__btn {
  width: 100%;
  background: var(--ws-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--ws-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--ws-ease);
  box-shadow: var(--ws-shadow-btn);
  margin-top: 0.5rem;
}

.ws-form__btn:hover {
  background: var(--ws-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.40);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
  .ws-contact__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ws-contact { padding: 3rem 0; }
  .ws-contact__right { padding: 1.5rem; }
}
