/* Contact page — hero & section polish */

.contact-page .main {
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.ct-hero {
  padding: 150px 0 0;
  background: #fff;
  text-align: center;
}

.ct-hero .container {
  max-width: 820px;
}

.ct-hero__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff3b2f;
  margin-bottom: 1rem;
}

.ct-hero__title {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #112344;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.ct-hero__desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 640px;
}

.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
  will-change: transform;
}

.ct-btn i {
  font-size: 1.05rem;
}

.ct-btn--primary {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 59, 47, 0.28);
}

.ct-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 59, 47, 0.35);
}

.ct-btn--outline {
  background: #fff;
  color: #ff3b2f;
  border-color: #ff3b2f;
}

.ct-btn--outline:hover {
  background: rgba(255, 59, 47, 0.06);
  color: #e03520;
  transform: translateY(-2px);
}

.ct-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.ct-btn--whatsapp:hover {
  color: #fff;
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.ct-btn:focus-visible {
  outline: 2px solid #ff5a2c;
  outline-offset: 3px;
}

.ct-breadcrumbs {
  padding: 16px 0;
  background: #f8f9fc;
  border-top: 1px solid #eef1f6;
}

.ct-breadcrumbs .container {
  max-width: 1140px;
}

.ct-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  gap: 4px;
}

.ct-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.ct-breadcrumbs a:hover {
  color: #ff3b2f;
}

.ct-breadcrumbs .current {
  color: #112344;
  font-weight: 500;
}

.ct-breadcrumbs li + li::before {
  content: "/";
  padding-right: 8px;
  color: #cbd5e1;
}

/* ---------- Contact section polish ---------- */
.contact-page .contact.section {
  background: #f8f9fc;
  padding-top: 60px;
  padding-bottom: 0;
}

.contact-page .contact .contact-info-item {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eef1f6;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact .contact-info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-page .contact .contact-info-item .info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 59, 47, 0.12), rgba(255, 90, 44, 0.08));
}

.contact-page .contact .contact-info-item .info-icon i {
  font-size: 22px;
  color: #ff3b2f;
}

.contact-page .contact .contact-info-item .info-content h3 {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: 1.1rem;
  color: #112344;
}

.contact-page .contact .contact-info-item .info-content p {
  color: #64748b;
  font-size: 14px;
}

.contact-page .contact .contact-info-item .info-content a {
  color: #64748b;
  text-decoration: none;
}

.contact-page .contact .contact-info-item .info-content a:hover {
  color: #ff3b2f;
}

.contact-page .contact .contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #eef1f6;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.contact-page .contact .contact-form-card h2 {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #112344;
}

.contact-page .contact .contact-form-card h2 span {
  color: #ff5a2c;
}

.contact-page .contact .contact-form-card .form-control {
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 12px;
  margin-bottom: 16px;
}

.contact-page .contact .contact-form-card .form-control:focus {
  background: #fff;
  border-color: #ff5a2c;
  box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.12);
}

.contact-page .contact .btn-submit {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  border-radius: 12px;
  font-weight: 600;
  padding: 16px 28px;
}

.contact-page .contact .btn-submit:hover {
  background: linear-gradient(135deg, #e03520, #ff3b2f);
  box-shadow: 0 10px 24px rgba(255, 59, 47, 0.3);
}

.contact-page .contact .map-container {
  margin-top: 48px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.contact-page .contact .map-container iframe {
  border-radius: 0;
}

@media (max-width: 767px) {
  .ct-hero {
    padding-top: 88px;
  }

  .ct-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .ct-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-btn,
  .contact-page .contact .contact-info-item {
    transition: none;
  }

  .ct-btn:hover,
  .contact-page .contact .contact-info-item:hover {
    transform: none;
  }
}
