/* ============================
   CUSTOM FONT IMPORT
   ============================ */
@font-face {
  font-family: 'Buttain';
  src: url('../fonts/buttain.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================
   CHRISTMAS 2025 TEMPLATE
   ============================ */

.pjs-christmas-2025 { overflow: hidden; }

/* ============================
   HERO BANNER
   ============================ */
.pjs-christmas-hero {
  position: relative;
  height: 843px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay on background image */
.pjs-christmas-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Christmas logo overlay */
.pjs-christmas-hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 1129px;
  height: 661px; */
  z-index: 2;
}

.pjs-christmas-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Decorative border overlay */
.pjs-christmas-hero-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.pjs-christmas-hero-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .pjs-christmas-hero {
    height: 600px;
  }

  .pjs-christmas-hero-logo {
    width: 800px;
    height: 469px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  .pjs-christmas-hero {
    height: 500px;
  }

  .pjs-christmas-hero-logo {
    width: 600px;
    height: 352px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .pjs-christmas-hero {
    height: 500px;
  }

  .pjs-christmas-hero-logo {
    width: 90%;
    height: auto;
    max-width: 400px;
  }
}

/* ============================
   YOU'RE INVITED SECTION
   ============================ */
.pjs-christmas-invited {
  position: relative;
  height: 611px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Red textured background */
.christmas-invited-bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Nativity overlay with soft-light blend */
.christmas-invited-nativity {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1122px;
  height: 1049px;
  overflow: hidden;
  mix-blend-mode: soft-light;
  z-index: 2;
  pointer-events: none;
}

.christmas-invited-nativity img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content wrapper */
.pjs-christmas-invited .pjs-inner {
  position: relative;
  z-index: 3;
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 32px;
}

.pjs-christmas-invited .pjs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
}

/* Header with title and underline */
.pjs-christmas-invited .invited-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pjs-christmas-invited .invited-header h2 {
  font-family: 'Buttain', 'Georgia', serif;
  font-size: 54px;
  font-weight: normal;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding-bottom: 12px;
}

/* Decorative underline - flipped vertically */
.pjs-christmas-invited .invited-header .title-underline {
  width: 270px;
  height: 54px;
  transform: scaleY(-1);
  margin-top: -10px;
}

.pjs-christmas-invited .invited-header .title-underline img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(180deg);
}

/* Invitation text */
.pjs-christmas-invited .invited-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  margin: 0;
  max-width: 100%;
}

/* Button container */
.pjs-christmas-invited .pjs-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Gold button with icon */
.pjs-christmas-invited .invited-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #d8af29;
  color: #2e2d34;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 384px;
  border: none;
}

.pjs-christmas-invited .invited-button:hover {
  background-color: #c49d1f;
  transform: translateY(-2px);
}

.pjs-christmas-invited .invited-button span {
  flex: 1;
  text-align: left;
}

.pjs-christmas-invited .invited-button .button-icon {
  width: 18px;
  height: 11px;
  flex-shrink: 0;
}

