/**
 * Sandbag Page - Premium Redesign
 * Design Direction: 重厚感・信頼感・プロフェッショナル
 * Colors matched to site theme
 */

/* ==========================================================================
   CSS Variables - Site Color Palette
   ========================================================================== */
:root {
  /* Site Colors */
  --sb-primary: #d74c4c;
  --sb-primary-dark: #c43c3c;
  --sb-primary-light: #e06060;

  /* Neutrals */
  --sb-dark: #333333;
  --sb-charcoal: #2c2c2c;
  --sb-gray-dark: #4a4a4a;
  --sb-gray: #6b6b6b;
  --sb-gray-light: #9a9a9a;
  --sb-gray-pale: #e0e0e0;
  --sb-bg-alt: #ece9e7;
  --sb-white: #fff;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
}

/* ==========================================================================
   Sandbag専用背景画像
   ========================================================================== */
.page_title.sandbag_title {
  background: url('https://airealestate.co.jp/images/sandbag_keyvisual.png') center center / cover no-repeat;
}

/* ==========================================================================
   Hero Section - DO NOT MODIFY (above sb-catch-section)
   ========================================================================== */
.sb-hero-section {
  padding: 60px 0;
  background: #fff;
}

@media (min-width: 768px) {
  .sb-hero-section {
    padding: 80px 0;
  }
}

.sb-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sb-hero-headline {
  display: inline-block;
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
}

@media (min-width: 768px) {
  .sb-hero-headline {
    font-size: 32px;
    line-height: 1.5;
  }
}

.sb-hero-headline::before,
.sb-hero-headline::after {
  content: "";
  background: url(../../../images/catch_bg.svg) no-repeat;
  width: 50px;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.sb-hero-headline::before {
  left: -2em;
}

.sb-hero-headline::after {
  right: -2em;
  transform: scale(-1, 1);
}

.sb-hero-particle {
  font-size: 0.7em;
  font-weight: 500;
  color: inherit;
}

.sb-hero-icon {
  margin-top: 30px;
}

.sb-hero-icon i {
  font-size: 48px;
  color: var(--sb-primary);
}

@media (min-width: 768px) {
  .sb-hero-icon i {
    font-size: 56px;
  }
}

.sb-hero-sub {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .sb-hero-sub {
    font-size: 16px;
  }
}

/* 段違い画像3枚 */
.sb-hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 50px auto 0;
  padding: 0 20px;
  position: relative;
}

.sb-hero-images::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: -50px;
  background: var(--sb-dark);
  z-index: -1;
}

.sb-hero-images::after {
  content: '';
  position: absolute;
  width: 310px;
  height: 200px;
  background: #ece9e7;
  bottom: -20px;
  right: 0px;
  z-index: 0;
}

@media (min-width: 768px) {
  .sb-hero-images {
    gap: 30px;
    margin-top: 100px;
  }

  .sb-hero-images::before {
    bottom: -80px;
  }
}

.sb-hero-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sb-hero-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

@media (min-width: 768px) {
  .sb-hero-img img {
    height: 200px;
  }
}

.sb-hero-img:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* 段違い配置 */
.sb-hero-img--1 {
  margin-top: 0;
}

.sb-hero-img--2 {
  margin-top: 30px;
}

.sb-hero-img--3 {
  margin-top: 60px;
}

@media (min-width: 768px) {
  .sb-hero-img--2 {
    margin-top: 50px;
  }
  .sb-hero-img--3 {
    margin-top: 100px;
  }
}

/* ==========================================================================
   キャッチコピー + Stats 2カラムセクション
   ========================================================================== */
.sb-catch-stats {
  padding: 80px 0;
  background: var(--sb-white);
  position: relative;
}

@media (min-width: 768px) {
  .sb-catch-stats {
    padding: 80px 0;
    padding-bottom: 120px;
  }
}

.sb-catch-stats > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .sb-catch-stats > .container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.sb-catch-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.sb-catch-content::after {
  content: '';
  position: absolute;
  width: 109px;
  height: 92px;
  background: #ece9e7;
  top: -50px;
  left: -63px;
  z-index: -1;
}

@media (max-width: 991px) {
  .sb-catch-content::after {
    display: none;
  }
}

@media (min-width: 992px) {
  .sb-catch-content {
    text-align: left;
  }
}

.sb-catch-headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--sb-charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sb-catch-headline {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .sb-catch-headline {
    font-size: 34px;
  }
}

.sb-catch-particle {
  font-size: 0.7em;
  font-weight: 500;
  color: inherit;
}

.sb-catch-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sb-primary);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .sb-catch-label {
    font-size: 13px;
  }
}

.sb-catch-sub {
  font-size: 14px;
  line-height: 2;
  color: var(--sb-gray-dark);
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .sb-catch-sub {
    font-size: 15px;
  }
}

