/* ===== Hero Section ===== */
.poker-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('/assets/images/poker-hero.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10%;
}

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.poker-hero__panel {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 700px;
  background: rgba(46,46,46,0.8);
  padding: var(--space-sm);
  text-align: center;
  margin-inline: auto;
}

.poker-hero__title {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-line);
  font-weight: var(--text-h1-weight);
  margin-bottom: var(--space-2xs);
}

.poker-hero__intro {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line);
  margin-bottom: var(--space-xs);
}

.poker-hero__actions {
  display: flex;
  gap: var(--space-2xs);
  justify-content: center;
  flex-wrap: wrap;
}

.poker-hero__btn {
  min-width: 160px;
}

/* ===== Introduction Section ===== */
.poker-intro {
  text-align: center;
}

.poker-intro__content {
  max-width: 700px;
  width: 80%;
  margin-inline: auto;
}

.poker-intro__title {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-line);
  font-weight: var(--text-h2-weight);
  margin-bottom: var(--space-2xs);
}

.poker-intro__text {
  margin-bottom: var(--space-sm);
}

.poker-intro__quote {
  border-left: 3px solid var(--color-deepRed);
  padding-left: var(--space-xs);
  color: var(--color-mutedWhite);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: var(--space-sm);
}

/* ===== Features Section ===== */
.poker-features__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xs);
}

.poker-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: var(--space-xs);
  background-color: var(--surface-card-bg);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.poker-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.poker-feature__icon {
  margin-bottom: var(--space-2xs);
}

.poker-feature__name {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line);
  font-weight: var(--text-h3-weight);
  margin-bottom: var(--space-3xs);
  color: var(--color-offWhite);
}

.poker-feature__desc {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line);
  color: var(--color-mutedWhite);
}

/* ===== Process Section ===== */
.poker-process__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.poker-process__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-process__layout {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.poker-process__image {
  flex: 0 0 40%;
  max-width: 40%;
}

.poker-process__image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border: 1px solid var(--color-graphite);
}

.poker-process__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.poker-process__step {
  counter-increment: step-counter;
  position: relative;
  padding-left: var(--space-sm);
}

.poker-process__step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  font-weight: 700;
  color: var(--color-deepRed);
  line-height: 1;
}

.poker-process__step-title {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line);
  font-weight: var(--text-h3-weight);
  margin-bottom: var(--space-3xs);
}

.poker-process__step-desc {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line);
  color: var(--color-mutedWhite);
}

/* ===== Gallery Section ===== */
.poker-gallery__title {
  text-align: center;
  margin-bottom: var(--space-2xs);
}

.poker-gallery__intro {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.poker-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3xs);
  max-width: var(--container-max);
  margin-inline: auto;
}

.poker-gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.poker-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-fast);
}

.poker-gallery__item:hover img {
  filter: brightness(1.1);
}

/* ===== Pricing Section ===== */
.poker-pricing__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-pricing__list {
  max-width: 800px;
  width: 80%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.poker-pricing__package {
  background-color: var(--surface-card-bg);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
}

.poker-pricing__package-name {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line);
  font-weight: var(--text-h3-weight);
  color: var(--color-deepRed);
  margin-bottom: var(--space-3xs);
}

.poker-pricing__package-desc {
  margin-bottom: var(--space-2xs);
}

.poker-pricing__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4xs);
}

.poker-pricing__details li {
  position: relative;
  padding-left: var(--space-2xs);
  color: var(--color-mutedWhite);
}

.poker-pricing__details li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--color-deepRed);
  font-size: 0.75rem;
  line-height: var(--text-body-line);
}

.poker-pricing__price {
  font-weight: 700;
  color: var(--color-offWhite);
}

.poker-pricing__note {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: var(--text-small-size);
  color: var(--color-mutedWhite);
}

/* ===== FAQ Section ===== */
.poker-faq__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-faq__list {
  max-width: 800px;
  width: 80%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}

.poker-faq__item {
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-md);
  background-color: var(--surface-card-bg);
  overflow: hidden;
}

