/* =====================================================
   BRECLO® — contact.css
   Inherits: style.css (fonts, vars, navbar, footer)
   Fonts: Cormorant Garamond + Jost
===================================================== */

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.ct-hero {
  background: var(--cream, #f4f0e6);
  border-bottom: 1px solid var(--border, #ddd5be);
  padding: 52px 40px 44px;
  text-align: center;
}
.ct-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.ct-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark, #2b4a2b);
  margin-bottom: 12px;
  opacity: .85;
}
.ct-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-bottom: 14px;
  letter-spacing: -.3px;
  line-height: 1.1;
}
.ct-hero-h1 sup { font-size: .45em; vertical-align: super; font-weight: 600; }
.ct-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-mid, #555);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════ */
.ct-main {
  background: #f8f6f0;
  padding: 44px 0 60px;
}
.ct-container {
  max-width: 1160px;
  margin: 0 auto;
  /* padding: 0 40px; */
}
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ══════════════════════════════════════
   FORM CARD
══════════════════════════════════════ */
/* .ct-form-wrap { } */
.ct-form-card {
  background: #fff;
  border: 1px solid var(--border, #ddd5be);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.ct-form-header {
  padding: 28px 0px 22px;
  border-bottom: 1px solid var(--border, #ddd5be);
  background: #fff;
}
.ct-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.ct-form-header p {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  color: var(--text-mid, #555);
}

/* ── Form fields ── */
.ct-form {
  padding: 2px 6px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ct-fg label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid, #555);
  letter-spacing: .2px;
}
.req { color: #c0392b; margin-left: 2px; }
.ct-fg input,
.ct-fg select,
.ct-fg textarea {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  color: var(--text, #1a1a1a);
  background: #fff;
  border: 1px solid var(--border, #ddd5be);
  border-radius: 5px;
  padding: 10px 13px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  /* width: 100%; */
}
.ct-fg input:focus,
.ct-fg select:focus,
.ct-fg textarea:focus {
  border-color: var(--green-dark, #2b4a2b);
  box-shadow: 0 0 0 3px rgba(43,74,43,.07);
}
.ct-fg input::placeholder,
.ct-fg textarea::placeholder { color: #bbb; }
.ct-fg select { height: 42px; }
.ct-fg textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

/* Phone row */
.ct-phone-wrap { display: flex; gap: 8px; }
.ct-code-select { width: 110px; flex-shrink: 0; }
.ct-phone-wrap input { flex: 1; }

/* Error text */
.ct-err {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: #c0392b;
  min-height: 16px;
  display: block;
}

/* ── Submit button ── */
.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px;
  background: var(--green-dark, #2b4a2b);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .22s, box-shadow .22s, transform .15s;
  box-shadow: 0 4px 16px rgba(43,74,43,.22);
  margin-top: 4px;
}
.ct-submit-btn .ico-wa { width: 18px; height: 18px; }
.ct-submit-btn:hover { background: #1c3a1c; box-shadow: 0 6px 22px rgba(43,74,43,.32); transform: translateY(-1px); }
.ct-submit-btn:disabled { background: #999; cursor: not-allowed; transform: none; box-shadow: none; }

/* Privacy note */
.ct-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: var(--text-light, #888);
  text-align: center;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   SUCCESS STATE
══════════════════════════════════════ */
.ct-success {
  background: #fff;
  border: 1px solid var(--border, #ddd5be);
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.ct-success-ico { margin-bottom: 20px; }
.ct-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-bottom: 14px;
}
.ct-success-msg {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark, #2b4a2b);
  line-height: 1.6;
  margin-bottom: 8px;
}
.ct-success-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  color: var(--text-mid, #555);
  margin-bottom: 28px;
}
.ct-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: var(--green-dark, #2b4a2b);
  color: #fff;
  border-radius: 5px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.ct-back-btn:hover { background: #1c3a1c; }

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}
.ct-sidebar-card {
  background: #fff;
  border: 1px solid var(--border, #ddd5be);
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}
.ct-sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-dark, #2b4a2b);
  display: inline-block;
}

/* Contact items */
.ct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #f0ece2;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.ct-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.ct-contact-item:hover { opacity: .78; }
.ct-contact-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream, #f4f0e6);
  border: 1px solid var(--border, #ddd5be);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-mid, #555);
}
.ct-ico-wa { background: #e8f8ee; border-color: #b8e8c8; color: #25D366; }
.ct-contact-item div:last-child { display: flex; flex-direction: column; gap: 2px; }
.ct-contact-item strong {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
}
.ct-contact-item span {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  color: var(--text-mid, #555);
  line-height: 1.4;
}

/* Receive list */
.ct-receive-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-receive-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  color: var(--text-mid, #555);
  font-weight: 500;
}
.ct-receive-list li svg { flex-shrink: 0; }

/* Response time note */
.ct-sidebar-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ct-sidebar-note svg { flex-shrink: 0; color: var(--green-dark, #2b4a2b); margin-top: 2px; }
.ct-sidebar-note div { display: flex; flex-direction: column; gap: 4px; }
.ct-sidebar-note strong {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #1a1a1a);
}
.ct-sidebar-note span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-mid, #555);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   MOBILE MENU (mirrors other pages)
══════════════════════════════════════ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--green-dark, #2b4a2b);
  cursor: pointer;
  padding: 0 6px;
  z-index: 1001;
}

/* ══════════════════════════════════════
   RESPONSIVE — 960px
══════════════════════════════════════ */
@media (max-width: 960px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-sidebar { position: static; top: auto; }
  .ct-hero { padding: 40px 24px 34px; }
  .mobile-menu-toggle { display: block; }
  .nav-actions { display: none; }
  /* .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,.15);
    transition: right .3s ease;
    z-index: 1050;
    padding: 30px 20px;
    display: block !important;
  } */
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 0px; }
  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 60px 0 0;
    background: rgba(0,0,0,.45);
    z-index: 1040;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — 640px
══════════════════════════════════════ */
@media (max-width: 640px) {
  .ct-container { padding: 0 16px; }
  .ct-hero { padding: 32px 16px 28px; }
  .ct-hero-sub { font-size: 14px; }
  .ct-form-header { padding: 20px 18px 16px; }
  .ct-form-header h2 { font-size: 22px; }
  .ct-form { padding: 20px 18px 24px; gap: 15px; }
  .ct-phone-wrap { flex-direction: row; }
  .ct-code-select { width: 95px; }
  .ct-success { padding: 44px 24px; }
  .ct-success h3 { font-size: 26px; }
  .ct-main { padding: 28px 0 44px; }
}

@media (max-width: 400px) {
  .ct-phone-wrap { flex-direction: column; }
  .ct-code-select { width: 100%; }
}


/* @media (max-width: 960px) {
    .nav-menu {
        display: block !important;
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.35s ease-in-out;
        z-index: 1000 !important;
        padding: 30px 25px;
        overflow-y: auto;
        pointer-events: auto !important;
    }
} */

.dropdown-menu {
  display: none;
}

.dropdown.active .dropdown-menu {
  display: block;
}

/* ===== FIX: Mobile Dropdown ===== */
@media (max-width: 960px) {
  .nav-menu .dropdown-menu {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    padding-left: 10px !important;
    background: transparent !important;
  }
  
  .nav-menu .dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  .nav-menu .dropdown .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .nav-menu .dropdown.active .arrow {
    transform: rotate(180deg);
  }
}


  /* ===== SIDEBAR WRAPPER ===== */
  .ct-sidebar {
    max-width: 400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* ===== SIDEBAR CARDS ===== */
  .ct-sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f2f5;
    transition: box-shadow 0.3s ease;
  }

  .ct-sidebar-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  }

  .ct-sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 10px;
  }

  .ct-sidebar-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2b4a2b, #4a7a4a);
    border-radius: 3px;
  }

  /* ===== BRAND INFO SECTION ===== */
  .ct-brand-info {
    background: linear-gradient(135deg, #f8faf8, #eef4ee);
    border: 1px solid #e0e8e0;
  }

  .ct-brand-info .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 0 0 4px 0;
  }

  .ct-brand-info .brand-tagline {
    font-size: 0.85rem;
    color: #4a6a4a;
    margin: 0 0 12px 0;
    font-weight: 500;
  }

  .ct-brand-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #dce4dc;
  }

  .ct-brand-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #2d3d2d;
    line-height: 1.5;
  }

  .ct-brand-details .detail-item .icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #3a6a3a;
  }

  .ct-brand-details .detail-item .highlight {
    font-weight: 600;
    color: #1a2e1a;
  }

  .ct-brand-location {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(43, 74, 43, 0.08);
    border-radius: 10px;
    border-left: 3px solid #2b4a2b;
    font-size: 0.85rem;
    color: #2d3d2d;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ct-brand-location .location-icon {
    flex-shrink: 0;
    color: #2b4a2b;
  }

  .ct-brand-location strong {
    color: #1a2e1a;
  }

  /* ===== CONTACT ITEMS ===== */
  .ct-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.2s ease;
    margin-bottom: 6px;
    border: 1px solid transparent;
  }

  .ct-contact-item:last-child {
    margin-bottom: 0;
  }

  .ct-contact-item:hover {
    background: #f6f8f6;
    border-color: #e0e8e0;
    transform: translateX(4px);
  }

  .ct-contact-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f0f4f0;
    color: #2b4a2b;
  }

  .ct-contact-ico.ct-ico-wa {
    background: #25D366;
    color: #ffffff;
  }

  .ct-contact-item div:last-child {
    display: flex;
    flex-direction: column;
  }

  .ct-contact-item strong {
    font-size: 0.9rem;
    color: #1a2e1a;
    font-weight: 600;
  }

  .ct-contact-item span {
    font-size: 0.82rem;
    color: #6c7a6c;
  }

  .ct-contact-item .wa-status {
    color: #25D366;
    font-weight: 500;
    font-size: 0.75rem;
  }

  /* ===== RECEIVE LIST ===== */
  .ct-receive-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ct-receive-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: #2d3d2d;
    line-height: 1.4;
    border-bottom: 1px solid #f0f4f0;
  }

  .ct-receive-list li:last-child {
    border-bottom: none;
  }

  .ct-receive-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ===== RESPONSE TIME ===== */
  .ct-sidebar-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8faf8;
    border: 1px solid #e0e8e0;
  }

  .ct-sidebar-note svg {
    flex-shrink: 0;
    color: #2b4a2b;
    margin-top: 2px;
  }

  .ct-sidebar-note div strong {
    display: block;
    font-size: 0.9rem;
    color: #1a2e1a;
  }

  .ct-sidebar-note div span {
    font-size: 0.82rem;
    color: #6c7a6c;
    line-height: 1.4;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .ct-sidebar {
      max-width: 100%;
      padding: 0 12px;
    }

    .ct-sidebar-card {
      padding: 20px 18px;
    }

    .ct-sidebar-card h4 {
      font-size: 1rem;
    }

    .ct-brand-info .brand-name {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .ct-sidebar {
      padding: 0 8px;
      gap: 16px;
    }

    .ct-sidebar-card {
      padding: 16px 14px;
      border-radius: 12px;
    }

    .ct-sidebar-card h4 {
      font-size: 0.95rem;
    }

    .ct-contact-item {
      padding: 10px 12px;
    }

    .ct-contact-ico {
      width: 36px;
      height: 36px;
    }

    .ct-contact-item strong {
      font-size: 0.82rem;
    }

    .ct-contact-item span {
      font-size: 0.75rem;
    }

    .ct-receive-list li {
      font-size: 0.82rem;
      padding: 6px 0;
    }

    .ct-brand-details .detail-item {
      font-size: 0.8rem;
    }

    .ct-brand-location {
      font-size: 0.78rem;
      padding: 10px 12px;
    }
  }

  @media (max-width: 380px) {
    .ct-sidebar-card {
      padding: 14px 10px;
    }

    .ct-contact-item {
      padding: 8px 8px;
      gap: 10px;
    }

    .ct-contact-ico {
      width: 32px;
      height: 32px;
    }

    .ct-contact-ico svg {
      width: 16px;
      height: 16px;
    }

    .ct-receive-list li {
      font-size: 0.75rem;
      gap: 8px;
    }

    .ct-brand-details .detail-item {
      font-size: 0.75rem;
    }
  }

  .ct-brand-info {
    position: relative;
    overflow: hidden;
  }

  .ct-brand-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b4a2b, #4a7a4a, #2b4a2b);
  }

  .brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2b4a2b, #4a7a4a);
    color: #fff;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .brand-subtitle {
    font-size: 0.85rem;
    color: #6c7a6c;
    margin: -4px 0 14px 0;
  }

  .brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
  }

  .brand-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: #2d3d2d;
    border-bottom: 1px solid #f0f4f0;
  }

  .brand-features li:last-child {
    border-bottom: none;
  }

  .feature-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
  }

  .brand-location-tag {
    background: #f0f6f0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #2d3d2d;
  }


  /* ===== LUXE GOLD ACCENT STRIP ===== */
  .brand-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    background: #f4f8f4;
    border-radius: 16px;
    /* border: 1px solid #e8e0d4; */
    font-family: 'Georgia', 'Times New Roman', serif;
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .brand-trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #2b4a2b, #4a7a4a, #2b4a2b); */
  }

  .brand-trust-strip .strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    flex: 1;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .brand-trust-strip .strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, #d4cdc0, transparent);
  }

  .brand-trust-strip .strip-item:hover {
    background: rgba(201, 168, 76, 0.04);
  }

  .brand-trust-strip .strip-icon {
    font-size: 1.2rem;
    opacity: 0.7;
  }

  .brand-trust-strip .strip-text {
    font-size: 0.85rem;
    color: #3d3830;
    /* letter-spacing: 0.2px; */
  }

  .brand-trust-strip .strip-text strong {
    color: #1a1712;
    font-weight: 700;
    position: relative;
  }

  .brand-trust-strip .strip-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #4a7a4a;
    opacity: 0.4;
  }

  .brand-trust-strip .strip-divider {
    display: none;
  }

  @media (max-width: 768px) {
    .brand-trust-strip .strip-item {
      padding: 14px 20px;
      flex: 1 1 100%;
    }

    .brand-trust-strip .strip-item:not(:last-child)::after {
      display: none;
    }

    .brand-trust-strip .strip-item:not(:last-child) {
      border-bottom: 1px solid #ece6dc;
    }

    .brand-trust-strip .strip-text {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .brand-trust-strip .strip-item {
      padding: 12px 16px;
      gap: 10px;
    }

    .brand-trust-strip .strip-text {
      font-size: 0.75rem;
    }

    .brand-trust-strip .strip-icon {
      font-size: 1rem;
    }
  }

  /* =====================================================
   CONTACT PAGE - RESPONSIVE FIXES
===================================================== */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ct-hero {
    padding: 40px 24px 34px;
  }

  .ct-hero-h1 {
    font-size: 36px;
  }

  .ct-hero-sub {
    font-size: 14px;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .ct-hero {
    padding: 30px 16px 24px;
  }

  .ct-hero-h1 {
    font-size: 28px;
  }

  .ct-hero-sub {
    font-size: 13px;
  }

  .ct-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .ct-main {
    padding: 20px 0 32px;
  }

  .ct-container {
    padding: 0 12px;
  }

  .ct-form-card {
    border-radius: 8px;
    padding: 16px 14px;
  }

  .ct-form-header h2 {
    font-size: 22px;
  }

  .ct-form-header p {
    font-size: 12px;
  }

  .ct-form {
    padding: 0 4px 16px;
    gap: 14px;
  }

  .ct-fg label {
    font-size: 11px;
  }

  .ct-fg input,
  .ct-fg select,
  .ct-fg textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .ct-phone-wrap {
    flex-direction: column;
    gap: 4px;
  }

  .ct-code-select {
    width: 100%;
  }

  .ct-submit-btn {
    font-size: 13px;
    padding: 12px 16px;
  }

  .ct-privacy {
    font-size: 10px;
  }

  .ct-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ct-sidebar-card {
    padding: 16px 14px;
  }

  .ct-sidebar-card h4 {
    font-size: 16px;
  }

  .ct-contact-item {
    padding: 8px 0;
  }

  .ct-contact-ico {
    width: 32px;
    height: 32px;
  }

  .ct-contact-item strong {
    font-size: 12px;
  }

  .ct-contact-item span {
    font-size: 11px;
  }

  .ct-receive-list li {
    font-size: 11px;
    padding: 6px 0;
  }

  .ct-sidebar-note {
    gap: 10px;
  }

  .ct-sidebar-note strong {
    font-size: 12px;
  }

  .ct-sidebar-note span {
    font-size: 11px;
  }

  .ct-brand-info .brand-name {
    font-size: 1.1rem;
  }

  .brand-features li {
    font-size: 11px;
    padding: 4px 0;
  }

  .brand-location-tag {
    font-size: 11px;
    padding: 8px 12px;
  }

  .brand-trust-strip {
    flex-wrap: wrap;
    padding: 4px 0;
  }

  .brand-trust-strip .strip-item {
    padding: 6px 4px;
    flex: 1 1 100%;
  }

  .brand-trust-strip .strip-item:not(:last-child)::after {
    display: none;
  }

  .brand-trust-strip .strip-text {
    font-size: 11px;
  }

  .brand-trust-strip .strip-icon {
    font-size: 0.9rem;
  }

  .ct-success {
    padding: 32px 20px;
  }

  .ct-success h3 {
    font-size: 24px;
  }

  .ct-success-msg {
    font-size: 14px;
  }

  .ct-success-sub {
    font-size: 12px;
  }
}

/* ── Small Phones ── */
@media (max-width: 480px) {
  .ct-hero-h1 {
    font-size: 24px;
  }

  .ct-hero-sub {
    font-size: 12px;
  }

  .ct-form-header h2 {
    font-size: 18px;
  }

  .ct-form-header p {
    font-size: 11px;
  }

  .ct-fg input,
  .ct-fg select,
  .ct-fg textarea {
    font-size: 11px;
    padding: 6px 8px;
  }

  .ct-fg label {
    font-size: 10px;
  }

  .ct-submit-btn {
    font-size: 12px;
    padding: 10px 14px;
  }

  .ct-sidebar-card {
    padding: 12px 10px;
  }

  .ct-contact-item {
    padding: 6px 0;
  }

  .ct-contact-ico {
    width: 28px;
    height: 28px;
  }

  .ct-contact-ico svg {
    width: 14px;
    height: 14px;
  }

  .ct-contact-item strong {
    font-size: 11px;
  }

  .ct-contact-item span {
    font-size: 10px;
  }

  .ct-receive-list li {
    font-size: 10px;
  }

  .brand-trust-strip .strip-text {
    font-size: 10px;
  }

  .brand-trust-strip .strip-icon {
    font-size: 0.8rem;
  }
}