@charset "utf-8";

/* ==========================================================================
   Student LP Specific Styles
   Target: 20-25 year old university students
   Theme: Vibrant, Energetic, Convenient, Cheap
   ========================================================================== */

/* Variables */
:root {
  --slp-primary: #00B4D8;
  /* Vivid Sky Blue */
  --slp-secondary: #FF9F1C;
  /* Vibrant Orange */
  --slp-accent: #FF4D6D;
  /* Pop Pink/Red for Sale */
  --slp-text: #333333;
  --slp-bg: #F0F8FF;
  --slp-white: #ffffff;
  --slp-font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* Reset/Base for LP Section */
.student-lp-wrapper {
  font-family: var(--slp-font-base);
  color: var(--slp-text);
  line-height: 1.6;
  background-color: var(--slp-bg);
  overflow: hidden;
  /* Prevent horizontal scroll */
}

.student-lp-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.student-lp-wrapper *,
.student-lp-wrapper *::before,
.student-lp-wrapper *::after {
  box-sizing: border-box;
}

/* Utility */
.slp-container {
  width: fit-content;
  margin: 0 auto;
  padding: 0 15px;
  /* background-color: chocolate; */
  position: relative;
}

.slp-text-center {
  text-align: center;
}

.slp-text-bold {
  font-weight: bold;
}

.slp-text-red {
  color: #e60000;
}

.slp-w-100 {
  width: 100%;
}

.slp-mb-1 {
  margin-bottom: 1rem;
}

.slp-mb-2 {
  margin-bottom: 2rem;
}

.slp-mb-3 {
  margin-bottom: 3rem;
}

/* ==========================================================================
   1. First View (Hero)
   ========================================================================== */
.slp-hero {
  background: linear-gradient(rgba(0, 180, 216, 0.85), rgba(144, 224, 239, 0.85)), url('../images/camp01.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.slp-hero::before,
.slp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.slp-hero::before {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
}

.slp-hero::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -50px;
}

.slp-hero-content {
  position: relative;
  z-index: 1;
}

.slp-hero-catch {
  background-color: var(--slp-secondary);
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: slp-popIn 0.8s ease-out;
}

.slp-hero-main-copy {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slp-hero-sub-copy {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Hero Strong Points */
.slp-hero-points {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.slp-hero-point {
  background: #fff;
  color: var(--slp-secondary);
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.slp-hero-point:hover {
  transform: translateY(-5px);
}

.slp-hero-point i {
  font-size: 1.4rem;
}

/* CTA Button - Primary */
.slp-btn-cta {
  display: inline-block;
  background: linear-gradient(to right, #FF9F1C, #FF7B00);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 159, 28, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 4px solid #fff;
}

.slp-btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 159, 28, 0.6);
  color: #fff;
}

.slp-btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: slp-shine 2s infinite;
}

/* ==========================================================================
   2. Target Definition
   ========================================================================== */
.slp-target-section {
  padding: 20px 0;
  background-color: #fff;
  text-align: center;
}

.slp-section-title {
  font-size: 2.2rem;
  color: #494949;
  margin-bottom: 20px;
  font-weight: 900;
  position: relative;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.slp-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  /* background: #003366; */
  margin: 15px auto 0;
  border-radius: 1px;
}

/* スマホ用のフォントサイズ */
@media (max-width: 768px) {
  .slp-section-title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .slp-section-title::after {
    width: 40px;
    height: 2px;
    margin: 12px auto 0;
  }
}

.slp-target-box {
  background: #fff;
  border: 4px solid #003366;
  /* Strong blue border */
  border-radius: 15px;
  padding: 20px 100px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slp-target-box::before {
  content: none;
}

.slp-target-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* margin-bottom: 20px; */
  padding-bottom: 10px;
  text-align: center;
}

.slp-target-icon-area {
  font-size: 3rem;
  color: #333;
}

.slp-target-main-copy {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: left;
}

.slp-target-list {
  list-style: none;
  padding: 0;
  display: block;
  margin: 0 auto;
  max-width: fit-content;
  text-align: center;
}

.slp-target-list li {
  font-size: 1rem;
  margin-bottom: 0;
  padding: 10px 0 15px 40px;
  position: relative;
  border-bottom: 1px dashed #ccc;
  /* Dashed line separator */
  color: #333;
  font-weight: 500;
}

.slp-target-list li:last-child {
  border-bottom: none;
}

.slp-target-list li::before {
  content: '\f00c';
  /* FontAwesome check */
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #003366;
  /* Blue check */
  font-weight: normal;
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .slp-target-header {
    flex-direction: column;
    text-align: center;
  }

  .slp-target-main-copy {
    text-align: center;
    font-size: 1.2rem;
  }

  .slp-target-box {
    padding: 15px;
}
}

/* ==========================================================================
   3. Plan Overview
   ========================================================================== */
.slp-plan-section {
  padding: 60px 0;
  background-color: #E0F7FA;
}

.slp-plan-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.slp-plan-header {
  background: #003366;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.slp-plan-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}

.slp-plan-body {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.slp-plan-img {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.slp-plan-details {
  flex: 1;
  min-width: 300px;
}

.slp-plan-check-list li {
  background: #f0f8ff;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slp-plan-check-list i {
  color: var(--slp-secondary);
  font-size: 1.2rem;
}

/* ==========================================================================
   4. Convenience (Timeline)
   ========================================================================== */
.slp-timeline-section {
  padding: 0;
  background: #fff;
}

/* Intro Text with Icons */
.slp-intro-text-with-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 900px;
  /* flex-wrap: wrap; */
}

/* パソコン表示時：間隔を詰める */
@media (min-width: 768px) {
  .slp-intro-text-with-icons {
    gap: 10px;
  }
}

.slp-intro-icon-left,
.slp-intro-icon-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slp-intro-icon-img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
}

.slp-intro-text {
  flex: 1 1 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  min-width: 200px;
}

@media (max-width: 768px) {
  .slp-intro-text-with-icons {
    /* flex-direction: column; */
    gap: 8px;
  }

  .slp-intro-icon-left,
  .slp-intro-icon-right {
    order: 0;
  }

  .slp-intro-text {
    order: 1;
    font-size: 1rem;
    text-align: left;
  }

  .slp-intro-icon-img {
    max-width: 60px;
  }
}

.slp-timeline {
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}

.slp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  background: #eee;
  transform: translateX(-50%);
}

.slp-timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding-right: 40px;
  text-align: right;
}

.slp-timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 40px;
  text-align: left;
}

.slp-timeline-dot {
  position: absolute;
  right: -10px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--slp-primary);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--slp-primary);
}