/* ============================
   RESPONSIVE - YOU'RE INVITED
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .pjs-christmas-invited {
    height: 550px;
  }

  .christmas-invited-nativity {
    width: 900px;
    height: 840px;
  }

  .pjs-christmas-invited .invited-header h2 {
    font-size: 48px;
  }

  .pjs-christmas-invited .invited-text {
    font-size: 20px;
  }

  .pjs-christmas-invited .invited-button {
    min-width: 320px;
    font-size: 16px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  .pjs-christmas-invited {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
  }

  .christmas-invited-nativity {
    width: 700px;
    height: 654px;
  }

  .pjs-christmas-invited .pjs-content {
    gap: 32px;
  }

  .pjs-christmas-invited .invited-header h2 {
    font-size: 40px;
  }

  .pjs-christmas-invited .invited-header .title-underline {
    width: 220px;
    height: 44px;
  }

  .pjs-christmas-invited .invited-text {
    font-size: 18px;
  }

  .pjs-christmas-invited .invited-button {
    min-width: 280px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .pjs-christmas-invited {
    min-height: 450px;
    padding: 50px 0;
  }

  .christmas-invited-nativity {
    width: 500px;
    height: 467px;
  }

  .pjs-christmas-invited .pjs-inner {
    padding: 0 20px;
  }

  .pjs-christmas-invited .pjs-content {
    gap: 24px;
  }

  .pjs-christmas-invited .invited-header h2 {
    font-size: 32px;
  }

  .pjs-christmas-invited .invited-header .title-underline {
    width: 180px;
    height: 36px;
  }

  .pjs-christmas-invited .invited-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .pjs-christmas-invited .invited-button {
    min-width: 100%;
    max-width: 320px;
    padding: 14px 16px;
  }
}

/* ============================
   LOCATIONS DROPDOWN
   ============================ */
.locations-dropdown-wrapper {
  position: relative;
}

.locations-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 320px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 100;
}

.locations-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.location-item {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #2e2d34;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.location-item:hover {
  background-color: #f5f5f5;
}

.location-item:active {
  background-color: #e8e8e8;
}

/* Arrow rotation when dropdown is open */
.locations-dropdown-wrapper.active .invited-button .button-icon {
  transform: rotate(180deg);
}

.invited-button .button-icon {
  transition: transform 0.3s ease;
}

/* ============================
   LOCATION MODAL/POPUP
   ============================ */
