/* ==== ABOUT PAGE STYLES (khusus, pakai prefix .about- supaya tidak tabrakan) ==== */
  :root {
    --about-accent: #f59e0b;
    --about-accent-soft: #fff7e0;
    --about-bg: #f3f4f6;
    --about-text-main: #0f172a;
    --about-text-muted: #6b7280;
  }

  .about-page {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #e0f2fe, #f3f4f6 40%, #fef3c7);
    padding: 96px 16px 72px;
  }

  .about-container {
    max-width: 1120px;
    margin: 0 auto;
  }

  /* Hero */
  .about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 56px;
  }

  .about-hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--about-text-main);
    margin-bottom: 8px;
  }

  .about-hero-text .tagline {
    font-size: 15px;
    font-weight: 500;
    color: var(--about-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .about-hero-text p.lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--about-text-muted);
    margin-bottom: 18px;
  }

  .site-header {
    backdrop-filter: blur(50px)
  }

  .site-header a{
    color: black
  }

  .about-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
  }

  .about-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    color: var(--about-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .about-pill i {
    font-size: 16px;
    color: var(--about-accent);
  }

  .about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
  }

  .about-stat {
    min-width: 110px;
  }

  .about-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--about-text-main);
  }

  .about-stat span {
    font-size: 12px;
    color: var(--about-text-muted);
  }

  .about-hero-visual {
    position: relative;
    min-height: 260px;
  }

  .about-hero-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 16px 16px 18px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
    max-width: 360px;
    margin-left: auto;
    z-index: 2;
  }

  .about-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .about-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--about-accent-soft);
    color: #92400e;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .about-badge i {
    font-size: 14px;
  }

  .about-badge-rating {
    font-size: 12px;
    color: var(--about-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .about-badge-rating i {
    font-size: 15px;
    color: #facc15;
  }
/* Overlay gelap di atas foto supaya teks kebaca */
.about-room-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    /* dari agak transparan di atas → lebih gelap di bawah */
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.25),
        rgba(15, 23, 42, 0.75)
    );
    opacity: 1;
}

.about-room-preview-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #f9fafb;
    text-shadow: 0 1px 4px rgba(15, 23, 42, 0.7);
}

  .about-room-tagline {
    font-size: 12px;
    opacity: 0.9;
  }

  .about-room-name {
    font-size: 16px;
    font-weight: 600;
  }

  .about-room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
  }

  .about-room-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .about-room-price {
    text-align: right;
  }

  .about-room-price strong {
    font-size: 14px;
  }

  .about-hero-blob {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, #fed7aa, transparent 55%),
                radial-gradient(circle at 100% 100%, #bfdbfe, transparent 55%);
    border-radius: 32px;
    opacity: 0.9;
    z-index: 0;
  }

  /* Story & values */
  .about-section {
    margin-bottom: 56px;
  }

  .about-section-header {
    margin-bottom: 20px;
  }

  .about-section-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--about-text-main);
    margin-bottom: 4px;
  }

  .about-section-header p {
    font-size: 14px;
    color: var(--about-text-muted);
  }

  .about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
  }

  .about-story-grid p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--about-text-muted);
    margin-bottom: 10px;
  }

  .about-checklist {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .about-checklist li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--about-text-main);
    margin-bottom: 6px;
  }

  .about-checklist li i {
    margin-top: 2px;
    font-size: 18px;
    color: #22c55e;
  }

  .about-value-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .about-value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  }

  .about-value-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--about-accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .about-value-icon i {
    font-size: 20px;
    color: var(--about-accent);
  }

  .about-value-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--about-text-main);
  }

  .about-value-card p {
    font-size: 13px;
    color: var(--about-text-muted);
    line-height: 1.6;
  }

  /* Highlights / timeline */
  .about-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
  }

  .about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid #e5e7eb;
  }

  .about-timeline li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 16px;
  }

  .about-timeline li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--about-accent);
    border: 3px solid #fef3c7;
    position: absolute;
    left: -6px;
    top: 4px;
  }

  .about-timeline-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--about-text-muted);
    margin-bottom: 2px;
  }

  .about-timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--about-text-main);
    margin-bottom: 2px;
  }

  .about-timeline-desc {
    font-size: 13px;
    color: var(--about-text-muted);
  }

  .about-highlight-card {
    background: #0f172a;
    border-radius: 18px;
    padding: 16px 18px 18px;
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
  }

  .about-highlight-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .about-highlight-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .about-highlight-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    opacity: 0.9;
    flex-wrap: wrap;
  }

  .about-highlight-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(249,115,22,0.9), rgba(56,189,248,0.7));
    right: -40px;
    bottom: -60px;
    opacity: 0.25;
  }

  /* CTA */
  .about-cta {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(15,23,42,0.10);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
  }

  .about-cta-text {
    font-size: 13px;
    color: var(--about-text-muted);
  }

  .about-cta-text strong {
    display: block;
    font-size: 15px;
    color: var(--about-text-main);
    margin-bottom: 2px;
  }

  .about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-btn-primary,
  .about-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }

  .about-btn-primary {
    background: var(--about-accent);
    color: #111827;
    box-shadow: 0 12px 26px rgba(245,158,11,0.35);
  }

  .about-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(245,158,11,0.45);
  }

  .about-btn-ghost {
    border-color: #d1d5db;
    background: #fff;
    color: var(--about-text-main);
  }

  .about-btn-ghost:hover {
    background: #f9fafb;
  }

  .about-btn-primary i,
  .about-btn-ghost i {
    font-size: 15px;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .about-hero {
      grid-template-columns: minmax(0, 1fr);
    }
    .about-hero-visual {
      order: -1;
    }
    .about-story-grid,
    .about-highlight-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    .about-value-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .about-page {
      padding: 80px 14px 60px;
    }
    .about-hero-text h1 {
      font-size: 24px;
    }
    .about-value-cards {
      grid-template-columns: minmax(0, 1fr);
    }
    .about-cta {
      align-items: flex-start;
    }
  }