.slp-timeline-item:nth-child(even) .slp-timeline-dot {
  left: -14px;
  right: auto;
}

.slp-time {
  background: var(--slp-secondary);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.slp-timeline-content {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.slp-luggage-box {
  background: #FFF3E0;
  border: 2px dashed #FF9F1C;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
}

/* ==========================================================================
   5. Price Logic
   ========================================================================== */
.slp-price-section {
  padding: 30px 0;
  /* background: radial-gradient(circle, #254152 0%, #0d1f2b 100%); */
  color: #fff;
}

/* パソコン表示時：真ん中寄せ */
@media (min-width: 768px) {
  .slp-price-compare {
    margin-left: auto;
    margin-right: auto;
  }
}

.slp-price-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* margin: 0 auto; */
  flex-wrap: wrap;
  max-width: 250px;
  margin: 0 auto 0px;
  margin-left: 20px;
  margin-right: 20px;
}

/* パソコン表示時：slp-price-compareとslp-reason-listを横並び（上記のメディアクエリに統合） */

.slp-price-box {
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  /* min-width: 280px; */
  margin: 0 auto;
  border: 2px solid #dd2222;
  margin-bottom: 30px;
}

.slp-price-box.highlight {
  background: #fff;
  color: #333;
  transform: scale(1.1);
  box-shadow: 4px 5px 9px rgba(0, 0, 0, 0.3);
  position: relative;
  /* z-index: 10; */
  border: 2px solid #dd2222;
  margin-left: 20px;
  margin-right: 20px;
}

.slp-price-box.highlight::before {
  content: 'Price';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slp-accent);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.slp-price-label {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
  color: #313131;
}

.slp-price-amount {
  font-size: 2rem;
  font-weight: bold;
}

.slp-price-amount.strike {
  text-decoration: line-through;
  color: #515151;
  font-size: 1.5rem;
}

.slp-price-amount.cheap {
  color: #dd2222;
  font-size: 2.5rem;
}

.slp-price-diff {
  background: #dd2222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
  font-weight: bold;
}

.slp-reason-list {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 650px;
  margin: 20px auto 0;
  box-shadow: 0 4px 15px rgb(0 0 0 / 26%);
  text-align: left;
  border: none;
  /* Remove old border */
  margin-bottom: 35px;
  margin-top: 50px;
}

.slp-reason-list h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  /* border-bottom: 2px solid var(--slp-primary); */
  display: inline-block;
  padding-bottom: 5px;
  /* Center the title block */
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.slp-reason-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  /* Remove flex */
}

/* パソコン表示時：真ん中寄せ */
@media (min-width: 768px) {
  .slp-reason-list ul {
    text-align: center;
  }
}

.slp-reason-list li {
  padding: 15px 0 15px 35px;
  /* Space for icon */
  border-bottom: 1px dashed #ccc;
  position: relative;
  font-size: 1.15rem;
  color: #444;
  text-align: left;
  font-weight: bold;
  line-height: 1.5;
  /* width: 100%; */
  /* Full width */
  /* margin-top: 20px; */
}