.sb-catch-note {
  font-size: 14px;
  line-height: 1.9;
  color: var(--sb-charcoal);
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid var(--sb-gray-pale);
}

@media (min-width: 768px) {
  .sb-catch-note {
    font-size: 15px;
  }
}

/* Stats Grid - 2x2 */
.sb-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--sb-bg-alt);
}

.sb-stat-item {
  text-align: center;
  padding: 35px 20px;
  position: relative;
  border-bottom: 1px solid var(--sb-gray-pale);
  border-right: 1px solid var(--sb-gray-pale);
}

.sb-stat-item:nth-child(2),
.sb-stat-item:nth-child(4) {
  border-right: none;
}

.sb-stat-item:nth-child(3),
.sb-stat-item:nth-child(4) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .sb-stat-item {
    padding: 45px 25px;
  }
}

.sb-stat-icon {
  display: none;
}

.sb-stat-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--sb-charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .sb-stat-num {
    font-size: 52px;
  }
}

/* カウントアップ数字 */
.sb-count {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sb-count-animate {
  opacity: 1;
  transform: translateY(0);
}

.sb-stat-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--sb-primary);
  margin-left: 4px;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.sb-count-animate + .sb-stat-unit {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sb-stat-unit {
    font-size: 22px;
  }
}

.sb-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--sb-gray);
  margin-top: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sb-stat-label {
    font-size: 13px;
  }
}

/* ==========================================================================
   Section Base - Premium Spacing
   ========================================================================== */
.sb-section {
  padding: var(--section-padding-mobile) 0;
  background: var(--sb-white);
}

@media (min-width: 768px) {
  .sb-section {
    padding: var(--section-padding) 0;
  }
}

.sb-section--gray {
  background: var(--sb-bg-alt);
}

.sb-section--dark {
  background: var(--sb-dark);
  color: #fff;
}

/* Parallax Section */
.sb-section--parallax {
  position: relative;
  background: url('https://airealestate.co.jp/images/sandbag_04.webp') center center / cover no-repeat fixed;
  min-height: 400px;
}

.sb-section--parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.sb-section--parallax > .container {
  position: relative;
  z-index: 2;
}

.sb-parallax-content {
  text-align: center;
  padding: 60px 20px;
}

.sb-parallax-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sb-parallax-headline {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.sb-parallax-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 40px;
}

.sb-parallax-facts {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sb-parallax-fact {
  text-align: center;
}

.sb-parallax-fact-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sb-parallax-fact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sb-section--parallax {
    min-height: 550px;
  }

  .sb-parallax-content {
    padding: 80px 20px;
  }

  .sb-parallax-label {
    font-size: 13px;
  }

  .sb-parallax-headline {
    font-size: 40px;
  }

  .sb-parallax-text {
    font-size: 17px;
  }

  .sb-parallax-facts {
    gap: 80px;
  }

  .sb-parallax-fact-num {
    font-size: 48px;
  }

  .sb-parallax-fact-label {
    font-size: 13px;
  }
}

/* ==========================================================================
   Section Header - Bold Typography
   ========================================================================== */
.sb-section-header {
  margin-bottom: 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .sb-section-header {
    margin-bottom: 80px;
  }
}

.sb-section-num {
  display: none;
}

.sb-section-en {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--sb-primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.sb-section-en::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--sb-primary);
}

.sb-section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--sb-charcoal);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .sb-section-title {
    font-size: 36px;
  }
}

.sb-section--dark .sb-section-en {
  color: var(--sb-primary-light);
}

.sb-section--dark .sb-section-en::after {
  background: var(--sb-primary-light);
}

.sb-section--dark .sb-section-title {
  color: #fff;
}

/* ==========================================================================
   Hero Image - Cinematic Style
   ========================================================================== */
.sb-hero-image {
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
  max-height: 500px;
}

@media (min-width: 768px) {
  .sb-hero-image {
    margin-bottom: 80px;
  }
}

.sb-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(30%);
}

.sb-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(transparent, rgba(51, 51, 51, 0.9));
}

.sb-hero-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sb-hero-text {
    font-size: 24px;
  }
}

/* ==========================================================================
   Content Block - Elegant Typography
   ========================================================================== */
.sb-content-block {
  max-width: 900px;
  margin: 0 auto;
}

.sb-lead-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  color: var(--sb-gray-dark);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .sb-lead-text {
    font-size: 16px;
  }
}

.sb-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .sb-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.sb-col {
  padding: 40px;
  background: var(--sb-bg-alt);
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease;
}

.sb-col:hover {
  background: #e4e1df;
  transform: none;
}

.sb-col-with-icon {
  padding-top: 40px;
  position: relative;
}

.sb-col-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--sb-primary);
  box-shadow: none;
}

.sb-col-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sb-gray-pale);
  letter-spacing: 0.05em;
}