.location-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.location-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.location-modal {
  position: relative;
  background-image: url('https://www.skylinechurch.org/wp-content/uploads/2025/11/canvas-green.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  max-width: 596px;
  width: 100%;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.location-modal-overlay.active .location-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

/* Modal background texture */
.modal-bg {
  position: absolute;
  bottom: 0;
  left: -256px;
  width: 893px;
  height: 502px;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Modal location image */
.modal-image {
  position: relative;
  width: 100%;
  height: 329px;
  overflow: hidden;
  z-index: 2;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Modal inner content */
.modal-inner {
  position: relative;
  z-index: 3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.modal-inner h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* Service times */
.modal-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 336px;
}

.modal-times p { text-align: center; color: #ffffff; font-size: 22px; line-height: 1.8; }

.modal-time-item {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  white-space: pre-wrap;
}

.modal-time-item strong {
  font-weight: bold;
}

/* RSVP button */
.modal-rsvp {
  width: 100%;
  max-width: 274px;
}

.modal-rsvp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #d8af29;
  color: #2e2d34;
  padding: 11px 31px;
  border-radius: 22px;
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.49px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-rsvp-btn:hover {
  background-color: #c49d1f;
  transform: translateY(-2px);
}

/* Share section */
.modal-share {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.modal-share p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.share-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.share-icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.share-icon svg {
  display: block;
}

/* ============================
   RESPONSIVE - MODAL
   ============================ */

@media (max-width: 768px) {
  .location-modal {
    max-width: 100%;
    margin: 0 16px;
  }

  .modal-image {
    height: 250px;
  }

  .modal-inner {
    padding: 24px;
    gap: 24px;
  }

  .modal-inner h3 {
    font-size: 22px;
  }

  .modal-time-item {
    font-size: 18px;
  }

  .modal-share p {
    font-size: 17px;
  }

  .modal-times p { font-size: 16px; text-align: left; }

  .share-icons {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .modal-image {
    height: 200px;
  }

  .modal-inner {
    padding: 20px;
    gap: 20px;
  }

  .modal-inner h3 {
    font-size: 20px;
  }

  .modal-time-item {
    font-size: 16px;
  }

  .modal-share p {
    font-size: 16px;
  }

  .share-icons {
    gap: 16px;
  }

  .share-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================
   GALLERY SECTION
   ============================ */
.pjs-christmas-gallery {
  position: relative;
  background-color: #215250 !important;
  height: 778px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
}

.pjs-christmas-gallery .carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 385px;
  display: flex;
  align-items: center;
}

.pjs-christmas-gallery .carousel .track {
  display: flex;
  gap: 8px;
  width: max-content;
}

.pjs-christmas-gallery .carousel .track img {
  border-radius: 16px;
  height: 366px;
  width: auto;
  display: block;
}

  .pjs-christmas-gallery .carousel.top .track {
    animation: scrollLeft 60s linear infinite;
  }
  
  .pjs-christmas-gallery .carousel.bottom .track {
    animation: scrollRight 60s linear infinite;
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-33.333%);
    }
  }
  
  @keyframes scrollRight {
    0% {
      transform: translateX(-33.333%);
    }
    100% {
      transform: translateX(0);
    }
  }

/* Star overlay - centered and stationary */
.gallery-star-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 946px;
  height: 532px;
  z-index: 10;
  pointer-events: none;
}

.gallery-star-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================
   RESPONSIVE - GALLERY
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .pjs-christmas-gallery {
    height: 650px;
  }

  .pjs-christmas-gallery .carousel {
    height: 320px; /* Taller than 300px images */
  }

  .pjs-christmas-gallery .carousel .track img {
    height: 300px;
  }

  .gallery-star-overlay {
    width: 750px;
    height: 422px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  .pjs-christmas-gallery {
    height: 550px;
  }

  .pjs-christmas-gallery .carousel {
    height: 270px; /* Taller than 250px images */
  }

  .pjs-christmas-gallery .carousel .track img {
    height: 250px;
  }

  .gallery-star-overlay {
    width: 600px;
    height: 337px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .pjs-christmas-gallery {
    height: 450px;
  }

  .pjs-christmas-gallery .carousel {
    height: 220px; /* Taller than 200px images */
  }

  .pjs-christmas-gallery .carousel .track img {
    height: 200px;
  }

  .gallery-star-overlay {
    width: 450px;
    height: 253px;
  }
}

/* ============================
   CHRISTMAS SEASON EVENTS
   ============================ */
.pjs-christmas-events {
  position: relative;
  background-color: #f5f0e8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 80px 0;
}

.pjs-christmas-events .pjs-inner {
  position: relative;
  z-index: 2;
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 32px;
}

.pjs-christmas-events .pjs-content {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: center;
}

/* Section Header */
.pjs-christmas-events .events-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pjs-christmas-events .events-header h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #215250;
  text-align: center;
  margin: 0;
}

.pjs-christmas-events .events-header .title-accent {
  width: 270px;
  height: 54px;
}

.pjs-christmas-events .events-header .title-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Events Carousel */
.pjs-christmas-events .events-carousel-wrapper {
  width: 100%;
  max-width: 1830px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.pjs-christmas-events .events-swiper {
  width: 100%;
  overflow: visible;
  padding: 10px 0;
}

.pjs-christmas-events .events-swiper .swiper-slide {
  width: 385px;
  height: auto;
}

/* Event Card */
.pjs-christmas-events .event-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pjs-christmas-events .event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pjs-christmas-events .event-card-image {
  width: 100%;
  height: 232px;
  overflow: hidden;
}

.pjs-christmas-events .event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pjs-christmas-events .event-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18.63px;
  flex: 1;
}

.pjs-christmas-events .event-card-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  margin: 0;
}

.pjs-christmas-events .event-card-description {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: #2e2d34;
  margin: 0;
  flex: 1;
}

.pjs-christmas-events .event-card-description p {
  margin: 0 0 8px 0;
}

.pjs-christmas-events .event-card-description p:last-child {
  margin-bottom: 0;
}

.pjs-christmas-events .event-card-button {
  margin-top: auto;
  margin: 0;
}

.pjs-christmas-events .event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #02758f;
  color: #fff;
  padding: 11px 31px;
  border-radius: 22px;
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.49px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pjs-christmas-events .event-btn:hover {
  background-color: #c49d1f;
  transform: translateY(-2px);
}

/* Pagination Dots */
.events-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

/* Swiper pagination bullet styles */
.events-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fff;
  opacity: 1;
  border-radius: 48px;
  transition: all 0.3s ease;
}

.events-pagination .swiper-pagination-bullet-active {
  width: 29px;
  background-color: #02758f;
}

/* ============================
   RESPONSIVE - EVENTS
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .pjs-christmas-events {
    padding: 60px 0;
  }

  .pjs-christmas-events .events-header h2 {
    font-size: 36px;
  }

  .pjs-christmas-events .events-swiper .swiper-slide {
    width: 340px;
  }

  .pjs-christmas-events .event-card-image {
    height: 200px;
  }

  .pjs-christmas-events .event-card-title {
    font-size: 22px;
  }

  .pjs-christmas-events .event-card-description {
    font-size: 16px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  .pjs-christmas-events {
    padding: 50px 0;
  }

  .pjs-christmas-events .pjs-inner {
    padding: 0 20px;
  }

  .pjs-christmas-events .pjs-content {
    gap: 32px;
  }

  .pjs-christmas-events .events-header h2 {
    font-size: 32px;
  }

  .pjs-christmas-events .events-header .title-accent {
    width: 220px;
    height: 44px;
  }

  .pjs-christmas-events .events-swiper .swiper-slide {
    width: 300px;
  }

  .pjs-christmas-events .event-card-content {
    padding: 20px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .pjs-christmas-events {
    padding: 40px 0;
  }

  .pjs-christmas-events .events-header h2 {
    font-size: 28px;
  }

  .pjs-christmas-events .events-header .title-accent {
    width: 180px;
    height: 36px;
  }

  .pjs-christmas-events .events-swiper .swiper-slide {
    width: 280px;
  }

  .pjs-christmas-events .event-card-image {
    height: 180px;
  }

  .pjs-christmas-events .event-card-title {
    font-size: 20px;
  }

  .pjs-christmas-events .event-card-description {
    font-size: 15px;
  }
}

/* ============================
   CTA SECTION
   ============================ */
.pjs-christmas-cta {
  position: relative;
  height: 843px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

/* Dark overlay on background image */
.pjs-christmas-cta .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* Content wrapper */
.pjs-christmas-cta .pjs-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 178px;
  width: 100%;
}

.pjs-christmas-cta .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* CTA Title */
.pjs-christmas-cta .cta-title {
  /* font-family: 'Buttain', 'Georgia', serif; */
  font-size: 54px;
  font-weight: normal;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* CTA Text/Content */
.pjs-christmas-cta .cta-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.pjs-christmas-cta .cta-text p {
  margin: 0 0 16px 0;
}

.pjs-christmas-cta .cta-text p:last-child {
  margin-bottom: 0;
}

/* CTA Button */
.pjs-christmas-cta .cta-button-wrapper {
  margin-top: 8px;
}

.pjs-christmas-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #02758f;
  color: #fff;
  padding: 11px 31px;
  border-radius: 22px;
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.49px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pjs-christmas-cta .cta-btn:hover {
  background-color: #c49d1f;
  transform: translateY(-2px);
}

/* ============================
   RESPONSIVE - CTA
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .pjs-christmas-cta {
    height: 600px;
    padding-bottom: 60px;
  }

  .pjs-christmas-cta .cta-title {
    font-size: 48px;
  }

  .pjs-christmas-cta .cta-text {
    font-size: 20px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  .pjs-christmas-cta {
    height: 500px;
    padding-bottom: 50px;
  }

  .pjs-christmas-cta .pjs-inner {
    padding: 0 24px;
  }

  .pjs-christmas-cta .cta-content {
    gap: 20px;
  }

  .pjs-christmas-cta .cta-title {
    font-size: 40px;
  }

  .pjs-christmas-cta .cta-text {
    font-size: 18px;
    max-width: 600px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .pjs-christmas-cta {
    height: 500px;
    padding-bottom: 40px;
  }

  .pjs-christmas-cta .pjs-inner {
    padding: 0 20px;
  }

  .pjs-christmas-cta .cta-content {
    gap: 16px;
  }

  .pjs-christmas-cta .cta-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .pjs-christmas-cta .cta-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .pjs-christmas-cta .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================
   FAQ SECTION
   ============================ */
section.pjs-section.pjs-christmas-faq {
  background-color: #215250;
  padding: 80px 0;
}

.pjs-christmas-faq .pjs-inner {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 32px;
}

.pjs-christmas-faq .pjs-content {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: center;
}

/* Section Header */
.pjs-christmas-faq .faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pjs-christmas-faq .faq-header h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.pjs-christmas-faq .faq-header .title-accent {
  width: 270px;
  height: 54px;
}

.pjs-christmas-faq .faq-header .title-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FAQ Accordion */
.pjs-christmas-faq .faq-accordion {
  width: 100%;
  max-width: 973px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ Item */
.pjs-christmas-faq .faq-item {
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}

/* FAQ Question Button */
.pjs-christmas-faq .faq-question {
  width: 100%;
  background-color: #d8af29;
  border: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pjs-christmas-faq .faq-question:hover {
  background-color: #c49d1f;
  transform: translateY(-1px);
}

.pjs-christmas-faq .faq-question-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #2e2d34;
  flex: 1;
}

/* FAQ Icon */
.pjs-christmas-faq .faq-icon {
  width: 18px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pjs-christmas-faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Answer */
.pjs-christmas-faq .faq-answer {
  display: none;
  overflow: hidden;
}

.pjs-christmas-faq .faq-answer-content {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  margin-top: 2px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2e2d34;
}

.pjs-christmas-faq .faq-answer-content p {
  margin: 0 0 12px 0;
}

.pjs-christmas-faq .faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* ============================
   RESPONSIVE - FAQ
   ============================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
  section.pjs-section.pjs-christmas-faq {
    padding: 60px 0;
  }

  .pjs-christmas-faq .faq-header h2 {
    font-size: 36px;
  }

  .pjs-christmas-faq .faq-question-text {
    font-size: 17px;
  }

  .pjs-christmas-faq .faq-answer-content {
    font-size: 15px;
    padding: 14px;
  }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
  section.pjs-section.pjs-christmas-faq {
    padding: 50px 0;
  }

  .pjs-christmas-faq .pjs-inner {
    padding: 0 24px;
  }

  .pjs-christmas-faq .pjs-content {
    gap: 42px;
  }

  .pjs-christmas-faq .faq-header h2 {
    font-size: 32px;
  }

  .pjs-christmas-faq .faq-header .title-accent {
    width: 220px;
    height: 44px;
  }

  .pjs-christmas-faq .faq-question {
    padding: 12px 16px;
  }

  .pjs-christmas-faq .faq-question-text {
    font-size: 16px;
  }

  .pjs-christmas-faq .faq-answer-content {
    padding: 12px;
    font-size: 14px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) and (orientation: portrait) {
  section.pjs-section.pjs-christmas-faq {
    padding: 40px 0;
  }

  .pjs-christmas-faq .pjs-inner {
    padding: 0 20px;
  }

  .pjs-christmas-faq .faq-header h2 {
    font-size: 28px;
  }

  .pjs-christmas-faq .faq-header .title-accent {
    width: 180px;
    height: 36px;
  }

  .pjs-christmas-faq .faq-question {
    padding: 10px 14px;
  }

  .pjs-christmas-faq .faq-question-text {
    font-size: 15px;
  }

  .pjs-christmas-faq .faq-answer-content {
    padding: 10px;
    font-size: 13px;
  }
}
