/* =====================================================
   ACRYLICTUBES.IN — contact.css
   ===================================================== */

/* Active nav */
.nav-active {
  color: var(--primary) !important;
  background: var(--light-bg) !important;
  border-radius: 8px;
}

/* Shared breadcrumb (reuse from about) */
.breadcrumb { display:flex;align-items:center;gap:8px;margin-bottom:16px;font-size:13px; }
.breadcrumb a { color:rgba(255,255,255,.65);transition:var(--ease); }
.breadcrumb a:hover { color:var(--accent); }
.bc-sep { color:rgba(255,255,255,.3); }
.breadcrumb span:last-child { color:rgba(255,255,255,.9);font-weight:600; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 320px;
  margin-top: var(--total-h);
  overflow: visible;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.ct-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.85);
}
.ct-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(10,30,55,.9) 0%,rgba(26,111,168,.75) 100%);
}
.ct-hero-shape {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.ct-hero-content {
  position: relative; z-index: 2;
  padding-top: 20px;
}
.ct-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 110px);
  line-height: .9;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ct-hero-title em { color: var(--accent); font-style: normal; }
.ct-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
}

/* Quick Pills row */
.ct-quick-pills {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  z-index: 10;
}
.ct-pills-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ct-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--ease);
  cursor: pointer;
}
.ct-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,111,168,.18);
  border-color: var(--primary-light);
}
.ct-pill-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.phone-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.mail-icon  { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.wa-icon    { background: linear-gradient(135deg, #25D366, #128C7E); }
.time-icon  { background: linear-gradient(135deg, var(--accent2), #2d9e9e); }

.ct-pill-text { flex: 1; }
.ct-pill-text span  { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }
.ct-pill-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.ct-pill-arrow { font-size: 16px; color: var(--primary); opacity: 0; transition: var(--ease); }
.ct-pill:hover .ct-pill-arrow { opacity: 1; transform: translateX(3px); }
.ct-pill-time { cursor: default; }
.ct-pill-time:hover { transform: none; }

/* ─────────────────────────────────────────────
   MAIN CONTACT SECTION
───────────────────────────────────────────── */
.ct-main-section {
  background: var(--off-white);
  padding: 96px 0 96px;
}
.ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding-top: 56px; /* space for the pills */
}

/* ── FORM PANEL ── */
.ct-form-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.ct-form-header { margin-bottom: 32px; }
.ct-form-header .eyebrow { margin-bottom: 10px; }
.ct-form-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--dark);
  margin-bottom: 10px;
}
.ct-form-header h2 em { color: var(--primary); font-style: italic; }
.ct-form-header p { font-size: 15px; color: var(--text-muted); }

/* Tabs */
.ct-form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.ct-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px 8px 0 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
}
.ct-tab:hover { color: var(--primary); background: var(--light-bg); }
.ct-tab.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  background: var(--light-bg);
}

/* Forms */
.ct-form { display: none; animation: fadeIn .3s ease; }
.ct-form.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cf-group { margin-bottom: 20px; }
.cf-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .3px;
}
.req { color: #ef4444; }

.cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cf-input-wrap > svg {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}
.cf-input-wrap input,
.cf-group textarea,
.cf-input-wrap select {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--off-white);
  color: var(--text);
  transition: var(--ease);
  appearance: none;
}
.cf-group textarea{
  padding: 12px 16px 12px 16px;
}
.cf-group textarea {
  padding-top: 14px;
  resize: vertical;
  min-height: 120px;
  align-items: flex-start;
}
.cf-group textarea + svg,
.cf-input-wrap > svg:first-child { top: 14px; }
.cf-input-wrap input:focus,
.cf-input-wrap textarea:focus,
.cf-input-wrap select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26,111,168,.08);
}
.cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}

/* Custom checkbox */
.cf-check-row { margin-bottom: 24px; }
.cf-checkbox {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  cursor: pointer;
  user-select: none;
}
.cf-checkbox input { display: none; }
.cf-checkmark {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  transition: var(--ease);
  position: relative;
}
.cf-checkbox input:checked + .cf-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.cf-checkbox input:checked + .cf-checkmark::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* Checkbox grid for sample form */
.cf-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 32px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(26,111,168,.35);
  font-family: 'Outfit', sans-serif;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,111,168,.45);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit-green { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-submit-green:hover { box-shadow: 0 8px 32px rgba(37,211,102,.4); }

/* Sample note */
.ct-sample-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,198,255,.08);
  border: 1px solid rgba(0,198,255,.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}
.ct-sample-note svg { flex-shrink: 0; color: var(--primary); margin-top: 1px; }

/* ── INFO PANEL ── */
.ct-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-info-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.ct-info-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 28px rgba(26,111,168,.12);
  transform: translateY(-2px);
}
.ct-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
#ctAddress .ct-info-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.ct-info-card:nth-child(2) .ct-info-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.ct-info-card:nth-child(3) .ct-info-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.ct-info-card:nth-child(4) .ct-info-icon { background: linear-gradient(135deg, var(--accent2), #2d9e9e); }