.sb-col-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--sb-gray-dark);
}

/* ==========================================================================
   Image Cards
   ========================================================================== */
.sb-image-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .sb-image-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
}

.sb-image-card {
  background: var(--sb-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sb-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sb-image-card-img {
  overflow: hidden;
}

.sb-image-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .sb-image-card-img img {
    height: 220px;
  }
}

.sb-image-card:hover .sb-image-card-img img {
  transform: scale(1.05);
}

.sb-image-card-body {
  padding: 25px;
}

@media (min-width: 768px) {
  .sb-image-card-body {
    padding: 30px;
  }
}

.sb-image-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .sb-image-card-title {
    font-size: 20px;
  }
}

.sb-image-card-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--sb-gray-dark);
}

@media (min-width: 768px) {
  .sb-image-card-text {
    font-size: 15px;
  }
}

.sb-image-card-text strong {
  color: var(--sb-primary);
  font-weight: 700;
}

.sb-highlight-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 2.2;
  text-align: center;
  padding: 50px;
  background: none;
  border-radius: 0;
  border-left: none;
  color: var(--sb-charcoal);
}

.sb-highlight-icon {
  color: var(--sb-charcoal);
  margin-right: 12px;
}

@media (min-width: 768px) {
  .sb-highlight-text {
    font-size: 20px;
    padding: 60px;
  }
}

/* ==========================================================================
   Mission Visual
   ========================================================================== */
.sb-mission-visual {
  max-width: 100%;
  margin: 0 0 60px 0;
  overflow: hidden;
  box-shadow: none;
}

@media (min-width: 768px) {
  .sb-mission-visual {
    margin-bottom: 80px;
  }
}

.sb-mission-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(20%);
}

@media (min-width: 768px) {
  .sb-mission-visual img {
    height: 400px;
  }
}

/* ==========================================================================
   Cards (3列) - Minimal Card Design
   ========================================================================== */
.sb-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sb-cards-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.sb-card {
  padding: 50px 40px;
  background: var(--sb-white);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
}

.sb-card::before {
  display: none;
}

.sb-card:hover {
  box-shadow: 0 20px 60px rgba(51, 51, 51, 0.1);
  transform: none;
}

.sb-card-icon {
  width: auto;
  height: auto;
  margin: 0 0 30px 0;
  background: transparent;
  border-radius: 0;
  display: block;
  font-size: 36px;
  color: var(--sb-primary);
  text-align: center;
}

.sb-card-num {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sb-gray-light);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}

.sb-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-align: center;
}

.sb-card-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--sb-gray-dark);
  text-align: left;
}

/* ==========================================================================
   Target Blocks - Editorial Layout
   ========================================================================== */
.sb-target-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sb-target-blocks {
    gap: 60px;
  }
}

.sb-target-block {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--sb-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: none;
}

@media (min-width: 768px) {
  .sb-target-block {
    grid-template-columns: 1fr 1fr;
  }

  .sb-target-block:nth-child(even) {
    direction: rtl;
  }

  .sb-target-block:nth-child(even) > * {
    direction: ltr;
  }
}

.sb-target-block:hover {
  transform: none;
}

.sb-target-image {
  height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sb-target-image {
    height: 100%;
    min-height: 400px;
  }
}

.sb-target-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.sb-target-block:hover .sb-target-image img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.sb-target-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sb-bg-alt);
}

@media (min-width: 768px) {
  .sb-target-content {
    padding: 60px;
  }
}

.sb-target-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sb-primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sb-target-label i {
  margin-right: 8px;
}

.sb-target-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--sb-gray-pale);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sb-target-title {
    font-size: 24px;
  }
}

.sb-target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-target-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sb-gray-dark);
  padding: 15px 0;
  border-bottom: 1px solid var(--sb-gray-pale);
  display: block;
}

.sb-target-list li:last-child {
  border-bottom: none;
}

.sb-target-list li i {
  display: none;
}

.sb-target-list strong {
  display: block;
  color: var(--sb-charcoal);
  font-weight: 600;
  margin-bottom: 5px;
}

/* ==========================================================================
   Products - Gallery Style
   ========================================================================== */
.sb-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sb-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.sb-product {
  background: var(--sb-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.sb-product:hover {
  box-shadow: 0 20px 60px rgba(51, 51, 51, 0.1);
  transform: none;
}

.sb-product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.sb-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.sb-product:hover .sb-product-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.sb-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--sb-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.sb-product-badge i {
  display: none;
}

.sb-product-body {
  padding: 35px 30px;
}

.sb-product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.sb-product-title i {
  display: none;
}

.sb-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-product-list li {
  font-size: 14px;
  color: var(--sb-gray-dark);
  padding: 10px 0;
  padding-left: 0;
  position: relative;
  border-bottom: 1px solid var(--sb-gray-pale);
}

.sb-product-list li:last-child {
  border-bottom: none;
}

.sb-product-list li::before {
  display: none;
}

/* ==========================================================================
   Area - Interactive Map
   ========================================================================== */
.sb-area {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sb-area-map {
  margin: 0 auto 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sb-gray-pale);
}

#sb-leaflet-map {
  width: 100%;
  height: 350px;
}

@media (min-width: 768px) {
  #sb-leaflet-map {
    height: 450px;
  }
}