.slp-reason-list li:last-child {
  border-bottom: none;
}

.slp-reason-list li::before {
  content: '\f058';
  /* FontAwesome check-circle */
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  /* Green color from image */
  font-size: 1.8rem;
}

/* Price Section Mobile */
@media (max-width: 768px) {
  .slp-price-compare {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }

  .slp-price-box.highlight {
    margin-left: auto;
    margin-right: auto;
    transform: scale(1);
    width: 100%;
    max-width: 500px;
  }

  .slp-reason-list h3 {
    margin-bottom: 0;
}
}

/* ==========================================================================
   6. Trust (Lodge Info)
   ========================================================================== */
.slp-lodge-section {
  padding: 60px 0;
  background: #fff;
}

.slp-lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.slp-lodge-img-box img {
  border-radius: 15px;
  width: 100%;
}

.slp-lodge-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slp-lodge-feature {
  margin-bottom: 20px;
  border-left: 4px solid var(--slp-secondary);
  padding-left: 15px;
}

.slp-lodge-feature h4 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

/* ==========================================================================
   7. FAQ
   ========================================================================== */
.slp-faq-section {
  padding: 60px 0;
  background: #F4F7F9;
}

.slp-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   New. Ski Resort & Access & Rental
   ========================================================================== */

/* Access Box Redesigned */
.slp-access-box {
  background: #fff;
  padding: 20px 10px;
  border-radius: 20px;
  margin: 15px auto;
  text-align: center;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  max-width: 900px;
  background-color: #cadbef;
}

/* Title inside the box */
.slp-access-box h4 {
  color: #003366;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  display: block;
}

.slp-access-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
  /* background: center; */
  background-color: #ffffff;
  padding: 20px 5px;
}