.poker-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2xs) var(--space-xs);
  background: none;
  border: none;
  color: var(--color-offWhite);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.poker-faq__question:hover {
  color: var(--color-agedRed);
}

.poker-faq__icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.poker-faq__item.active .poker-faq__icon {
  transform: rotate(45deg);
}

.poker-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.poker-faq__item.active .poker-faq__answer {
  max-height: 500px;
}

.poker-faq__answer p {
  padding: 0 var(--space-xs) var(--space-2xs);
  color: var(--color-mutedWhite);
}

/* ===== Contact Section ===== */
.poker-contact__container {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.poker-contact__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-contact__layout {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.poker-contact__info {
  flex: 0 0 40%;
  max-width: 40%;
}

.poker-contact__info p {
  margin-bottom: var(--space-2xs);
}

.poker-contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  background-color: var(--surface-card-bg);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
}

.poker-contact__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xs);
}

.poker-contact__field input,
.poker-contact__field textarea {
  background-color: var(--color-smoke);
  border: 1px solid var(--color-graphite);
  color: var(--color-offWhite);
  padding: var(--space-3xs) var(--space-2xs);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  transition: border-color var(--transition-fast);
}

.poker-contact__field input:focus,
.poker-contact__field textarea:focus {
  outline: none;
  border-color: var(--color-deepRed);
}

.poker-contact__field input.error,
.poker-contact__field textarea.error {
  border-color: var(--color-deepRed);
}

.poker-contact__error {
  font-size: var(--text-small-size);
  color: var(--color-deepRed);
  min-height: 1.2em;
}

.poker-contact__submit {
  align-self: flex-start;
}

.poker-contact__privacy {
  font-size: var(--text-small-size);
  color: var(--color-mutedWhite);
}

.poker-contact__privacy a {
  color: var(--color-deepRed);
  text-decoration: underline;
}

/* ===== Testimonials Section ===== */
.poker-testimonials__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.poker-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
  max-width: 900px;
  margin-inline: auto;
}

.poker-testimonial {
  display: flex;
  flex-direction: column;
  padding: var(--space-xs);
  background-color: var(--surface-card-bg);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.poker-testimonial__quote {
  border-left: 3px solid var(--color-deepRed);
  padding-left: var(--space-xs);
  margin-bottom: var(--space-2xs);
  font-style: italic;
  color: var(--color-offWhite);
}

.poker-testimonial__quote p {
  margin: 0;
}

.poker-testimonial__author {
  font-weight: 600;
  margin-bottom: var(--space-4xs);
}

.poker-testimonial__event {
  font-size: var(--text-small-size);
  color: var(--color-mutedWhite);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .poker-hero__panel {
    width: 70%;
  }

  .poker-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-process__layout {
    flex-direction: column;
  }

  .poker-process__image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .poker-process__image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .poker-contact__layout {
    flex-direction: column;
  }

  .poker-contact__info {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .poker-hero {
    height: 70vh;
  }

  .poker-hero__panel {
    width: 90%;
    padding: var(--space-xs);
  }

  .poker-hero__title {
    font-size: 2rem;
  }

  .poker-hero__intro {
    font-size: 1rem;
  }

  .poker-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-hero__btn {
    width: 100%;
  }

  .poker-intro__content {
    width: 90%;
  }

  .poker-features__grid {
    grid-template-columns: 1fr;
  }

  .poker-process__list {
    padding-left: 0;
  }

  .poker-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-pricing__list {
    width: 90%;
  }

  .poker-faq__list {
    width: 90%;
  }

  .poker-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .poker-hero__title {
    font-size: 1.75rem;
  }

  .poker-intro__quote {
    font-size: 1rem;
  }

  .poker-gallery__grid {
    grid-template-columns: 1fr;
  }

  .poker-pricing__list {
    width: 100%;
  }

  .poker-faq__list {
    width: 100%;
  }

  .poker-contact__form {
    padding: var(--space-2xs);
  }
}
