/* ========================================
   contact.css — Contact page
   Scoped to .contact-page
   Design tokens match a1-landing.css
   ======================================== */

.contact-page {
  --ct-navy: #082333;
  --ct-blue: #0b76b3;
  --ct-blue-2: #3d9fd8;
  --ct-blue-3: #2964c8;
  --ct-teal: #009a77;
  --ct-orange: #e67e22;
  --ct-orange-dark: #d4711f;
  --ct-ink: #0c344b;
  --ct-slate: #33475b;
  --ct-muted: #5a7184;
  --ct-soft: #f8fafc;
  --ct-faint: #f0f7ff;
  --ct-border: #e3ecf3;
  --ct-radius: 16px;
  --ct-wa: #25d366;
  --ct-wa-dark: #1eba56;
}

.contact-page h1,
.contact-page h2,
.contact-page h3 {
  margin-top: 0 !important;
}

/* ========================================
   HERO
   ======================================== */
.contact-page .ct-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ct-navy) 0%, var(--ct-blue) 60%, var(--ct-blue-2) 100%);
  padding: 110px 0 70px;
  margin-top: -1px;
  overflow: hidden;
  color: #fff;
}

.contact-page .ct-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem !important;
}

.contact-page .ct-hero .hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.contact-page .ct-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-page .ct-hero .hero-cta {
  border-radius: 35px !important;
  padding: 14px 40px !important;
  font-variant-caps: small-caps;
  font-size: 1.125rem !important;
  background-color: var(--ct-orange) !important;
  border-color: var(--ct-orange) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-page .ct-hero .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.45);
  background-color: var(--ct-orange-dark) !important;
  border-color: var(--ct-orange-dark) !important;
}

.contact-page .ct-hero .btn-ghost {
  border-radius: 35px !important;
  padding: 13px 30px !important;
  font-size: 1rem !important;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  transition: background 0.2s, border-color 0.2s;
}

.contact-page .ct-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #fff !important;
}

.contact-page .ct-hero .hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  flex-wrap: wrap;
}

.contact-page .ct-hero .hero-rating .stars {
  color: var(--ct-orange);
  letter-spacing: 2px;
}

.contact-page .ct-hero .hero-rating .sep {
  color: rgba(255, 255, 255, 0.4);
}

.contact-page .ct-hero .hero-moneyback {
  display: block;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0.85rem;
  color: #fff;
}

.contact-page .ct-hero .hmb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 1rem;
  color: #fff !important;
  text-decoration: none !important;
}

.contact-page .ct-hero .hmb-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
  text-decoration: none !important;
}

.contact-page .ct-hero .hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .ct-hero .hero-visual {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.contact-page .ct-hero .hero-circle-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: ct-blob-pulse 4s ease-in-out infinite;
}

@keyframes ct-blob-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.contact-page .ct-hero .hero-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   CONTACT METHODS
   ======================================== */
.contact-page .ct-methods {
  padding: 70px 0 40px;
  background: linear-gradient(180deg, var(--ct-faint) 0%, #fff 100%);
}

.contact-page .ct-methods-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.contact-page .ct-methods-intro h2 {
  color: var(--ct-ink);
  font-weight: 700;
  font-size: 1.85rem;
  margin-bottom: 0.75rem !important;
}

.contact-page .ct-methods-intro p {
  color: var(--ct-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-page .ct-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-page .ct-method-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(8, 35, 51, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

.contact-page .ct-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 118, 179, 0.14);
  border-color: rgba(11, 118, 179, 0.25);
  text-decoration: none !important;
  color: inherit;
}

.contact-page .ct-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.contact-page .ct-method-icon.email {
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-blue-3));
  color: #fff;
}

.contact-page .ct-method-icon.whatsapp {
  background: linear-gradient(135deg, var(--ct-wa), #128c7e);
  color: #fff;
}

.contact-page .ct-method-icon.phone {
  background: linear-gradient(135deg, var(--ct-teal), #00c89a);
  color: #fff;
}

.contact-page .ct-method-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ct-ink);
  margin-bottom: 0.5rem !important;
}

.contact-page .ct-method-card p {
  font-size: 0.92rem;
  color: var(--ct-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  flex: 1;
}

.contact-page .ct-method-card .ct-method-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ct-blue);
  word-break: break-word;
}

