/* Hero: video + form overlay */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  justify-content: center;
}

.hero-form-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}


.section-giftcard {
  background-color: none;  /* For a full width background, use background-color: var(--light) */
}

.section-giftcard .section-inner {
  background: transparent;
}

.section-giftcard .section-inner {
  background-color: var(--treeleaves-shade);  /* background-color: #263f13;  */ 
  padding: 4rem 1.25rem;
  border-radius: 12px;
}

/* Flex wrapper */
.pay-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 1rem;
}

/* Left column */
.pay-text {
  flex: 1 1 300px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Right column */
.pay-card {
  flex: 0 0 260px;
}

.paypal-qr {
  max-width: 100%;
  height: auto;
  width: 180px;  
  border-radius: 0.75rem;
  display: block;
  margin: 0 auto;
}

.paypal-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.paypal-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  background: none; /* background: #10101b; */
  border-radius: 1rem;
  padding: 1.5rem 1.25rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.paypal-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.paypal-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}


.section-headercta {
  text-align: center;
}

.headercta {
  width: clamp(220px, 60vw, 320px);
  margin: 0 auto;
}

.headercta-img {
  width: 100%;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.headercta-btn {
  display: block;
  width: 100%;
}

.faq-subquestion {
  background-color: #2d0000;
  border: 1px solid var(--fg);
  border-radius: 10%;
  font-family: var(--font-body);
  font-size: medium;
  padding: 1%;
}

.faq-p { text-align: justify; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--fg);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: var(--darkerred);
  /* background: none; */
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;  
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: background 0.25s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }    /* Safari */

.faq-item p {
  margin-top: 0.75rem;
  line-height: 1.6;
  hyphens: auto;
}

.faq-item[open] {
  /* background: #fff; */
  background: none;
  border-color: var(--fg);  
}

.faq-item[open] p {
  text-align: justify;  /* No need to specify this parameter inside the html anymore, isn't it? */
}

.faq-item[open] > summary {
  background: var(--fg); /* background: rgba(255, 255, 255, 0.6);- subtle grey tint */
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  color: var(--bg); /*  color: #2d0000; */
}

.faq-item p::after {
  content: "";
  display: block;
  clear: both;
}

.faq-content h3,
.faq-content h4 {
  margin-top: 1rem;
  font-weight: 600;
}

.faq-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.faq-content p {
  margin: 0.5rem 0 1rem;
  text-align: justify;
}

.faq-video-left {
  width: 260px;
  height: auto;
  float: left;
  margin: 0 20px 10px 0;
  border-radius: 25px;
  display: block;
}

/*
details.faq-item video.faq-video-left {
  width: 240px !important;
  height: auto !important;
  float: left !important;
  margin: 0 20px 10px 0 !important;
  border-radius: 25px !important;
  display: block !important;
}
*/

.faq-video-block::after {
  content: "";
  display: block;
  clear: both;
}

.faq-item p:first-of-type::after {
  clear: right; /* override only for the video paragraph */
}

.service-card {
  margin-top: 2.2rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--darkerred);
  border: 1px solid var(--border-soft);
  color: var(--fg);
  font-size: 14px;
}

.service-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--treeleaves);
  color: var(--fg);
  font-size: 13px;
}

.service-pill a:hover {    
  font-weight: bolder;
  font-size: larger;
  color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 800px) {   /* @media (max-width: 600px) is for mobile phones screens - @media (max-width: 1100px) for desktop screens */
  .hero-overlay { justify-content: center; padding-top: 4rem; }  
  .hero { min-height: 80vh; }
}