/* ================================================================
   contact.css — Contact Page Redesign
   Loaded only on contact.html
================================================================ */

/* ── HERO ── */
.ct-hero {
  background: linear-gradient(155deg, #f3eeff 0%, #fff 55%, #f0f7ff 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--c-border);
}
.ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.ct-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 20px;
}
.ct-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.ct-hero-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.ct-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 560px;
  margin-bottom: 24px;
}
.ct-hero-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ct-country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--sh-sm);
}

/* Hero stats */
.ct-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}
.ct-stat {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  min-width: 120px;
}
.ct-stat strong {
  display: block;
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.ct-stat span {
  font-size: .75rem;
  color: var(--c-muted);
}

/* ── CONTACT SECTION ── */
.ct-section { padding: 64px 0 56px; }
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Form column */
.ct-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ct-form-header {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  padding: 28px 36px;
}
.ct-form-header h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.ct-form-header p {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
}
.ct-form-card form { padding: 28px 36px; }

.ct-form-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.ct-form-note {
  font-size: .78rem;
  color: var(--c-muted);
  text-align: center;
}

/* Info column */
.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

/* Contact rows */
.ct-info-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ct-info-heading {
  font-family: var(--f-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--c-border);
}
.ct-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  transition: background var(--t-fast);
  cursor: pointer;
}
.ct-contact-row:last-child { border-bottom: none; }
.ct-contact-row:hover { background: var(--c-accent-lt); }
.ct-contact-row:hover .ct-arrow { transform: translateX(4px); color: var(--c-accent); }

.ct-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ct-icon-email { background: #eff6ff; }
.ct-icon-wa    { background: #f0fdf4; }
.ct-icon-phone { background: #fdf4ff; }
.ct-icon-cal   { background: #fff7ed; }

.ct-contact-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-muted);
}
.ct-contact-value {
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-text);
}
.ct-contact-note {
  font-size: .72rem;
  color: var(--c-muted);
}
.ct-arrow {
  color: var(--c-muted);
  font-size: 1rem;
  transition: transform var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

/* Hours block */
.ct-hours-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ct-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--c-border);
  font-size: .8125rem;
  gap: 8px;
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-label { color: var(--c-muted); display: flex; align-items: center; gap: 6px; }
.ct-hours-val   { font-weight: 600; color: var(--c-text); font-size: .8rem; text-align: right; }

/* ── MAP SECTION ── */
.ct-map-section { border-top: 1px solid var(--c-border); }
.ct-map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.ct-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%);
  transition: filter var(--t-slow);
}
.ct-map-iframe:hover { filter: grayscale(0%); }

/* Address bar below map */
.ct-address-bar {
  background: var(--c-dark);
  padding: 24px 0;
}
.ct-address-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.ct-address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  padding: 0 28px;
}
.ct-address-item:first-child { padding-left: 0; }
.ct-addr-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ct-address-item strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.ct-address-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.ct-address-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.ct-directions-btn {
  flex-shrink: 0;
  margin-left: auto;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  background: transparent;
  white-space: nowrap;
}
.ct-directions-btn:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

/* ── TRUST SECTION ── */
.ct-trust-section {
  padding: 64px 0 72px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.ct-trust-heading {
  margin-bottom: 48px;
}
.ct-trust-heading h2 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
.ct-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-trust-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t-base);
}
.ct-trust-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.ct-trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.ct-trust-card h4 {
  font-size: .9375rem;
  margin-bottom: 10px;
  color: var(--c-text);
}
.ct-trust-card p {
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--c-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ct-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .ct-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .ct-hero-stats { grid-template-columns: repeat(4, 1fr); width: 100%; }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-info-col { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .ct-info-block { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .ct-trust-grid { grid-template-columns: 1fr; }
  .ct-info-col { grid-template-columns: 1fr; }
  .ct-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .ct-map-wrapper { height: 280px; }
  .ct-address-inner { flex-direction: column; gap: 16px; }
  .ct-address-item { padding: 0; }
  .ct-address-divider { display: none; }
  .ct-directions-btn { margin-left: 0; width: 100%; justify-content: center; }
  .ct-form-card form { padding: 20px; }
  .ct-form-header { padding: 22px 20px; }
}

@media (max-width: 480px) {
  .ct-hero { padding: 40px 0 36px; }
  .ct-hero-stats { grid-template-columns: 1fr 1fr; }
  .ct-hero-countries { gap: 6px; }
  .ct-country { font-size: .72rem; padding: 4px 10px; }
}