.ct-info-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ct-info-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2px;
}
.ct-info-body a { color: var(--text-muted); transition: var(--ease); }
.ct-info-body a:hover { color: var(--primary); }
.ct-info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary) !important;
}
.ct-info-link:hover { color: var(--accent) !important; }
.wa-link { color: #25D366 !important; }
.wa-link:hover { color: #128C7E !important; }

/* Hours */
.ct-hours { margin-bottom: 12px; }
.ct-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.ct-hour-row span { color: var(--text-muted); }
.ct-hour-row strong { color: var(--dark); font-weight: 700; }
.ct-hour-row strong.closed { color: #ef4444; }
.ct-response-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37,211,102,.08);
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 4px;
}
.ct-response-tag svg { fill: #25D366; width: 8px; height: 8px; animation: blinkDot 1.5s ease-in-out infinite; }
@keyframes blinkDot { 0%,100%{opacity:1}50%{opacity:.3} }

/* Social card */
.ct-social-card {
  background: var(--dark);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
}
.ct-social-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ct-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ct-soc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--ease);
}
.ct-soc-btn:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }
.ct-soc-btn.fb:hover  { background: #1877f2; border-color: #1877f2; }
.ct-soc-btn.ig:hover  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.ct-soc-btn.yt:hover  { background: #ff0000; border-color: #ff0000; }
.ct-soc-btn.li:hover  { background: #0077b5; border-color: #0077b5; }

/* ─────────────────────────────────────────────
   MAP SECTION
───────────────────────────────────────────── */
.ct-map-section { background: #fff; }
.ct-map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 72px 24px 36px;
  gap: 32px;
  flex-wrap: wrap;
}
.ct-map-header .eyebrow { margin-bottom: 8px; }
.ct-map-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 8px;
}
.ct-map-header h2 em { color: var(--primary); font-style: italic; }
.ct-map-header p { font-size: 15px; color: var(--text-muted); }

.ct-map-embed {
  position: relative;
  overflow: hidden;
}
.ct-map-embed iframe {
  display: block;
  filter: saturate(.9);
}
.ct-map-pin-card {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 260px;
}
.ct-pin-logo { flex-shrink: 0; }
.ct-map-pin-card strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.ct-map-pin-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 4px; }
.ct-map-pin-card a  { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ─────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────── */
.ct-faq-section {
  background: var(--off-white);
  padding: 96px 0;
}
.ct-faq-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* FAQ list */
.ct-faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  font-family: 'Outfit', sans-serif;
}
.faq-q:hover { color: var(--primary); }
.faq-q[aria-expanded="true"] { color: var(--primary); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--ease);
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 4px;
}
.faq-a.open { max-height: 200px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* FAQ aside */
.ct-faq-aside { display: flex; flex-direction: column; gap: 20px; }
.faq-aside-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.faq-aside-icon {
  width: 72px; height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}
.faq-aside-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.faq-aside-card p  { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

.faq-trust-list {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.faq-trust-item svg { color: #25D366; flex-shrink: 0; }

/* ── SUCCESS OVERLAY ── */
.ct-success-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,30,55,.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.ct-success-overlay.show { opacity: 1; pointer-events: auto; }
.ct-success-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  transform: scale(.9);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.ct-success-overlay.show .ct-success-box { transform: scale(1); }
.ct-success-tick {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: popIn .5s cubic-bezier(.25,.8,.25,1);
}
@keyframes popIn { from{transform:scale(0) rotate(-20deg)} to{transform:scale(1) rotate(0)} }
.ct-success-tick svg { color: #fff; }
.ct-success-box h3 { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--dark); margin-bottom: 10px; }
.ct-success-box p  { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.ct-success-close {
  padding: 12px 32px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: var(--ease);
  border: none;
}
.ct-success-close:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,168,.4); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media(max-width:1100px) {
  .ct-main-grid { grid-template-columns: 1fr; }
  .ct-info-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .ct-social-card { grid-column: span 2; }
  .ct-faq-grid { grid-template-columns: 1fr; }
  .ct-faq-aside { flex-direction: row; flex-wrap: wrap; }
  .faq-aside-card { flex: 1; min-width: 260px; }
  .faq-trust-list { flex: 1; min-width: 240px; }
}

@media(max-width:900px) {
  .ct-pills-inner { grid-template-columns: repeat(2, 1fr); }
  .ct-quick-pills { bottom: -80px; }
  .ct-hero { padding-bottom: 160px; }
  .ct-main-section { padding-top: 140px; }
}

@media(max-width:680px) {
  .ct-hero { padding-bottom: 220px; }
  .ct-pills-inner { grid-template-columns: 1fr; }
  .ct-quick-pills { bottom: -180px; }
  .ct-main-section { padding-top: 220px; }
  .ct-form-panel { padding: 28px 20px; }
  .cf-row { grid-template-columns: 1fr; }
  .ct-form-tabs { flex-direction: column; gap: 4px; }
  .ct-tab { border-radius: 8px; border-bottom: none; border-left: 3px solid transparent; }
  .ct-tab.active { border-left-color: var(--primary); border-bottom: none; }
  .ct-info-panel { grid-template-columns: 1fr; }
  .ct-social-card { grid-column: auto; }
  .ct-map-pin-card { display: none; }
  .ct-map-header { flex-direction: column; align-items: flex-start; }
  .ct-faq-aside { flex-direction: column; }
  .cf-checkbox-grid { grid-template-columns: 1fr; }
}

@media(max-width:480px) {
  .ct-hero-title { font-size: 56px; }
  .ct-social-row { grid-template-columns: 1fr; }
}