.contact-page .ct-method-card.whatsapp .ct-method-value {
  color: var(--ct-wa-dark);
}

/* ========================================
   MAIN FORM SECTION
   ======================================== */
.contact-page .ct-form-section {
  padding: 60px 0 80px;
  background: #fff;
}

.contact-page .ct-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.4fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-page .ct-form-aside {
  background: linear-gradient(180deg, var(--ct-faint) 0%, #fff 100%);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 2rem;
  box-shadow: 0 8px 28px rgba(8, 35, 51, 0.06);
}

.contact-page .ct-form-aside h2 {
  color: var(--ct-ink);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.85rem !important;
}

.contact-page .ct-form-aside p {
  color: var(--ct-slate);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-page .ct-availability {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.contact-page .ct-availability li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--ct-border);
  color: var(--ct-slate);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-page .ct-availability li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-page .ct-availability .ct-av-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ct-faint);
  color: var(--ct-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.contact-page .ct-form-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 2.25rem;
  box-shadow: 0 12px 40px rgba(8, 35, 51, 0.10);
}

.contact-page .ct-form-card h2 {
  color: var(--ct-ink);
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 0.4rem !important;
}

.contact-page .ct-form-intro {
  color: var(--ct-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-page .ct-form-card .form-group {
  margin-bottom: 1.2rem;
}

.contact-page .ct-form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ct-ink);
  margin-bottom: 0.4rem;
}

.contact-page .ct-form-card .form-control {
  height: auto;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ct-slate);
  background-color: var(--ct-soft);
  border: 1px solid #d7e3ec;
  border-radius: 10px;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-page .ct-form-card .form-control:focus {
  background-color: #fff;
  border-color: var(--ct-blue);
  box-shadow: 0 0 0 3px rgba(11, 118, 179, 0.15);
  outline: none;
}

.contact-page .ct-form-card .form-control::placeholder {
  color: #9db1c0;
}

.contact-page .ct-form-card .form-control.is-invalid {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.contact-page .ct-form-card .field-error {
  display: none;
  color: #c62828;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.contact-page .ct-form-card .field-error.show {
  display: block;
}

.contact-page .ct-form-card .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--ct-soft);
  border: 1px solid #d7e3ec;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-page .ct-form-card .checkbox-group:hover {
  background: #fff;
  border-color: var(--ct-blue);
}

.contact-page .ct-form-card .checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  cursor: pointer;
}

.contact-page .ct-form-card .checkbox-group label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ct-slate);
  cursor: pointer;
  line-height: 1.5;
}

.contact-page .ct-form-card .checkbox-group label a {
  color: var(--ct-blue);
  font-weight: 600;
}

.contact-page .ct-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-page .ct-submit {
  border-radius: 35px !important;
  padding: 14px 40px !important;
  font-variant-caps: small-caps;
  font-size: 1.125rem !important;
  background-color: var(--ct-blue) !important;
  border-color: var(--ct-blue) !important;
  color: #fff !important;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.35rem;
  width: 100%;
  cursor: pointer;
}

.contact-page .ct-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 118, 179, 0.35);
  background-color: #095d8f !important;
  border-color: #095d8f !important;
}

.contact-page .ct-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-page .ct-form-msg {
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  display: none;
}

.contact-page .ct-form-msg.show {
  display: block;
}

.contact-page .ct-form-msg.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.contact-page .ct-form-msg.error {
  background: #ffebee;
  color: #c62828;
}

