/**
 * Nejat Contact Info Widget
 * Displays contact details, hours, map, and CTA buttons
 */

/* ===================================================================
   ROOT — Section Spacing (uses shared tokens)
   =================================================================== */
.nejat-contact-info {
  padding-top: var(--nejat-section-pad-v);
  padding-bottom: var(--nejat-section-pad-v);
}

/* ===================================================================
   INNER CONTAINER — Max Width & Gutter
   =================================================================== */
.nejat-contact-info__inner {
  max-width: var(--nejat-max-width);
  margin: 0 auto;
  padding-left: var(--nejat-gutter);
  padding-right: var(--nejat-gutter);
}

/* ===================================================================
   HEADER — Eyebrow + Headline
   =================================================================== */
.nejat-contact-info__header {
  text-align: left;
  margin-bottom: var(--nejat-gap-lg);
}

.nejat-contact-info__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4ab3c8;
  margin-bottom: 12px;
}

.nejat-contact-info__headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0;
}

.nejat-contact-info__description {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin: 16px 0 0 0;
  max-width: 520px;
}

/* ===================================================================
   CONTENT LAYOUT — Two Column (Info | Map)
   =================================================================== */
.nejat-contact-info__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--nejat-gap-lg);
  align-items: start;
}

@media (max-width: 968px) {
  .nejat-contact-info__layout {
    grid-template-columns: 1fr;
    gap: var(--nejat-gap-md);
  }
}

/* ===================================================================
   LEFT PANEL — Contact Info & Hours
   =================================================================== */
.nejat-contact-info__content {
  display: flex;
  flex-direction: column;
  gap: var(--nejat-gap-md);
}

/* Contact Details List */
.nejat-contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nejat-contact-info__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.nejat-contact-info__icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(74, 179, 200, 0.1);
  color: #4ab3c8;
  flex-shrink: 0;
}

.nejat-contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.nejat-contact-info__phone,
.nejat-contact-info__email,
.nejat-contact-info__address {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  text-decoration: none;
  font-style: normal;
  padding-top: 12px;
}

.nejat-contact-info__phone-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  gap: 3px;
}

.nejat-contact-info__phone-wrap .nejat-contact-info__phone {
  padding-top: 0;
}

.nejat-contact-info__phone-note {
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.01em;
}

.nejat-contact-info__phone:hover,
.nejat-contact-info__email:hover {
  color: #4ab3c8;
  text-decoration: underline;
}

.nejat-contact-info__address {
  display: block;
}

a.nejat-contact-info__address:hover {
  color: #4ab3c8;
  text-decoration: underline;
}

/* ===================================================================
   WORKING HOURS
   =================================================================== */
.nejat-contact-info__hours {
  background-color: #f0fafb;
  border-radius: var(--nejat-radius);
  padding: 28px;
}

.nejat-contact-info__hours-heading {
  font-size: 18px;
  font-weight: 700;
  color: #4ab3c8;
  margin: 0 0 8px 0;
}

.nejat-contact-info__hours-description {
  font-size: 13px;
  color: #888888;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.nejat-contact-info__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nejat-contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.nejat-contact-info__hours-day {
  font-weight: 600;
  color: #1a1a1a;
}

.nejat-contact-info__hours-time {
  color: #555555;
}

/* Today Highlight */
.nejat-contact-info__hours-row.is-today {
  background-color: rgba(74, 179, 200, 0.08);
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0 -12px;
}

.nejat-contact-info__hours-row.is-today .nejat-contact-info__hours-day {
  color: #4ab3c8;
}

/* Closed State */
.nejat-contact-info__hours-row.is-closed .nejat-contact-info__hours-time {
  color: #888888;
  font-style: italic;
}

/* ===================================================================
   CTA LINKS
   =================================================================== */
.nejat-contact-info__cta-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.nejat-contact-info__link {
  font-size: 15px;
  font-weight: 500;
  color: #4ab3c8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nejat-contact-info__link:hover {
  color: #3a9fb4;
  text-decoration: underline;
}

.nejat-contact-info__link-separator {
  color: #e0e0e0;
  font-weight: 300;
}

/* ===================================================================
   SOCIAL MEDIA ICONS
   =================================================================== */
.nejat-contact-info__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.nejat-contact-info__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(74, 179, 200, 0.1);
  color: #4ab3c8;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nejat-contact-info__social-icon svg {
  width: 20px;
  height: 20px;
}

.nejat-contact-info__social-icon:hover {
  background-color: #4ab3c8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(74, 179, 200, 0.25);
}

/* ===================================================================
   RIGHT PANEL — Google Map
   =================================================================== */
.nejat-contact-info__map {
  position: relative;
}

.nejat-contact-info__map-wrapper {
  width: 100%;
  border-radius: var(--nejat-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nejat-contact-info__map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 968px) {
  .nejat-contact-info__map {
    order: -1; /* Move map above content on mobile */
  }

  .nejat-contact-info__map-wrapper {
    height: 350px !important;
  }
}

@media (max-width: 640px) {
  .nejat-contact-info__cta-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nejat-contact-info__link-separator {
    display: none;
  }

  .nejat-contact-info__hours {
    padding: 20px;
  }

  .nejat-contact-info__detail-item {
    gap: 12px;
  }

  .nejat-contact-info__icon-bg {
    width: 40px;
    height: 40px;
  }

  .nejat-contact-info__icon svg {
    width: 18px;
    height: 18px;
  }
}
