:root {
  --contact-gradient: linear-gradient(135deg, #0b0b0b 0%, #1c1c0f 40%, #4a0e18 100%);
}

.page-hero.contact-hero {
  padding: 8rem 0 5rem;
  background-image:
    linear-gradient(140deg, rgba(209, 31, 38, 0.55), rgba(0, 0, 0, 0.75)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)),
    url('../media/images/C.E.O-GRISHON.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3f3f3;
  text-align: left;
}

.page-hero.contact-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.2;
  word-break: break-word;
  color: #ffffff;
}

.page-hero.contact-hero .lead {
  max-width: 560px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section.contact-options {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--contact-gradient);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.55);
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.contact-card p {
  margin: 0 0 0.6rem;
  color: #dcdcdc;
  line-height: 1.5;
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
  display: block;
}

.icon-link {
  display: inline-flex;
}

.contact-note {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #a8a8a8;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
  z-index: 90;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  color: #fff;
  fill: #fff;
}

.faq-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.85), rgba(5, 5, 5, 0.95));
}

.faq-section .section-header h2,
.faq-section .section-header p {
  color: #fff;
}

.faq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.faq-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}

.faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.4;
}

.faq-toggle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #d11f26;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  box-sizing: border-box;
}

.faq-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.faq-toggle[aria-expanded="true"] {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.5rem 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 260ms ease, opacity 260ms ease, padding 260ms ease;
}

.faq-card.is-open .faq-panel {
  opacity: 1;
  padding-bottom: 1.25rem;
  pointer-events: auto;
}

.faq-panel p {
  margin: 0;
  color: #dcdcdc;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .page-hero.contact-hero {
    text-align: left;
    padding-top: 6rem;
  }

  .page-hero.contact-hero h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
    padding-right: 0.5rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