.contact-page .ct-form-msg.pending {
  background: var(--ct-soft);
  color: var(--ct-muted);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.contact-page .ct-testimonials {
  padding: 80px 0;
  background: var(--ct-soft);
}

.contact-page .ct-testimonials .ct-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.contact-page .ct-testimonials .ct-section-head h2 {
  color: var(--ct-ink);
  font-weight: 700;
  font-size: 1.85rem;
  margin-bottom: 0.6rem !important;
}

.contact-page .ct-testimonials .ct-section-head p {
  color: var(--ct-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.contact-page .ct-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-page .ct-testi-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  box-shadow: 0 6px 24px rgba(8, 35, 51, 0.06);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-page .ct-testi-text {
  color: var(--ct-slate);
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.contact-page .ct-testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ct-border);
}

.contact-page .ct-testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-page .ct-testi-author h5 {
  margin: 0 !important;
  font-weight: 700;
  color: var(--ct-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.contact-page .ct-testi-author .stars {
  margin: 0.15rem 0 0;
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* ========================================
   FAQ
   ======================================== */
.contact-page .ct-faq {
  padding: 80px 0;
  background: #fff;
}

.contact-page .ct-faq .ct-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.contact-page .ct-faq .ct-section-head h2 {
  color: var(--ct-ink);
  font-weight: 700;
  font-size: 1.85rem;
  margin-bottom: 0.6rem !important;
}

.contact-page .ct-faq .ct-section-head p {
  color: var(--ct-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.contact-page .ct-faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  box-shadow: 0 12px 32px rgba(8, 35, 51, 0.08);
  overflow: hidden;
}

.contact-page .ct-faq-item {
  border-bottom: 1px solid var(--ct-border);
}

.contact-page .ct-faq-item:last-child {
  border-bottom: 0;
}

.contact-page .ct-faq-q {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--ct-ink) !important;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 1.1rem 2.6rem 1.1rem 1.25rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  position: relative;
  background: transparent;
  cursor: pointer;
  line-height: 1.45;
  transition: color 0.15s;
}

.contact-page .ct-faq-q::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ct-blue);
}

.contact-page .ct-faq-q[aria-expanded="true"]::after {
  content: "−";
}

.contact-page .ct-faq-q:hover {
  color: var(--ct-blue) !important;
}

.contact-page .ct-faq-a {
  padding: 0 1.25rem 1.15rem;
  color: var(--ct-slate);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-page .ct-faq-a p {
  margin: 0;
  color: var(--ct-slate);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-page .ct-faq-a a {
  color: var(--ct-blue);
  font-weight: 600;
}

/* ========================================
   SEE-ALSO
   ======================================== */
.contact-page .ct-see-also {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 15px;
}

.contact-page .ct-see-also .see-also-box {
  background: var(--ct-faint) !important;
  border-left: 4px solid var(--ct-blue) !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 2rem 2.25rem !important;
}

.contact-page .ct-see-also h3 {
  font-size: 1.3rem;
  color: var(--ct-ink);
  margin-bottom: 1rem !important;
}

.contact-page .ct-see-also ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.contact-page .ct-see-also li {
  color: var(--ct-slate);
  line-height: 1.6;
  font-size: 0.98rem;
}

.contact-page .ct-see-also a {
  color: var(--ct-blue);
  font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
  .contact-page .ct-hero h1 {
    font-size: 2.1rem;
  }
  .contact-page .ct-hero .hero-visual-col {
    margin-top: 2.5rem;
  }
  .contact-page .ct-hero .hero-visual {
    max-width: 260px;
  }
  .contact-page .ct-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page .ct-form-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-page .ct-form-aside {
    order: 2;
  }
  .contact-page .ct-form-card {
    order: 1;
  }
}

@media (max-width: 767.98px) {
  .contact-page .ct-testi-grid {
    grid-template-columns: 1fr;
  }
  .contact-page .ct-see-also ul {
    grid-template-columns: 1fr;
  }
  .contact-page .ct-methods {
    padding: 50px 0 30px;
  }
  .contact-page .ct-form-section {
    padding: 40px 0 60px;
  }
  .contact-page .ct-testimonials,
  .contact-page .ct-faq {
    padding: 50px 0;
  }
  .contact-page .ct-see-also {
    margin-bottom: 50px;
  }
}

@media (max-width: 575.98px) {
  .contact-page .ct-hero {
    padding: 90px 0 55px;
  }
  .contact-page .ct-hero h1 {
    font-size: 1.7rem;
  }
  .contact-page .ct-hero .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .contact-page .ct-methods-grid {
    grid-template-columns: 1fr;
  }
  .contact-page .ct-form-card {
    padding: 1.5rem;
  }
  .contact-page .ct-form-aside {
    padding: 1.5rem;
  }
  .contact-page .ct-see-also .see-also-box {
    padding: 1.5rem !important;
  }
}