/* Custom Map Marker */
.sb-map-marker {
  color: var(--sb-primary);
  font-size: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.sb-map-marker:hover {
  transform: scale(1.2);
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
  margin: 15px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sb-gray-dark);
}

.leaflet-popup-content strong {
  display: block;
  font-size: 16px;
  color: var(--sb-charcoal);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sb-primary);
}

.leaflet-popup-tip {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sb-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .sb-area-list {
    gap: 15px;
  }
}

.sb-area-item {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-charcoal);
  background: var(--sb-white);
  border-radius: 0;
  border: 2px solid var(--sb-gray-pale);
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .sb-area-item {
    padding: 15px 30px;
    font-size: 15px;
  }
}

.sb-area-item:hover {
  border-color: var(--sb-primary);
  background: #fff5f5;
}

.sb-area-item i {
  margin-right: 10px;
  color: var(--sb-primary);
  transition: transform 0.3s ease;
}

.sb-area-item:hover i {
  transform: scale(1.2);
}

.sb-area-item--main {
  background: var(--sb-primary);
  color: #fff;
  border-color: var(--sb-primary);
}

.sb-area-item--main:hover {
  background: var(--sb-primary-dark);
  border-color: var(--sb-primary-dark);
}

.sb-area-item--main i {
  color: #fff;
}

.sb-area-note {
  font-size: 13px;
  color: var(--sb-gray);
  letter-spacing: 0.05em;
}

.sb-area-note i {
  margin-right: 8px;
  color: var(--sb-primary);
}

/* ==========================================================================
   Flow - Timeline Style
   ========================================================================== */
.sb-flow {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.sb-flow::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sb-gray-pale);
}

@media (min-width: 768px) {
  .sb-flow::before {
    left: 40px;
  }
}

.sb-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 0 0 50px 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  position: relative;
  transition: none;
}

@media (min-width: 768px) {
  .sb-flow-item {
    gap: 40px;
    padding-bottom: 60px;
  }
}

.sb-flow-item:hover {
  transform: none;
}

.sb-flow-item:last-child {
  padding-bottom: 0;
}

.sb-flow-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--sb-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--sb-bg-alt);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .sb-flow-num {
    width: 80px;
    height: 80px;
    font-size: 20px;
    box-shadow: 0 0 0 10px var(--sb-bg-alt);
  }
}

.sb-flow-num i {
  font-size: 20px;
}

@media (min-width: 768px) {
  .sb-flow-num i {
    font-size: 24px;
  }
}

.sb-flow-content {
  flex: 1;
  padding-top: 15px;
}

@media (min-width: 768px) {
  .sb-flow-content {
    padding-top: 20px;
  }
}

.sb-flow-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sb-charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sb-flow-title {
    font-size: 20px;
  }
}

.sb-flow-text {
  font-size: 14px;
  line-height: 2;
  color: var(--sb-gray-dark);
}

.sb-flow-arrow {
  display: none;
}

/* ==========================================================================
   FAQ - Accordion Style
   ========================================================================== */
.sb-faq {
  max-width: 800px;
  margin: 0 auto;
}

.sb-faq-item {
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--sb-gray-pale);
  transition: none;
}

.sb-faq-item:hover {
  transform: none;
}

.sb-faq-item:last-child {
  border-bottom: none;
}

.sb-faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--sb-charcoal);
  padding: 30px 0 15px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .sb-faq-q {
    font-size: 17px;
  }
}

.sb-faq-q i {
  color: var(--sb-primary);
  font-size: 18px;
  margin-top: 3px;
}

.sb-faq-a {
  font-size: 14px;
  line-height: 2;
  color: var(--sb-gray-dark);
  display: block;
  padding: 0 0 30px 33px;
}

.sb-faq-a i {
  display: none;
}

/* ==========================================================================
   Message - Premium Closing
   ========================================================================== */
.sb-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sb-message-icon {
  display: none;
}

.sb-message-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 2.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .sb-message-text {
    font-size: 19px;
  }
}

.sb-message-text strong {
  color: #fff;
  font-weight: 700;
}

.sb-message-cta {
  margin-top: 60px;
}

.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 60px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--sb-primary);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
  letter-spacing: 0.1em;
}

.sb-btn i {
  color: #fff;
}

.sb-btn:hover {
  background: var(--sb-primary-dark);
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center {
  text-align: center;
}
