/* ============================================================
   contact.css — Page-specific styles for /contact
   Zion Property Management
   Depends on: pearl.css
   
   Design direction: "Warm, approachable authority" — the
   contact page must feel safe, fast, and human. Bold brand
   energy with clear trust signals and zero friction UI.
============================================================ */

/* =============================================
   HERO
============================================= */
.ct-hero {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 55%, #2a0845 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.ct-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Blobs */
.ct-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ct-blob--1 {
  width: 540px;
  height: 540px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.22), transparent 70%);
  animation: blobPulse1 13s ease-in-out infinite;
}

.ct-blob--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(30, 57, 143, 0.28), transparent 70%);
  animation: blobPulse2 16s ease-in-out infinite;
}

.ct-hero-inner {
  max-width: 1300px;
  margin: auto;
  padding: 130px 40px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 28px 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #f0b429;
}

.breadcrumb i {
  font-size: 0.6rem;
}

.breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.ct-hero-content {
  grid-column: 1;
  grid-row: 2;
}

/* Live badge */
.ct-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.ct-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}

.ct-hero-h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ct-hero-gradient {
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}

/* Quick action buttons */
.ct-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ct-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  flex: 1;
  min-width: 160px;
}

.ct-action-btn:hover {
  transform: translateY(-4px);
}

.ct-action-call:hover {
  background: rgba(30, 57, 143, 0.3);
  border-color: rgba(30, 57, 143, 0.5);
}

.ct-action-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
}

.ct-action-mail:hover {
  background: rgba(199, 0, 126, 0.2);
  border-color: rgba(199, 0, 126, 0.35);
}

.ct-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ct-action-call .ct-action-icon {
  background: rgba(30, 57, 143, 0.4);
  color: #93c5fd;
}

.ct-action-wa .ct-action-icon {
  background: rgba(37, 211, 102, 0.25);
  color: #4ade80;
}

.ct-action-mail .ct-action-icon {
  background: rgba(199, 0, 126, 0.2);
  color: #f9a8d4;
}

.ct-action-btn strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.ct-action-btn span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

/* Branch pills */
.ct-hero-branches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-branch-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  padding: 5px 13px;
  border-radius: 16px;
  transition: all 0.3s;
}

.ct-branch-pill:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ct-branch-pill--hq {
  background: rgba(240, 180, 41, 0.15);
  border-color: rgba(240, 180, 41, 0.35);
  color: #f0b429;
  font-weight: 600;
}

/* Response stats card */
.ct-hero-right {
  grid-column: 2;
  grid-row: 2;
}

.ct-response-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px;
}

.ct-rc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.ct-live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

.ct-rc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.ct-rc-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 8px;
}

.ct-rc-stat--pink {
  background: rgba(199, 0, 126, 0.1);
  border-color: rgba(199, 0, 126, 0.2);
}

.ct-rc-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ct-rc-stat sup {
  font-size: 0.8rem;
  color: #f0b429;
  vertical-align: super;
}

.ct-rc-stat p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  margin-top: 5px;
}

.ct-rc-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  line-height: 1.5;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero slant */
.ct-hero-slant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.ct-hero-slant svg {
  display: block;
  width: 100%;
}

/* =============================================
   SECTION 1 — HEAD OFFICE MAP
============================================= */
.ct-hq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.ct-map-wrap {
  position: relative;
}

.ct-map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 57, 143, 0.1);
}

.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Map badge overlay */
.ct-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(199, 0, 126, 0.4);
  z-index: 2;
}

/* HQ Detail list */
.ct-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}

