@charset "utf-8";

*{box-sizing: border-box;}

:root {
  --primary: #2D5A3D;
  --primary-light: #3D7A52;
  --primary-dark: #1E3D29;
  --accent: #C9A962;
  --accent-light: #E5D4A1;
  --orange: #F5A623;
  --orange-light: #FFF8EE;
  --bg-cream: #FAF8F5;
  --bg-warm: #F5F1EB;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header > p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Price Table */
.price-table-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.price-table thead th {
  padding: 28px 40px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.price-table thead th:first-child {
  width: 40%;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(45, 90, 61, 0.03);
}

.price-table tbody td {
  padding: 28px 40px;
  text-align: center;
  vertical-align: middle;
}

.price-table tbody td:first-child {
  background: var(--bg-warm);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
}

.price-table tbody td:last-child {
  font-size: 16px;
  color: var(--text-medium);
}

.price-highlight {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px !important;
}

.price-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-formula .unit {
  background: var(--bg-cream);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-medium);
}

.price-formula .operator {
  color: var(--text-light);
  font-size: 16px;
}

.price-formula .result {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.price-option .room-type {
  background: var(--bg-cream);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 80px;
}

.price-option .room-price {
  background: linear-gradient(135deg, var(--orange) 0%, #E8941E 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
}

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.info-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-card-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Notice Box */
.notice-box {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0.15) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  border-left: 4px solid var(--orange);
}

.notice-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice-box h4 > span{
  display: inline-block;
}

.notice-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-box ul li {
  font-size: 15px;
  color: var(--text-medium);
  padding-left: 1rem;
  position: relative;
}

.notice-box ul li::before {
  content: '•';
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="170" cy="170" r="70" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-section .btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* media-query */

@media(min-width:1200px){
  
}

@media(max-width:1440px){
  .price-table thead th,
  .price-table tbody td {
    padding: 24px 32px;
  }
}
@media(max-width:1199px){
  .section-header h2 {
    font-size: 28px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}
@media(max-width:586px){
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .price-table-wrapper {
    border-radius: var(--radius-lg);
    background: transparent;
    box-shadow: none;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .price-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .price-table tbody td {
    display: block;
    padding: 20px 24px;
    text-align: left;
  }

  .price-table tbody td:first-child {
    background: var(--primary);
    color: white;
    font-size: 16px;
  }

  .price-table tbody td:last-child {
    background: white;
  }

  .price-formula {
    justify-content: flex-start;
  }

  .price-options {
    align-items: flex-start;
  }

  .price-option {
    justify-content: flex-start;
  }

  .info-card {
    padding: 24px;
  }

  .info-card-icon {
    width: 48px;
    height: 48px;
  }

  .info-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .notice-box {
    padding: 24px;
    margin-top: 40px;
    border-radius: 16px;
  }

  .cta-section {
    padding: 48px 24px;
    margin-top: 60px;
  }

  .cta-section h3 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 15px;
  }
}

/* animation */

.ani.up{
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act{
    transform: translateY(0);
    opacity: 1;
}