.slp-access-step {
  background: #003366;
  /* Capsule Dark Blue */
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  /* Capsule shape */
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.slp-access-arrow {
  color: #003366;
  font-weight: bold;
  font-size: 1.5rem;
}

.slp-access-description {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-top: 20px;
}

.slp-access-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.slp-btn-map {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1d5c99 0%, #5b9354 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.slp-btn-map:hover {
  background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.4);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .slp-btn-map {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .slp-btn-map:hover {
    transform: none;
  }
}

/* Ski Resort Card */
.slp-resort-card {
  border: 2px solid #EEE;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  margin-top: 30px;
  background: #fff;
}

.slp-resort-title {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.slp-btn-external {
  display: inline-block;
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s;
}

.slp-btn-external:hover {
  background: #e9ecef;
}

/* Ski Resort Card Special Design */
.slp-resort-card-special {
  border: 4px solid #5aaebf;
  /* Teal border matching image */
  border-radius: 12px;
  background-color: #f0fbfc;
  /* Light teal background */
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  position: relative;
}

.slp-resort-img {
  flex: 0 0 45%;
  min-width: 280px;
}

.slp-resort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  background-color: #ccc;
  min-height: 200px;
}

.slp-resort-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.slp-resort-header {
  background-color: #5aaebf;
  /* Teal bg */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  align-self: flex-start;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slp-resort-header i {
  font-size: 1.4rem;
}

.slp-resort-catch {
  font-weight: bold;
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.4;
}

.slp-resort-body {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  flex-grow: 1;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.slp-resort-btn-area {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 768px) {
  .slp-resort-card-special {
    flex-direction: column;
    padding: 15px;
  }

  .slp-resort-img,
  .slp-resort-content {
    flex: 1 1 auto;
    width: 100%;
  }

  .slp-resort-header {
    width: 100%;
    justify-content: center;
  }
}

/* Rental Table */
/* Rental Section Redesigned */
.slp-rental-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 50px auto 0;
  flex-wrap: wrap;
}

.slp-rental-image-area {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.slp-rental-image-area img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.slp-rental-card {
  flex: 1.5;
  min-width: 300px;
  border: 3px solid #3C78D8;
  /* Blue border */
  border-radius: 20px;
  background: #fff;
  padding: 50px 30px 30px;
  /* Top padding for header space */
  position: relative;
  text-align: left;
  margin-top: 30px;
  /* Space for the popping header */
}

.slp-rental-card-header {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #3C78D8;
  /* Blue bg */
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  text-align: center;
  width: 80%;
  max-width: 350px;
  box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.slp-rental-header-sub {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 2px;
}

.slp-rental-header-main {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.slp-rental-list {
  margin-top: 10px;
}

.slp-rental-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.slp-rental-item:last-of-type {
  border-bottom: none;
}

.slp-rental-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.slp-rental-name .note {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
  color: #666;
  margin-top: 4px;
}

.slp-rental-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

.slp-rental-unit {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 5px;
}

.slp-rental-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 20px;
  text-align: center;
  display: block;
}

@media (max-width: 768px) {
  .slp-container {
    padding: 0 10px;
  }

  .slp-rental-wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 30px auto 0;
    padding: 0 5px;
  }

  .slp-rental-image-area {
    min-width: auto;
    width: 100%;
  }

  .slp-rental-image-area img {
    max-height: 200px;
  }

  .slp-rental-card {
    max-width: 100%;
    /* min-width: auto; */
    padding: 40px 15px 20px;
    margin-top: 20px;
  }

  .slp-rental-card-header {
    width: 70%;
    max-width: none;
    padding: 8px 15px;
    top: -25px;
  }

  .slp-rental-header-sub {
    font-size: 0.8rem;
  }

  .slp-rental-header-main {
    font-size: 1.1rem;
  }

  .slp-rental-item {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        justify-content: space-between !important;
        padding: 15px 0;
        gap: 8px;
  }

  .slp-rental-name {
    font-size: 0.95rem;
    width: 100%;
  }

  .slp-rental-name .note {
    font-size: 0.75rem;
    margin-top: 3px;
  }

  .slp-rental-price {
    /* font-size: 1.3rem; */
    width: 90%;
    /* text-align: left; */
  }

  .slp-rental-unit {
    font-size: 0.8rem;
  }

  .slp-rental-note {
    font-size: 0.8rem;
    margin-top: 15px;
  }
}


.slp-faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.slp-faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-left: 50px;
}

.slp-faq-question::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  color: var(--slp-primary);
  font-size: 1.2rem;
}

.slp-faq-question::-webkit-details-marker {
  display: none;
}

.slp-faq-answer {
  padding: 0 20px 20px 50px;
  color: #666;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

/* ==========================================================================
   8. Final Push & CTA
   ========================================================================== */
.slp-final-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.slp-urgency-box {
  background: #FFF3CD;
  color: #856404;
  padding: 15px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #FFEEBA;
  font-weight: bold;
}

.slp-cta-container {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
  padding: 60px 20px;
  text-align: center;
}

.slp-btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--slp-primary);
  border: 2px solid var(--slp-primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.slp-btn-secondary:hover {
  background: var(--slp-primary);
  color: #fff;
}

/* ==========================================================================
   9. Footer Note
   ========================================================================== */
.slp-footer-note {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  padding: 20px;
  background: #f0f0f0;
}

/* Animations */
@keyframes slp-popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slp-shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slp-hero-main-copy {
    font-size: 2rem;
  }

  .slp-timeline::before {
    left: 20px;
  }

  .slp-timeline-item {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .slp-timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .slp-timeline-dot {
    left: 8px;
    right: auto;
  }

  .slp-lodge-grid {
    grid-template-columns: 1fr;
  }

  .slp-plan-body {
    flex-direction: column;
  }
}

/* Total Estimate Section */
.slp-estimate-section {
  padding: 20px 0;
  background: #fff;
  text-align: center;
}

.slp-estimate-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  flex-wrap: wrap;
}

.slp-estimate-card {
  border: 3px solid #66bb6a;
  /* Green border */
  border-radius: 12px;
  background: #fff;
  flex: 1;
  min-width: 280px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slp-estimate-header {
  background: #66bb6a;
  /* Green bg */
  color: #fff;
  padding: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.slp-estimate-body {
  padding: 15px 10px;
}

.slp-estimate-img-area {
  margin-bottom: 10px;
  height: 100px;
  /* Space for illustration */
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.slp-estimate-img-area img {
  max-height: 100%;
  width: auto;
}

.slp-estimate-price {
  font-size: 2rem;
  font-weight: bold;
  color: #66bb6a;
  /* Green text */
  line-height: 1.2;
}

.slp-estimate-unit {
  font-size: 1rem;
  color: #333;
  margin-left: 5px;
}

.slp-estimate-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
  font-weight: bold;
}

.slp-estimate-plus {
  font-size: 2rem;
  color: #66bb6a;
  font-weight: bold;
  line-height: 1;
}

.slp-estimate-total-label {
  background: #fdf243;
  display: inline-block;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .slp-estimate-wrapper {
    flex-direction: column;
  }

  .slp-estimate-plus {
    transform: rotate(90deg);
    /* Rotate plus sign if stacked? Or just keep it + */
    margin: -20px 0;
  }

  .slp-price-label {
    margin-top: 15px;
}
}

.slp-btn-center {
  justify-content: center;
}

.strikethrough-text {
  text-decoration: line-through;
  color: #777777;
}

.strong-text {
  font-weight: bold;
  font-size: 18px;
  color: #be0202;
  background: linear-gradient(transparent 50%, #fcff57 50%);
}