.ct-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.ct-detail-item:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.ct-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.ct-detail-icon--phone {
  background: linear-gradient(135deg, #2563eb, #1e398f);
}

.ct-detail-icon--mail {
  background: linear-gradient(135deg, #c7007e, #9d0062);
}

.ct-detail-icon--wa {
  background: #25d366;
}

.ct-detail-icon--clock {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.ct-detail-label {
  display: block;
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.ct-detail-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  font-family: "DM Sans";
  font-weight: 600;
}

.ct-detail-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.ct-detail-link:hover {
  color: var(--pink);
}

.ct-hq-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   SECTION 2 — BRANCHES GRID
============================================= */
.ct-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.ct-branch-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.ct-branch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(199, 0, 126, 0.15);
}

.ct-branch-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.ct-branch-card:hover .ct-branch-stripe {
  transform: scaleX(1);
}

.ct-branch-hq-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f0b429;
  color: #0d1a3a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.ct-branch-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30, 57, 143, 0.06);
}

.ct-branch-emoji {
  font-size: 1.8rem;
}

.ct-branch-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "DM Sans";
  color: var(--dark);
}

.ct-branch-label {
  font-size: 0.68rem;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-branch-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.ct-bd-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.81rem;
  color: #374151;
}

.ct-bd-item i {
  color: var(--blue);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.ct-bd-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-bd-item a:hover {
  color: var(--pink);
}

.ct-branch-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ct-branch-dir {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  flex: 1;
  justify-content: center;
}

.ct-branch-dir:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(199, 0, 126, 0.35);
}

.ct-branch-wa {
  width: 38px;
  height: 38px;
  background: #25d366;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}

.ct-branch-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* =============================================
   SECTION 3 — DUAL CONTACT FORM
============================================= */
.ct-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

/* Why contact list */
.ct-why-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.ct-wc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--pink);
  transition: all 0.3s;
}

.ct-wc-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.ct-wc-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-main);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ct-wc-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "DM Sans";
  margin-bottom: 2px;
}

.ct-wc-item span {
  font-size: 0.76rem;
  color: var(--gray);
}

/* NRI note */
.ct-nri-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.06),
      rgba(199, 0, 126, 0.06));
  border: 1px solid rgba(199, 0, 126, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.ct-nri-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ct-nri-note strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.ct-nri-note span {
  font-size: 0.76rem;
  color: var(--gray);
}

/* Form card */
.ct-form-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Mode toggle */
.ct-form-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(30, 57, 143, 0.08);
}

.ct-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: none;
  background: rgba(30, 57, 143, 0.03);
  color: var(--gray);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.ct-toggle-btn:hover {
  color: var(--blue);
  background: rgba(30, 57, 143, 0.05);
}

.ct-toggle-btn.active {
  color: var(--blue);
  background: #fff;
  border-bottom-color: var(--blue);
}

.ct-toggle-btn i {
  font-size: 0.85rem;
}

/* Form panels */
.ct-form-panel {
  display: none;
  padding: 28px;
}

.ct-form-panel.active {
  display: block;
}

.ct-inner-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ct-fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-fg label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--dark);
}

.ct-fg input,
.ct-fg select,
.ct-fg textarea {
  padding: 10px 14px;
  border: 1px solid rgba(30, 57, 143, 0.18);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.ct-fg input:focus,
.ct-fg select:focus,
.ct-fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 57, 143, 0.1);
}

.ct-fg textarea {
  resize: vertical;
  min-height: 90px;
}

.ct-ferr {
  font-size: 0.7rem;
  color: #dc2626;
  min-height: 14px;
}

/* NRI + consent checkboxes */
.ct-nri-check,
.ct-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ct-nri-check input,
.ct-consent-check input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
  padding: 0;
  border: none;
}

.ct-nri-check label,
.ct-consent-check label {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}

.ct-nri-check label {
  color: var(--dark);
  font-weight: 500;
}

.ct-consent-check label a {
  color: var(--blue);
  text-decoration: underline;
}

/* Submit button */
.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 28px;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(199, 0, 126, 0.28);
}

.ct-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(199, 0, 126, 0.42);
}

.ct-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.ct-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ct-submit-btn.loading .ct-spinner {
  display: block;
}

.ct-submit-btn.loading span:not(.ct-spinner),
.ct-submit-btn.loading i {
  display: none;
}

.ct-form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
}

.ct-form-success i {
  color: #22c55e;
  flex-shrink: 0;
}

.ct-form-error-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

/* =============================================
   SECTION 4 — SOCIAL
============================================= */
.ct-social-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ct-social-blob--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.18), transparent 70%);
  animation: blobPulse1 14s ease-in-out infinite;
}

