/* ================================================================
   Sync Inn Digital — Contact Page
   Template: page-contact.php

   Layout:
     .sid-ct                — section wrapper (primary blue bg)
     .sid-ct__inner         — constrained flex row
     .sid-ct__left          — left column: heading, contact info, person card
     .sid-ct__right         — right column: white WPForms card
     .sid-ct__info          — 2-column contact info grid (email + whatsapp)
     .sid-ct__social        — social network icon row
     .sid-ct__person-card   — booking person card
     .sid-ct__form-card     — white card wrapping the WPForms embed
   ================================================================ */

/* ── Nav spacer (matches fixed header height) ────────────────── */

.sid-ct__nav-spacer {
  height: 72px;
  background: var(--sid-black);
}

/* ── Section ─────────────────────────────────────────────────── */

.sid-ct {
  background-color: var(--sid-primary-blue, #0047D8);
  padding: 110px 0;
}

/* ── Constrained inner ───────────────────────────────────────── */

.sid-ct__inner {
  max-width: var(--sid-site-width, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 100px;
  align-items: center;
}

/* ── Left column ─────────────────────────────────────────────── */

.sid-ct__left {
  flex: 0 0 42%;
}

/* Override section-label text color on dark bg */
.sid-ct .sid-section-label__text {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Heading ─────────────────────────────────────────────────── */

.sid-ct__heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sid-white, #fff);
  margin: 0 0 24px;
}

/* ── Description ─────────────────────────────────────────────── */

.sid-ct__desc {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgb(255, 255, 255);
  margin: 0 0 48px;
}

/* ── Contact info: email + whatsapp side by side ─────────────── */

.sid-ct__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 40px;
}

/* Info item label (EMAIL, WHATSAPP) */
.sid-ct__info-label {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #E8ECF3C2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

/* Info value */
.sid-ct__info-value {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--sid-white, #fff);
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}

.sid-ct__info-value:hover {
  opacity: 0.8;
}

/* ── Social networks ─────────────────────────────────────────── */

.sid-ct__social {
  margin-bottom: 40px;
}

.sid-ct__social .sid-ct__info-label {
  margin-bottom: 14px;
}

.sid-ct__social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sid-ct__social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sid-white, #fff);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sid-black, #000);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

/* Brand colors on hover — same as footer */
.sid-ct__social-icon.social-facebook:hover {
  background: #1877F2;
  color: #fff;
}

.sid-ct__social-icon.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.sid-ct__social-icon.social-linkedin:hover {
  background: #0A66C2;
  color: #fff;
}

.sid-ct__social-icon.social-youtube:hover {
  background: #FF0000;
  color: #fff;
}

.sid-ct__social-icon.social-x:hover {
  background: #000;
  color: #fff;
}

/* ── Prefer to talk text ─────────────────────────────────────── */

.sid-ct__prefer-text {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(255, 255, 255);
  margin: 0 0 20px;
}

/* ── Person card ─────────────────────────────────────────────── */

.sid-ct__person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sid-white, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 340px;
}

.sid-ct__person-img {
  width: 56px;
  height: 56px;
  border-radius: 10%;
  object-fit: cover;
  flex-shrink: 0;
}

.sid-ct__person-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sid-ct__person-name {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sid-black, #000);
  display: block;
}

.sid-ct__person-desig {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: rgb(0, 0, 0);
  display: block;
}

/* Calendar button */
.sid-ct__calendar-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sid-primary-blue, #0047D8);
  border: 2px solid rgba(0, 71, 216, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sid-white, #fff);
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sid-ct__calendar-btn:hover {
  border-color: rgba(0, 71, 216, 0.6);
  transform: scale(1.05);
}

/* ── Right column ────────────────────────────────────────────── */

.sid-ct__right {
  flex: 1;
}

/* White form card */
.sid-ct__form-card {
  background: var(--sid-white, #fff);
  border-radius: 30px;
  padding: 1px 34px;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .sid-ct__heading {
    font-size: 48px;
  }

  .sid-ct__left {
    flex: 0 0 44%;
  }
}

@media (max-width: 1024px) {
  .sid-ct__heading {
    font-size: 36px;
  }

  .sid-ct__inner {
    flex-direction: column;
    gap: 48px;
  }

  .sid-ct__left {
    flex: none;
    width: 100%;
  }

  .sid-ct__right {
    width: 100%;
  }

  .sid-ct__form-card {
    padding: 36px 32px;
  }
}

@media (max-width: 768px) {
  .sid-ct {
    padding: 60px 0;
  }

  .sid-ct__heading {
    font-size: 32px;
  }

  .sid-ct__info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sid-ct__person-card {
    max-width: 100%;
  }

  .sid-ct__form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .sid-ct__heading {
    font-size: 30px;
    line-height: 30px;
  }

  .sid-ct__desc {
    font-size: 16px;
  }

  .sid-ct__form-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

/* ================================================================
   What to Expect Section  (.sid-wte)
   ================================================================ */

.sid-wte {
  background-color: var(--sid-light-grayish-blue-bg);
  padding-top: 110px;
}

.sid-wte__wrap {
  max-width: var(--sid-site-width, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ── Left: heading block ─────────────────────────────────────── */

.sid-wte__left {
  flex: 0 0 41%;
}

.sid-wte__heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sid-black, #000);
  margin: 16px 0 0;
}

.sid-wte__heading-muted {
  color: #7E7E81;
}

/* ── Right: steps list ───────────────────────────────────────── */

.sid-wte__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sid-wte__step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
 
}



.sid-wte__num {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  width: 52px;
  padding-top: 4px;
}

.sid-wte__step-body {
  flex: 1;
}

.sid-wte__step-title {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sid-black, #000);
  display: block;
  margin-bottom: 10px;
}

.sid-wte__step-desc {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: rgb(0, 0, 0);
  margin: 0;
}

.sid-wte__footer-text {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--sid-black, #000);
  margin: 24px 0 0;
}

/* ── WTE Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .sid-wte__wrap {
    gap: 60px;
  }
  .sid-wte__heading {
    font-size: 48px;
  }
  .sid-wte__left {
    flex: 0 0 36%;
  }
}

@media (max-width: 768px) {
  .sid-wte {
    padding: 60px 0;
  }
  .sid-wte__wrap {
    flex-direction: column;
    gap: 40px;
  }
  .sid-wte__left {
    flex: none;
    width: 100%;
    position: static;
  }
  .sid-wte__heading {
    font-size: 36px;
  }
  .sid-wte__num {
    font-size: 24px;
    width: 40px;
  }
  .sid-wte__step-title {
    font-size: 20px;
  }
  .sid-wte__step-desc {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sid-wte__heading {
    font-size: 30px;
    line-height: 30px;
  }
  .sid-wte__step {
    gap: 20px;
    padding: 24px 0;
  }
}

/* ================================================================
   Headquarters Section  (.sid-hq)
   ================================================================ */

.sid-hq {
  background-color: var(--sid-light-grayish-blue-bg, #F5F6FA);
  padding: 110px 0;
}

.sid-hq__wrap {
  max-width: var(--sid-site-width, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ──────────────────────────────────────────────────── */

.sid-hq__header {
  margin-bottom: 48px;
}

.sid-hq__heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sid-black, #000);
  margin: 16px 0 0;
  max-width: 75%;
}

.sid-hq__heading-muted {
  color: #7E7E81;
}

/* ── Map image ───────────────────────────────────────────────── */

.sid-hq__map-wrap {
  margin-bottom: 48px;
}

.sid-hq__map {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Office cards ────────────────────────────────────────────── */

.sid-hq__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  
}

.sid-hq__office {

  padding-right: 48px;
 
}

.sid-hq__office:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.sid-hq__office:not(:first-child):not(:last-child) {
  padding-left: 48px;
}

.sid-hq__city {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sid-black, #000);
  display: block;
  margin-bottom: 12px;
}

.sid-hq__addr {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: rgb(0, 0, 0);
  margin: 0;
}

/* ── HQ Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .sid-hq__heading {
    font-size: 48px;
    max-width: 100%;
  }
  .sid-hq__office {
    padding-right: 32px;
  }
  .sid-hq__office:last-child {
    padding-left: 32px;
  }
  .sid-hq__office:not(:first-child):not(:last-child) {
    padding-left: 32px;
  }
}

@media (max-width: 768px) {
  .sid-hq {
    padding: 60px 0;
  }
  .sid-hq__heading {
    font-size: 36px;
    max-width: 100%;
  }
  .sid-hq__offices {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sid-hq__office,
  .sid-hq__office:last-child,
  .sid-hq__office:not(:first-child):not(:last-child) {
    padding: 24px 0 0;
    padding-right: 0;
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .sid-hq__office:last-child {
    border-bottom: none;
  }
  .sid-hq__city {
    font-size: 22px;
  }
  .sid-hq__addr {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sid-hq__heading {
    font-size: 30px;
    line-height: 30px;
  }
}