.ct-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.ct-social-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 16px 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ct-social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--social-color, #1e398f);
  opacity: 0;
  transition: opacity 0.4s;
}

.ct-social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.ct-social-card:hover::before {
  opacity: 0.15;
}

.ct-sc-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.ct-social-card:hover .ct-sc-icon {
  background: var(--social-color, #1e398f);
  transform: scale(1.1);
}

.ct-sc-info {
  position: relative;
  z-index: 1;
}

.ct-sc-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ct-sc-followers {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: #f0b429;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.ct-sc-info p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.ct-sc-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.ct-social-card:hover .ct-sc-follow {
  background: rgba(255, 255, 255, 0.2);
}

.ct-sc-follow i {
  font-size: 0.65rem;
  transition: transform 0.3s;
}

.ct-social-card:hover .ct-sc-follow i {
  transform: translateX(4px);
}

/* Direct contact strip */
.ct-direct-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  flex-wrap: wrap;
}

.ct-ds-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  flex: 1;
  min-width: 240px;
}

.ct-ds-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.ct-ds-item span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ct-ds-item a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;

  /* FIX: prevent text cropping on mobile */
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
}

.ct-ds-item a:hover {
  color: #f0b429;
}

.ct-ds-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}



/* Floating WA + back-to-top */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 100;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: waFloat 3s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.15);
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow);
  border: none;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .ct-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ct-branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-hero-inner {
    gap: 40px;
    padding: 140px 30px 60px;
  }
}

@media (max-width: 1024px) {
  .ct-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    padding: 160px 24px 50px;
    align-items: start;
  }

  .ct-hero-content,
  .ct-hero-right {
    grid-column: 1;
    grid-row: auto;
  }

  .ct-hero-right {
    display: flex;
    justify-content: center;
  }

  .ct-response-card {
    max-width: 420px;
    width: 100%;
  }

  .ct-hq-grid {
    grid-template-columns: 1fr;
  }

  .ct-map-frame {
    height: 300px;
  }

  .ct-form-layout {
    grid-template-columns: 1fr;
  }

  .ct-hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ct-action-btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .ct-hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .ct-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    padding: 150px 20px 40px;
    align-items: start;
  }

  .ct-hero-content,
  .ct-hero-right {
    grid-column: 1;
    grid-row: auto;
  }

  .ct-hero-h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
  }

  .ct-hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .ct-hero-actions {
    flex-direction: column;
  }

  .ct-action-btn {
    flex: none;
    width: 100%;
    min-width: 100%;
  }

  .ct-response-card {
    max-width: 100%;
    padding: 22px;
  }

  .ct-rc-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ct-rc-stat {
    padding: 14px 10px;
  }

  .ct-hero-branches {
    gap: 8px;
  }

  .ct-branch-pill {
    font-size: 0.72rem;
  }

  .ct-branches-grid {
    grid-template-columns: 1fr;
  }

  .ct-social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-frow {
    grid-template-columns: 1fr;
  }

  .ct-direct-strip {
    flex-direction: column;
  }

  .ct-ds-sep {
    width: 100%;
    height: 1px;
  }

  .ct-ds-item {
    padding: 16px 18px;
    min-width: 100%;
  }

  .ct-ds-item a {
    font-size: 0.82rem;
  }

  .section-inner {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .ct-hero-inner {
    padding: 150px 16px 36px;
    gap: 20px;
  }

  .ct-hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .ct-hero-h1 {
    font-size: 1.65rem;
  }

  .ct-hero-sub {
    font-size: 0.9rem;
  }

  .ct-action-btn {
    padding: 11px 14px;
  }

  .ct-action-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .ct-response-card {
    padding: 18px;
    border-radius: 20px;
  }

  .ct-rc-stats {
    grid-template-columns: 1fr;
  }

  .ct-rc-num {
    font-size: 1.5rem;
  }

  .ct-social-grid {
    grid-template-columns: 1fr;
  }

  .ct-branches-grid {
    grid-template-columns: 1fr;
  }
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.wave-divider1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider1 svg {
  display: block;
  width: 100%;
}